-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
49 lines (41 loc) · 1.39 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
% Created 2014 by Sebastian Nemak.
% This work is licensed under version 4.0 of the Creative Commons CC-BY-SA License.
% http://creativecommons.org/licenses/by-sa/4.0/
\documentclass[
final % final, draft
,12pt % default font size
,a4paper % classic A4 page, default onesided
,oneside % for document typ scrbook
,BCOR=12mm % binding correction
,headings=normal % smarter headings
,toc=graduated % table of content (toc) with indent (not '=flat')
,bibliography=totoc % toc bibliography
]{scrreprt} % KOMA-Script report document typ
\usepackage{packages-settings}
\author{Your Name}
\title{Latex Template}
\subtitle{bachelor or master thesis subject}
\date{\today}
\hypersetup{ % pdf options
pdfauthor = {Your Name}
,pdftitle = {Latex Template}
,pdfsubject = {bachelor or master thesis subject}
,pdfcreator = {\LaTeX}
,pdfkeywords = {key word 1, key word 2, ...}
,pdfproducer = {pdfTeX \the\pdftexversion.\pdftexrevision}
,unicode=false, breaklinks=true
,pdftoolbar=true, pdfmenubar=true, pdffitwindow=false, pdfstartview={FitH},pdfnewwindow=true
,colorlinks=true, linkcolor=black, citecolor=black, filecolor=magenta, urlcolor=black
}
\begin{document}
% front matter
\import{chapters/}{00-pre}
% content matter
\import{chapters/}{01-chapter}
\import{chapters/}{02-chapter}
\import{chapters/}{03-chapter}
% back matter
\newpage
\bibliography{bibliography}
\import{./chapters/}{appendixes}
\end{document}