2019-02-21 19:29:50 +00:00
|
|
|
\documentclass[10pt,final,a4paper,twoside]{book}
|
|
|
|
|
|
|
|
\newcommand{\watermark}{DRAFT} % a watermark is included on all pages if \watermark is defined here
|
|
|
|
|
|
|
|
%** preamble.tex: here all the document-wide settings
|
|
|
|
% are defined
|
2019-07-31 09:14:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\makeatletter
|
|
|
|
\newcommand{\verbatimfont}[1]{\renewcommand{\verbatim@font}{\ttfamily#1}}
|
|
|
|
\makeatother
|
|
|
|
|
2019-02-21 19:29:50 +00:00
|
|
|
\input{preamble}
|
|
|
|
|
|
|
|
%********************************
|
|
|
|
|
|
|
|
%** begin the document environment
|
|
|
|
\begin{document}
|
2019-07-31 09:14:41 +00:00
|
|
|
\verbatimfont{\tiny}%
|
2019-02-21 19:29:50 +00:00
|
|
|
|
|
|
|
\frenchspacing
|
|
|
|
\sloppy
|
|
|
|
|
|
|
|
%** Title.tex: Title page to be printed first
|
|
|
|
\input{Title}
|
|
|
|
|
|
|
|
%** environments.tex: Predefined Environments
|
|
|
|
\include{environments}
|
|
|
|
|
|
|
|
%**Documentation****************
|
|
|
|
|
|
|
|
\include{Abstract}
|
|
|
|
|
|
|
|
\tableofcontents
|
2019-08-10 13:27:52 +00:00
|
|
|
\listoffigures
|
2019-02-21 19:29:50 +00:00
|
|
|
\listoftables
|
|
|
|
|
|
|
|
\include{Introduction}
|
2019-08-07 13:55:53 +00:00
|
|
|
\include{Background}
|
2019-02-21 19:29:50 +00:00
|
|
|
\include{Design}
|
|
|
|
\include{Results}
|
2019-08-07 13:55:53 +00:00
|
|
|
\include{Conclusion}
|
2019-02-21 19:29:50 +00:00
|
|
|
|
|
|
|
\appendix
|
|
|
|
\renewcommand{\thepart}{\Alph{part}}
|
|
|
|
|
|
|
|
%** appendix.tex: Install instructions, configurations, test results,
|
|
|
|
% simulation data, additional theoretical disquisitions, ...
|
|
|
|
%
|
|
|
|
\include{appendix}
|
|
|
|
|
|
|
|
%** bibtex is used to automatically generate the bibliography
|
|
|
|
% references are stored in refs/refs.bib
|
|
|
|
% use a bibliography manager like JabRef (http://jabref.sourceforge.net/) to manage refs/refs.bib
|
|
|
|
\bibliographystyle{abbrv}
|
2019-08-09 08:38:54 +00:00
|
|
|
\bibliography{refs/refs, refs/rfc}
|
|
|
|
|
2019-02-21 19:29:50 +00:00
|
|
|
|
|
|
|
%** end the document environment
|
|
|
|
\end{document}
|