This repository has been archived by the owner on Apr 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
112 lines (92 loc) · 4.1 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Classicthesis Typographic Thesis
% LaTeX Template
% Version 1.1 (4/8/12)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% André Miede (http://www.miede.de)
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% General Tips:
% 1) Make sure to edit the classicthesis-config.file
% 2) New enumeration (A., B., C., etc in small caps): \begin{aenumerate} \end{aenumerate}
% 3) For margin notes: \marginpar or \graffito{}
% 4) Do not use bold fonts in this style, it is designed around them
% 5) Use tables as in the examples
% 6) See classicthesis-preamble.sty for useful commands
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%------------------------------------------------
\documentclass[
titlepage,numbers=noenddot,headinclude,%1headlines,
footinclude=true,cleardoublepage=empty,
BCOR=5mm,paper=a4,fontsize=11pt, % Binding correction, paper type and font size
english, % Languages
]{scrreprt}
% Includes the file which contains all the document configurations and packages - make sure to edit this file
\input{classicthesis-config}
\begin{document}
\frenchspacing % Reduces space after periods to make text more compact
\raggedbottom % Makes all pages the height of the text on that page
\selectlanguage{american} % Select your default language - e.g. american or ngerman
%\renewcommand*{\bibname}{new name} % Uncomment to change the name of the bibliography
%\setbibpreamble{} % Uncomment to include a preamble to the bibliography - some text before the reference list starts
\pagenumbering{roman} % Roman page numbering prior to the start of the thesis content (i, ii, iii, etc)
\pagestyle{plain} % Suppress headers for the pre-content pages
%-------------------------------------------------
% PRE-CONTENT THESIS PAGES
%-------------------------------------------------
%\includepdf[pages={1}]{images/hsr_titlepage.pdf}
\include{front_back_matter/titlepage}
\include{front_back_matter/titleback}
\include{front_back_matter/abstract}
\include{front_back_matter/management_summary}
\include{front_back_matter/acknowledgments}
\pagestyle{scrheadings} % Show chapter titles as headings
\include{front_back_matter/contents} % Contents, list of figures/tables/listings and acronyms
\pagenumbering{arabic} % Arabic page numbering for thesis content (1, 2, 3, etc)
%------------------------------------------------
% THESIS CONTENT - CHAPTERS
%------------------------------------------------
\newpage
\part{Technical Report} % First part of the thesis
\include{chapters/technical_report/introduction}
\include{chapters/technical_report/state_of_technology}
\include{chapters/technical_report/implementation_concept}
\include{chapters/technical_report/results_and_future}
%------------------------------------------------
\newpage
\part{Project Documentation}
\include{chapters/project_documentation/vision}\newpage
\include{chapters/project_documentation/requirements_specification}\newpage
\include{chapters/project_documentation/analysis}\newpage
\include{chapters/project_documentation/evaluation}\newpage
\include{chapters/project_documentation/implementation}\newpage
\include{chapters/project_documentation/results_future_development}\newpage
\include{chapters/project_documentation/project_management}\newpage
\include{chapters/project_documentation/project_monitoring}\newpage
%------------------------------------------------
% THESIS CONTENT - APPENDICES
%------------------------------------------------
\newpage
\appendix
\part{Appendix}
\include{chapters/software_documentation/user_documentation}
\include{chapters/software_documentation/developer_documentation}
%\includepdf[pages={1}]{images/project_proposal.pdf}
%\include{front_back_matter/meetings}\newpage
%---------------------------------------
% POST-CONTENT THESIS PAGES
%---------------------------------------
\include{front_back_matter/bibliography}
\newpage
\include{front_back_matter/declaration}
%---------------------------------------
\end{document}