master/report.tex

54 lines
1.7 KiB
TeX
Raw Normal View History

2024-04-12 11:54:05 +00:00
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[12pt,oneside,final,a4paper]{report}
\usepackage{generators/imports}
\include{generators/glossary}
\begin{document}
\include{generators/frontpage} % This is the titlepage
\include{generators/abstract}
\include{generators/tableOfContentsAndListings}
\pagenumbering{arabic}
\setcounter{page}{1}
\setlength{\parskip}{0.5cm plus4mm minus3mm}
\include{chapter/introduction}
2024-04-12 12:23:38 +00:00
\include{chapter/ch2}
\include{chapter/ch3}
2024-05-11 19:34:34 +00:00
\include{chapter/ch4}
2024-05-23 18:09:57 +00:00
\include{chapter/ch5}
2024-05-21 12:33:17 +00:00
\include{chapter/related_work}
\include{chapter/future_work}
2024-04-12 11:54:05 +00:00
% Include more chapters as required.
%%=========================================
% Alternative 1 of printing glossaries & acronymes
%\renewcommand{\glossarypreamble}{\footnotesize}
%\printglossary[style=super, type=\glsdefaulttype] \let\cleardoublepage\clearpage
%\printglossary[style=super, type=\acronymtype]
%Alternative 2
%Simplified way of printing glossaries, slower than alt 1, but has better compatibility
\printnoidxglossaries
% Include more appendices as required.
%%=========================================
\clearpage
\DeclareRobustCommand{\VAN}[3]{#3}
\addcontentsline{toc}{chapter}{Bibliography}
2024-05-29 21:51:14 +00:00
\bibliographystyle{generators/myplainnat}
2024-04-12 11:54:05 +00:00
\bibliography{generators/refs}
\appendix
\titleformat{\chapter}[display]
{\normalfont\large\bfseries}% <- font for label "Appendix A", default \huge
{\chaptertitlename\ \thechapter}
{20pt}
{\large}% <- font for title, default \Huge
\include{generators/appendix-a}
\include{generators/appendix-b}
2024-04-12 11:54:05 +00:00
\end{document}