-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
60 lines (42 loc) · 1.12 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
\documentclass[12pt, a4paper, twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage[a4paper,width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{\input{tex/text-resources/titletext}}
\setlength{\headheight}{15pt}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,RE]{\input{tex/text-resources/author}}
\renewcommand{\headrulewidth}{0.2pt}
\renewcommand{\footrulewidth}{0.2pt}
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{references.bib}
\listfiles
\title{\input{tex/text-resources/titletext}}
\author{\input{tex/text-resources/author}}
\date{\today}
\begin{document}
\input{titlepage}
\input{abstract}
\tableofcontents
\listoffigures
\listoftables
\chapter{introduction}
\input{tex/introduction}
\chapter{Methods}
\input{tex/methods}
\chapter{Results}
\input{tex/results}
\chapter{Discussion}
\input{tex/discussion}
\chapter{Acknowledgements}
\input{tex/acknowledgements}
\appendix
\chapter{Appendix}
\input{tex/appendix}
\printbibliography
\end{document}