| Start | Personal record (without picture) |
Personal record (with picture) |
Study | Imprint | Further sides |
|
\begin{document}
\input{kap1}
\end{document}
To insert single tex files use \input{name}, the name of the file is be quoted
without ending .tex.
\usepackage{setspace}
\onehalfspacing
\begin{document}
\title{...}
\renewcommand{\baselinestretch}{1.5}
\input{kap1}
\end{document}
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}
\usepackage{setspace}
\usepackage{threeparttable}
\begin{table}
\begin{threeparttable}
\begin{tabular}{|l|c|r|}
\hline
A & B & C \\
1 & 2 & 3 \tnote{1} \\
\end{tabular}
\begin{tablenotes}\footnotesize
\item[1] Prognose 2003
\end{tablenotes}
\end{threeparttable}
\end{table}
The command \tnote{...} "replace \footnote{...}"
@BOOK{zahl,
Year = {1996},
Author = {name of the author},
Title = {title of the book},
publisher = {the name of publisher}
}
\bibliography{name of the .bib file}
\bibliographystyle{style you use}
\documentclass{beamer}
\usepackage{beamerthemesplit}
\begin{document}
\frame{...}
\frame{\frametitle{Example for beamer class}
...
....}
\end{document}
\begin{block}{Titel}
\end{block}
Example block has as standard color green
\begin{exampleblock}{Titel}
\end{exampleblock}
With using \usepackage{beamerthemeshadow} you will get a nice border.