-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDocumentation.tex
136 lines (103 loc) · 3.95 KB
/
Documentation.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[a4paper,11pt,oneside]{scrbook} % KOMA script class, which creates an output suitable to the desired book
\usepackage[left=30mm,right=25mm,top=25mm,bottom=25mm]{geometry} %Anpassung der Seitengröße
\usepackage{textcomp} %für die € Zeichen
\usepackage{graphicx}
\usepackage[onehalfspacing]{setspace}
\usepackage{tabularx}
\usepackage{wrapfig}
\usepackage{xltxtra}%wichtig für xelatex
\usepackage{xunicode, xcolor}%wichtig für xelatex
\usepackage{lmodern}%nötig für Durchsuchbarkeit des pdf-Dokuments
\usepackage[margin=10pt,font=small,labelfont=bf]{caption}%Definition der Beschriftungen von Bildern, etc.
\usepackage{setspace}%Absätze mit definiertem Zeilenabstand erstellen
\usepackage{csquotes}
\usepackage{amsmath}%wichtig für Formeln
\usepackage{pdfpages}%wichtig bei Einbindung kompletter pdf-Dateien
\usepackage{listings}
\usepackage{hyperref} %Verlinkung des Inhaltverzeichnisses
\usepackage[automark,headsepline,plainheadsepline]{scrlayer-scrpage} % important to set the page style in the KOMA script book class
\captionsetup[figure]{labelfont=bf,textfont=it,singlelinecheck=false,justification=RaggedRight}
\captionsetup[table]{labelfont=bf,singlelinecheck=false,justification=RaggedRight}
\setmainfont[Mapping=tex-text]{Noto Sans}
\setsansfont[Mapping=tex-text]{Noto Sans}
\onehalfspacing
\sloppy %automatischer Zeilenumbruch
\pagestyle{scrheadings} % creates header compatible with KOMA-script classes, as the file uses KOMA script in its scrbook class
\clearpairofpagestyles % removes footer with page number
\ihead*{\rightmark} % sets title to left side of page header
\ohead*{\thepage} % sets pagenumber to right side of page header
\addtokomafont{pagehead}{\normalfont} % sets font for page header
\renewcommand\chaptermarkformat{\ifnumbered{chapter}{\chapapp\ \thechapter. \ }{}} % sets format for chapter in header
\renewcommand{\labelnamepunct}{\addcolon\space} % replaces the dot in the bibliography with a colon
\renewcommand{\chaptermark}[1]{\markboth{}{#1}} % removes chapter number from header
\renewcommand{\chapterheadstartvskip}{} % Makes chapter titles start right at the beginning of the page
\hypersetup{ %pdf settings
pdftitle={2Org-Cows Software Documentation},
pdfauthor={Thomas Rahimi, Boris Kulig},
pdfsubject={2Org-Cows Software},
pdfkeywords={Software, 2Org-Cows, Organic Cowbreeding, Database, Big Data},
bookmarksopen=true,
}
\lstset{ %code display settings
backgroundcolor=\color{white},
breakatwhitespace=false,
breaklines=true,
frame=single,
numbers=left,
numbersep=5pt,
showstringspaces=false,
keepspaces=false,
showspaces=false,
breaklines=true,
commentstyle=\color{green},
tabsize=4,
numberstyle=\tiny\color{gray},
basicstyle=\fontsize{10}{12}\ttfamily
}
%opening
\title{2Org-Cows Software Documentation}
\author{Thomas Rahimi: \href{mailto:[email protected]}{[email protected]},\\ Boris Kulig: \href{mailto:[email protected]}{[email protected]}}
\date{}
\begin{document}
\maketitle
\begin{center}
Universität Kassel,\\
Fachbereich 11,\\
ökologische Agrarwissenschaften Witzenhausen,\\
FG Agrartechnik
\end{center}
\bigskip
\begin{center}
\includegraphics[width=5cm,keepaspectratio=true]{./Logo-2Org-Cows.png}
% Logo-2Org-Cows.png: 128x128 pixel, 72dpi, 4.51x4.51 cm, bb=0 0 128 128
\end{center}
\thispagestyle{empty}
\newpage
%\clearpage
\thispagestyle{empty}
\phantomsection %wichtig für die richtige Verlinkung im Inhaltsverzeichnis, muss vor dem zu verlinkenden Artikel sein.
\addcontentsline{toc}{chapter}{Table of Contents}
\tableofcontents
\phantomsection
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\thispagestyle{empty}
\newpage
\input{Introduction}
\newpage
\input{login}
\input{home}
\input{create-user}
\newpage
\input{interfaces}
\newpage
\input{database}
\newpage
\input{jupyter}
\newpage
\input{operating_system}
\include{license}
\include{attachements}
\end{document}