generated from esdandreu/stem-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
66 lines (54 loc) · 2.07 KB
/
paper.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
% !TeX root = ./paper.tex
\documentclass[a4paper]{IEEEtran}
%% Import additional packages and header definitions
% For the LaTex newbies, \input let's you introduce a .tex file as if it were
% part of the current file
\input{src/packages}
%% Macros and colour definitions.
\input{src/macros.tex}
\input{src/colors.tex}
% *****************************************************************************
% Report configuration: Tweak this
% *****************************************************************************
%% Developer and debug options
% \overfullrule=5pt % Un-comment this to show a black bar by overfull hboxes.
%% Bibliography
% Be careful with reference files list, always avoid blanks!
\addbibresource{bibliography/references.bib}
%% Title parameters
\title{My great paper}
\author{
Gimenez Bolinches, Andreu \\
\textit{[email protected]} \\
}
\begin{document}
% *****************************************************************************
% Front Page
% *****************************************************************************
\hypersetup{linkcolor=black}
\maketitle
\IfFileExists{./abstract.tex}{
\begin{abstract}\input{abstract}\end{abstract}
}
% *****************************************************************************
% Main Content
% *****************************************************************************
\hypersetup{linkcolor=documentLinkColor}
\input{content.tex}
% *****************************************************************************
% Bibliography
% *****************************************************************************
\bibliographystyle{IEEEtran}
\printbibliography[%
% heading=bibintoc,%
title={References}%
]
% *****************************************************************************
% Appendices
% *****************************************************************************
\IfFileExists{./appendices.tex}{
\appendices
\include{appendices}
\clearpage
}
\end{document}