-
Notifications
You must be signed in to change notification settings - Fork 1
/
labreport.tex
50 lines (42 loc) · 1.29 KB
/
labreport.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
\documentclass[11pt, a4paper, USenglish]{article} % change ``USenglish'' to ``norsk'' if applicable.
\usepackage{kyblab} % Contains all included packages. See kyblab.sty.
\addbibresource{bibliography.bib} % Makes the bibliography file available to biblatex.
\begin{document}
% Titlepage
\title{LaTeX Lab Report Template}
\author{Group 00\\Student 70000\\Student 70001\\Student 70002}
\date{January 1, 1970}
\begin{titlepage}
\maketitle
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{figures/itk_ntnu}\\
Department of Engineering Cybernetics
\end{figure}
\thispagestyle{empty}
\end{titlepage}
% Abstract
\newpage
\input{abstract}
\thispagestyle{empty} % Avoid page numbering on the abstract page.
% TOC
\newpage
\tableofcontents
\thispagestyle{empty} % Avoid page numbering on the table of contents.
% Main content
\newpage
\setcounter{page}{1}
\include{intro}
\include{part1}
\include{part2}
\include{part3}
\include{conclusion}
\include{appendix}
% \input simply inserts the contents of the file, while \include forces a \newpage.
% See \input vs. \include: http://tex.stackexchange.com/questions/246/when-should-i-use-input-vs-include
% References
\newpage
\addcontentsline{toc}{section}{References}
\printbibliography{}
\label{sec:bibliography}
\end{document}