-
Notifications
You must be signed in to change notification settings - Fork 5
/
simple.tex
86 lines (66 loc) · 2.23 KB
/
simple.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
\documentclass[first=firstname,last=lastname,company=comp,location=Dresden,simple]{baarticle}
\newacronym{HTTP}{HTTP}{Hypertext Transfer Protocol}
\newacronym{UC}{UC}{Underpinning contract}
\newacronym{ulong}{ulong}{unsigned 64-bit integer}
\newcommand{\basimpleabstract}{
\addcontentsline{toc}{section}{Abstract}
\thispagestyle{empty}
\lipsum[1]
\lipsum[2]
\lipsum[3]
}
\begin{document}
\begin{basimple}[
img=images/logo.png,
course=thecourse,
title=Lorem ipsum dolor sit amet consetetur sadipscing elitr sed diam nonumy eirmod tempor invidunt ut ,
number=1234567,
corrector={corrector1,corrector2},
themedate=\today,
returndate=\today,
signature=images/signature.png,
location=Dresden,
type=thesis,
]
\section{De finibus bonorum et malorum}
\subsection{Sed ut perspiciatis}
And also very satisfying. \gls{HTTP}\gls{UC}\gls{ulong}
\lipsum[5]
\subsection{Sed ut perspiciatis}
\lipsum[6]
\lipsum[7]
\section{Das höchste Übel}
\lipsum[8]
% sample table with text
\begin{batable}{My first table}
\begin{tabular}{l|p{0.4\linewidth} |p{0.45\linewidth}}
\textbf{Type} & \textbf{Description} & \textbf{Value}\\
\hline
1 & \lipsum[7] & \lipsum[8]\\
\hline
2 & \lipsum[12] & \lipsum[10]\\
\end{tabular}
\end{batable}
\lipsum[9]
\section{Das höchste Gut}
\lipsum[10]
% sample table with numbers
\begin{batable}{My second table}
\begin{tabular}{l|c|r} % <-- Alignments: 1st column left, 2nd middle and 3rd right, with vertical lines in between
$\alpha$ & $\beta$ & $\gamma$ \\
\hline
1 & 11.1 & a\\
2 & 180.1 & b\\
3 & 4.25231 & c\\
\end{tabular}
\end{batable}
\clearpage
% appendix
\begin{baappx}
\begin{bafigure}{An intresting addition}
\lipsum[4]
\lipsum[4]
\end{bafigure}
\end{baappx}
\end{basimple}
\end{document}