This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.tex
146 lines (107 loc) · 5.01 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
\documentclass{include/protokollclass}
% Main File - Based on protokollclass.cls
% Comments are mostly in English (and some in German, concerning the Praktikum)
% ------------------------------------------------------------------------------
% Further files in folder:
% - include/cmds.tex (for macros and additional commands)
% - include/kitlogo.pdf (for titlepage)
% - lit.bib (bibtex bibliography database)
% - include/titlepage.tex (for layout of titelpage)
% ------------------------------------------------------------------------------
% Useful Supplied Packages:
% amsmath, amssymb, mathtools, bbm, upgreek, nicefrac,
% siunitx, varioref, booktabs, graphicx, tikz, multicol
%% ---------------------------------------------
%% | Informationen über dieses Protokoll |
%% ---------------------------------------------
\newcommand{\praktikum}{P2} % P1 oder P2
\newcommand{\semester}{WS14/15} % z.B. "WS14/15" oder "SS15"
\newcommand{\wochentag}{Do} % Mo, Di, Mi oder Do
\newcommand{\gruppennr}{21} % Zweistellige Gruppennummer
\newcommand{\nachnamea}{Schal} % Nachname des ersten Praktikanten
\newcommand{\vornamea}{Paul} % Vorname des ersten Praktikanten
\newcommand{\nachnameb}{Fall} % Nachname des zweiten Praktikanten
\newcommand{\vornameb}{Klara} % Vorname des zweiten Praktikanten
\newcommand{\emailadressen}{[email protected]}
% optionale Angabe von Emailadresse(n) für den Kontakt mit dem Betreuer
\newcommand{\versuch}{Absorption radioaktiver Strahlung} % Name des Versuchs
\newcommand{\versuchsnr}{80} % bitte die korrekte Nummer dem
% Arbeitsplatz am Versuchstag
% entnehmen
\newcommand{\fehlerrechnung}{Nein} % Ob Fehlerrechnung im Versuch
% durchgeführt wurde oder nicht
\newcommand{\betreuer}{M. Mustermann} % Name des zuständigen Betreuers
\newcommand{\durchgefuehrt}{01.09.14} % Datum, an dem der Versuch
% durchgeführt wurde
%% --------------------------------------
%% | Settings for Word Separation |
%% --------------------------------------
% Help for separation:
% In German package the following hints are additionally available:
% "- = Additional separation
% "| = Suppress ligation and possible separation (e.g. Schaf"|fell)
% "~ = Hyphenation without separation (e.g. bergauf und "~ab)
% "= = Hyphenation with separation before and after
% "" = Separation without a hyphenation (e.g. und/""oder)
% Describe separation hints here:
\hyphenation
{
über-nom-me-nen an-ge-ge-be-nen
%Pro-to-koll-in-stan-zen
%Ma-na-ge-ment Netz-werk-ele-men-ten
%Netz-werk Netz-werk-re-ser-vie-rung
%Netz-werk-adap-ter Fein-ju-stier-ung
%Da-ten-strom-spe-zi-fi-ka-tion Pa-ket-rumpf
%Kon-troll-in-stanz
}
% um die Titelseite per PDF-reader auszufüllen. Vorgefertigte Daten
% können in Datei 'data.tex' modifiziert werden.
%\setboolean{forminput}{true}
% um die Anmerkungen zu den Textfeldern anzeigen zu lassen
%\setboolean{showannotations}{true}
% Erneuern der Seitenzahl in jedem Kapitel
%\setboolean{chapResetPageNumb}{true}
% Einbinden der Kapitelnummer in der Seitenzahl
%\setboolean{chapWiseNumb}{true}
% english or ngerman (new german für neue deutsche Rechtschreibung statt german)
\SelectLanguage{ngerman}
%% -----------------------
%% | Main Document |
%% -----------------------
\begin{document}
% Titlepage und ToC
\FrontMatter
\input{include/titlepage} %\cleardoublepage
\begingroup \let\clearpage\relax % in order to avoid listoffigures and
\tableofcontents % listoftables on new pages
\listoffigures
\listoftables
\endgroup
%\cleardoublepage
% Contents
\MainMatter
\emptychapter[1]{Messprotokoll 1}{} % usage: \emptychapter[page displayed
% in toc]{name of the chapter}
\pseudochapter[3]{Messprotokoll 2} % usage: \pseudochapter[number of pages
% added]{name of the chapter}
\chapter{Auswertung}
\input{./chap/chapter1.tex} %\cleardoublepage
% appendix for more or less interesting calculations
\Appendix
\chapter*{\appendixname} \addcontentsline{toc}{chapter}{\appendixname}
% to make the appendix appear in ToC without number. \appendixname =
% Appendix or Anhang (depending on chosen language)
\input{./chap/appendix.tex} %\cleardoublepage
% Bibliography
\TheBibliography
% BIBTEX
% use if you want citations to appear even if they are not referenced to:
% \nocite{*} or maybe \nocite{Kon64,And59} for specific entries
%\nocite{*}
\bibliographystyle{babalpha}
\bibliography{lit.bib}
% THEBIBLIOGRAPHY
%\begin{thebibliography}{000}
% \bibitem{ident}Entry into Bibliography.
%\end{thebibliography}
\end{document}