-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
112 lines (79 loc) · 3.41 KB
/
report.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
% !TeX program = lualatex
\documentclass[logo]{mlai-report}
\input{preamble}
% Please change this according to your situation
\title{The MLAI Report Template}
\author{Philip J. Fry \and Turanga Leela \and Bender Bending Rodriguez}
\date{\today}
\course{MA-INF 4209}{Selected Papers from Mars University}{}
\term{Winter 3000}
\supervisor{Prof. Dr. Hubert J. Farnsworth \and Dr. John A. Zoidberg}
% Name: Matriculation number
\students{Philip J. Fry: 42424242 \and Turanga Leela: 24242424 \and Bender Bending Rodriguez: 22442244}
\addbibresource{references.bib}
\usepackage{blindtext}
\begin{document}
\maketitle
\begin{abstract}\marginnote{Leela}
This is at the same time the official template for lab and seminar reports within the MLAI group at the University of Bonn and a documentation of its usage.
You can start your lab/seminar report or Projektgruppenbericht by modifying \texttt{report.tex}.
You must not change \texttt{mlai-report.cls} and must not fiddle with the page margins or other spacing.
The body of this document showcases how to use our document class.
\end{abstract}
\section[Introduction]{Introduction\protect\marginnote{Fry}}
\begin{equation}
\int_{-\infty}^\infty \mathrm{e}^{-\frac{x^2}{2}} \; \mathrm{d}x
\end{equation}
\enquote{Don't panic} \parencite{adams1979} \blindtext
\subsection[Related Work]{Related Work\protect\marginnote{Rodriguez}}
\section{Preliminaries}
\begin{figure}[tp]
\centering
\includegraphics[height=4cm]{example-image-a}
\caption{Schubidu}
\label{fig:example-image}
\end{figure}
\section{Setup}
\subsection{Requirements}
\subsection{Class Options}
\subsection{Language}
\subsection{Title and Author}
\subsection{Course, Term, and Supervisor}
\section{Feature Reel}
\subsection{Colors}
The colors of the University of Bonn corporate design are available in this template and can be used as regular \LaTeX{} colors. E.g.
\begin{itemize}
\item \verb+\textcolor{ub-blue}{}+ \textcolor{ub-blue}{makes the text blue}
\item \verb+\textcolor{ub-yellow}{}+ \textcolor{ub-yellow}{makes the text yellow}
\item \verb+\textcolor{ub-gray}{}+ \textcolor{ub-gray}{makes the text gray}
\end{itemize}
\subsection{Floating Environments}
\subsection{Algorithms}
\subsection{Theorem-like Environments}
\subsection{List Environments}
\subsection{Citations}
\section{Useful Additions}
\section{Concluding Remarks}
\printbibliography
\appendix
\section{Known Issues}
\begin{itemize}
\item There might be problems compiling this latex document in Windows because of the missing font package TeX Gyre Pagella. In that case please install the font package manually.
\end{itemize}
This template can be found on GitHub under
\begin{center}
\url{https://github.com/mlai-bonn/report-template}
\end{center}
If you encounter any problem, please create a bug report. Furthermore, here is a list of known issues:
\begin{itemize}
\item \verb|\marginnote{...}| inside sectioning appears in a table of contents. As a work\-around one can use the optional argument of \verb|\section| and \verb|\subsection|. For instance, use
\begin{verbatim}
\section[Introduction]{Introduction\protect\marginnote{Fry}}
\end{verbatim}
instead of
\begin{verbatim}
\section{Introduction\protect\marginnote{Fry}}
\end{verbatim}
However, you should not include a table of contents in a report anyway.
\end{itemize}
\end{document}