-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1Main.tex
125 lines (110 loc) · 3.26 KB
/
1Main.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
\documentclass[12pt,a4paper]{report}
%------------------------------------------------------------------------
% PACKAGES:
\usepackage{lipsum}
% Lorem ipsum package
\usepackage{comment}
% Allows to comment text out like in C using '#'
\usepackage{acronym}
% Allows using acronyms
\usepackage{styleguide}
% Define typearea
% a) Use automatic:
\usepackage[BCOR1cm]{typearea}
% b) Or use fixed:
%\usepackage{geometry}
%\geometry{left=1.5cm,textwidth=18.5cm,top=1.5cm,textheight=26.5cm}
\usepackage[american,ngerman]{babel}
% Use list of tabels, etc. in table of contents:
\usepackage{tocbibind}
% German paragraph skip
\usepackage{parskip}
% Encoder:????
\usepackage[latin1]{inputenc}
%\usepackage[applemac]{inputenc}
% Use A4-paper efficiently:
\usepackage{a4wide}
% Index-generation
\usepackage{makeidx}
% Einbinden von URLs:
\usepackage{url}
% Include .eps-files (needed also for the logo):
%\usepackage{epsf}
% Special \LaTex symbols (e.g. \BibTeX):
\usepackage{doc}
% Include Graphic-files:
%\usepackage{graphics}
% Include Graphic-files:
\usepackage{graphicx}
% Include doc++ generated tex-files:
%\usepackage{docxx}
% Include PDF links
%\usepackage[pdftex, bookmarks=true]{hyperref}
%------------------------------------------------------------------------
\graphicspath{{figures/}}
%########################################################################
% CHOOSE DEFAULT LANGUAGE:
\setlang{de}
% \setlang{en}
% DATEN EINTRAGEN:
% FILL IN ACCORDINGLY:
\title{XX}
\type{B} % / M:Master /B:Bachelor / F:Forschungspraxis / I:Ingenieurspraxis
\author{XX}
\matrikelnr{XX}
\fakultaet{6} % / Nummer der Fakultät - 1...14
\street{XX}
\town{XX}
\advisor{Prof. XX}
\advisortwo{Prof. XX}
% Wenn nur ein Betreuer -> Änderung in styleguide.sty -> Zeile 154,208,260 auskommentieren
\datebegin{Datum des Arbeitsbeginns}
\dateend{Datum des Vortrags}
%########################################################################
\begin{document}%****************************************************
\makemtgtitle
% Adding the declaration of independence according to language
{\ifthenelse{\equal{\lang}{de}}
{ \include{ErklaerungDE} }
{ \include{ErklaerungEN} }
% MAIN PART:
% Start numbering for pages
\pagenumbering{roman}
% German abstract:
\include{KurzfassungDT}
% English abstract:
\include{KurzfassungEN}
% Table of contents:
\tableofcontents
% Introduction (Einleitung):
\include{Einleitung}
% Text Body (Hauptteil)
% Could have multiple chaper-files, e.g.:
\include{Hauptteil}
%\include{StateOfTheArt}
%\include{Problem}
%\include{HowTo}
%\include{Results}
% Conclusions (Zusammenfassung):
\include{Zusammenfassung}
% List of figures (Abbildungsverzeichnis):
% Latex erstellt diese Liste automatisch samt Angaben
\listoffigures
% List of tables (Tabellenverzeichnis):
% Latex erstellt diese Liste automatisch samt Angaben
\listoftables
% Glossary (Glossar):
%\include{Glossary}
% List of formulae (Liste der Formelzeichen):
% \include{Formulae}
% Appendix (Anhänge), could have multiple chaper-files:
\appendix
\include{Anhaenge}
% Abbreviations (Abkürzungsverzeichnis):
\include{Abkuerzungsverzeichnis}
% References (Literaturverzeichnis):
% a) Style (with numbers: use unsrt):
\bibliographystyle{alpha}
% b) The File:
\bibliography{Bibliothek}
\end{document} %*****************************************************