-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.tex
94 lines (82 loc) · 1.95 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
\documentclass[a4paper, 11pt, titlepage, twoside, openany]{book}
\usepackage{plain}
\usepackage{setspace}
% Layout
\usepackage[
paperheight=29.7cm,
paperwidth=21cm,
outer=1.5cm,
inner=2.5cm,
top=2cm,
bottom=2cm
]{geometry}
% Chapter
\usepackage{titlesec}
\singlespacing
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
% Letter
\usepackage[utf8]{inputenc}
% Language
\usepackage[english]{babel}
% PDF/A
\usepackage[a-1b]{pdfx}
% Image
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{stackengine}
\usepackage{etoolbox}
\BeforeBeginEnvironment{wrapfigure}{\setlength{\intextsep}{0pt}}
% Hyperlink
\usepackage{xurl}
\usepackage[pdfa]{hyperref}
\hypersetup{breaklinks=true}
% List
\usepackage{enumitem}
% START: DELETE ME
\usepackage{lipsum}
% END: DELETE ME
% Document
\begin{document}
% Cover
\pagenumbering{gobble}
\input{etc/cover}
\clearpage
% Acknowledgements
\input{etc/acknowledgements}
\clearpage
\pagestyle{plain}
% Table of Contents
\frontmatter
\pagenumbering{Roman}
\tableofcontents
\clearpage
\begingroup
\pagestyle{empty}
\cleardoublepage
\endgroup
% Start page numbering
\mainmatter
% Group to define space between chapters
\begingroup
% Override format of title chapter
\titleformat{\chapter} {\normalfont\Huge\bfseries}{\thechapter}{1em}{} \titlespacing*{\chapter}{0pt}{0.59in}{0.02in}
\titlespacing*{\section}{0pt}{0.20in}{0.02in} \titlespacing*{\subsection}{0pt}{0.10in}{0.02in}
\titlespacing*{\subsubsection}{0pt}{0.05in}{0.02in}
% Abstract
\input{etc/abstract.tex}
% Chapters
\input{chapters/examples.tex}
% Conclusions
\input{etc/conclusions.tex}
\endgroup
% Bibliography
\addcontentsline{toc}{chapter}{Bibliography}
% Alphabetical order of authors
\bibliographystyle{plain}
\bibliography{bibliography.bib}
% Attachments
\titleformat{\chapter} {\normalfont\Huge\bfseries}{Appendix \thechapter}{1em}{}
\appendix
\input{attachments/attachment.tex}
\end{document}