1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % Author: Phillip Rothenbeck
- % Title: Your Thesis
- % File: chap02/chap02.tex
- % Part: theoretical background
- % Description:
- % summary of the content in this chapter
- % Version: 01.01.2012
- % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \chapter{Theoretical background}
- \label{chap:background}
- chapter intro\newline
- \blindtext
- % -------------------------------------------------------------------
- \section{Basics}
- \label{sec:basics}
- explain some basic techniques
- reference: Figure~\ref{fig:myFigure}\newline
- \begin{figure}[tb]
- \centering
- \rule{4cm}{1cm}
- \caption[figure caption displayed in list of figures]{figure caption displayed below the figure}
- \label{fig:myFigure}
- \end{figure}
- \Blindtext[2][2]
- % -------------------------------------------------------------------
- \section{Already existing solutions}
- \label{sec:existingSolutions}
- detailed explanations of existing methods, models, etc. which solve your task or a similar task
- describe starting point for your ideas
- reference: Table~\ref{fig:myTable}\newline
- \begin{table}[tb]
- \centering
- \begin{tabular}{cc}
- example & table \\
- 1 & 2 \\
- 3 & 4 \\
- \end{tabular}
- \caption[table caption displayed in list of figures]{table caption displayed below the table}
- \label{fig:myTable}
- \end{table}
- \Blindtext[2][2]
- % -------------------------------------------------------------------
- % insert further sections if necessary
|