latexandmore/IDB.tex

87 lines
2.6 KiB
TeX
Raw Normal View History

\listfiles
\documentclass[12pt,a4paper]{scrartcl}
2014-02-11 12:10:35 +01:00
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{lmodern}
\usepackage{a4wide}
2014-02-11 12:10:35 +01:00
\usepackage{psfrag}
\usepackage{colortbl}
\usepackage{color}
\usepackage{textcomp}
\usepackage{cancel}
\usepackage[pdfborder={0 0 0}, colorlinks=true, filecolor=blue, linkcolor=blue, citecolor=blue, urlcolor=blue]{hyperref}
2014-02-11 12:10:35 +01:00
\usepackage{float}
\usepackage{listings}
\usepackage{lstautogobble}
\usepackage{wrapfig}
\newcommand{\RM}[1]{\MakeUppercase{\romannumeral #1{.}}}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{
basicstyle=\footnotesize, % the size of the fonts that are used for the code
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
breaklines=true, % sets automatic line breaking
captionpos=b, % sets the caption-position to bottom
commentstyle=\color{dkgreen}, % comment style
frame=single, % adds a frame around the code
keywordstyle=\color{blue}, % keyword style
2014-02-12 12:25:19 +01:00
language=sql, % the language of the code
2014-02-11 12:10:35 +01:00
mathescape=true,
autogobble,
numbers=left % where to put the line-numbers; possible values are (none, left, right)
%title=\lstname % show the filename of files included with \lstinputlisting; also try caption instead of title
}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\setlength{\parindent}{0pt}
2014-02-12 15:11:45 +01:00
% wrapping environment for pic in paragraphs
\usepackage{floatflt}
% Einruecken nach newline via '//' unterbinden
\setlength{\parindent}{0pt}
\makeatletter
\renewcommand\paragraph{%
\@startsection{paragraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\makeatother
2014-02-11 12:10:35 +01:00
%==INFOBOXEN=========================================
%idee: http://tex.stackexchange.com/a/66822
\usepackage[tikz]{bclogo}
\definecolor{YellowGreen}{rgb}{0.603922,0.803922,0.196078}
%\renewcommand\bcStyleTitre[1]{\large\textcolor{black}{#1}}
%textbox{Titel}{Text}
\newcommand{\textbox}[2]{%
\begin{bclogo}[couleur=YellowGreen,logo =, arrondi=0.2,barre=none]{#1}%
\vspace*{10pt}%
#2%
\end{bclogo}
}%
%textonlybox{Text}
\newcommand{\textonlybox}[1]{%
\begin{bclogo}[couleur=YellowGreen,logo =, arrondi=0.2,barre=none]{#1}
\end{bclogo}
}%
%----------------------------------------------------
\begin{document}
\tableofcontents
\listoffigures
2014-02-11 12:10:35 +01:00
\newpage
2014-02-13 11:48:24 +01:00
\include{./Einfuehrung}
\include{./Saetze}
2014-02-13 15:03:30 +01:00
\include{./BBaum}
\include{./Speicherung}
2014-02-12 12:25:19 +01:00
\include{./Anfrageverarbeitung}
2014-02-12 15:11:45 +01:00
\include{./Relationale_Operatoren}
\include{./Transaktionen}
2014-02-12 15:11:45 +01:00
2014-02-11 12:10:35 +01:00
\end{document}