-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
58 lines (49 loc) · 1.83 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
\documentclass[12pt,a4paper]{report}
\usepackage[pdftex]{graphicx} %for embedding images
\usepackage{url} %for proper url entries
\usepackage{comment} %for proper url entries
\usepackage[bookmarks, colorlinks=false, pdfborder={0 0 0}, pdftitle={<pdf title here>}, pdfauthor={<author's name here>}, pdfsubject={<subject here>}, pdfkeywords={<keywords here>}]{hyperref} %for creating links in the pdf version and other additional pdf attributes, no effect on the printed document
%\usepackage[final]{pdfpages} %for embedding another pdf, remove if not required
\title{ \normalsize \textsc{RDC.2 - Transfer Report} % Subtitle of the document
\\[2.0cm] % 2cm spacing
\HRule{0.5pt} \\ % Upper rule
\LARGE \textbf{\uppercase{Action Selection for Social Human-Robot Interactions}} % Title
\HRule{2pt} \\ [0.5cm] % Lower rule + 0.5cm spacing
% Todays date
}
\author{
Emmanuel Senft\\
}
\makeatletter
\renewcommand{\thesection}{
\ifnum\c@chapter<1 \@arabic\c@section
\else \thechapter.\@arabic\c@section
\fi
}
\makeatother
%
\begin{document}
\renewcommand\bibname{References} %Renames "Bibliography" to "References" on ref page
%include other pages
\input{./title.tex}
%\input{./certificate.tex}
%\input{./abstract.tex}
\pagenumbering{roman} %numbering before main content starts
\tableofcontents
\newpage
\pagenumbering{arabic} %reset numbering to normal for the main content
\input{./introduction.tex} %literature survey included in this
\input{./informing.tex} %literature survey included in this
\input{./work-done.tex}
\input{./future-work.tex}
\input{./conclusion.tex}
\bibliographystyle{IEEEtran}
\bibliography{./BibFile}
\begin{comment}
\listoffigures
\input{./introduction.tex} %literature survey included in this
\input{./conclusion.tex}
\input{./acknow.tex}
\input{./ref.tex}
\end{comment}
\end{document}