-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
145 lines (114 loc) · 3.08 KB
/
main.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
\documentclass[10pt,journal,english,twocolumn]{IEEEtran} % journal two column
%\documentclass[10pt,conference,english,twocolumn]{IEEEtran} % conference two column
%% Language and Typesetting
\usepackage{babel}
\usepackage[babel]{microtype}
\usepackage[babel]{csquotes}
%% Fonts
\usepackage[T1]{fontenc}
\renewcommand*\ttdefault{cmvtt} % Different monospaced font
%% Graphics
\usepackage[svgnames]{xcolor}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{pgfplots}
%% Tables
\usepackage{tabularx}
\usepackage{booktabs}
%% Math
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{bm}
\usepackage{siunitx}
\usepackage{mathtools}
\usepackage{dsfont}
%% Misc
\usepackage[math]{blindtext}
%% Bibliography
\usepackage[backend=biber,url=false,style=ieee,bibstyle=ieee-proc,dashed=false,isbn=false,doi=true]{biblatex}
\bibliography{literature.bib}
\renewcommand*{\bibfont}{\small}
%% Hyperref
\usepackage{hyperref}
\hypersetup{
pdfauthor={{{author}}},
pdftitle={{{title}}},
pdflang={en-US},
bookmarksnumbered=true,
colorlinks=true,
allcolors=.,
urlcolor=MidnightBlue,
}
%% Glossary/Acronyms
\usepackage[acronyms,nomain,xindy,nowarn]{glossaries}
\makeglossaries
\loadglsentries{acronyms.tex}
\setacronymstyle{long-short}
\glsdisablehyper
%% SETUPS
\input{setup-colors.tex}
\input{setup-math.tex}
\input{setup-plots.tex}
\input{setup-misc.tex}
%opening
\title{{{title}}}
\author{{{author}}
% \thanks{Parts of this work have been presented at the ...~\cite{...}.}
\thanks{{{affiliation}}}
\thanks{{{funding}}}
}
\begin{document}
\maketitle
\begin{abstract}\noindent\boldmath
\todo{Four sentences:}
\color{blue}
1) State the problem.
2) Say why it is an interesting problem.
3) Say what your solution achieves.
4) Say what follows from your solution.
\end{abstract}
\begin{IEEEkeywords}
\todo{Keyword 1, Keyword 2, Keyword 3}.
\end{IEEEkeywords}
\glsresetall
\section{Introduction}\label{sec:introduction}
\todo{Add text...}
\section{System Model and Problem Formulation}\label{sec:system-model}
\todo{Add text... \cite{Tse2005}}
\begin{thm}[Name of the Theorem]
\label{thm:important-theorem}
This is an important theorem.
\end{thm}
\begin{proof}
This is obvious.
\end{proof}
You can use the \verb*|\autoref{label}| command to refer to environments and sections like \autoref{thm:important-theorem}.
This automatically adds the name of the environment.
\blinddocument
\section{Plots}
You can find an example plot in \autoref{fig:example} which uses the \texttt{betterplot} style, which is defined in this template.
\begin{figure}
\centering
\begin{tikzpicture}% function
\begin{axis}[
betterplot,
xlabel={Label $x$ Axis},
ylabel={Label $y$ Axis},
xmin=-5,
xmax=5,
]
\addplot+{sin(deg(x))};
\addlegendentry{$\sin(x)$};
\addplot+[samples=100]{sin(2*deg(x))};
\addlegendentry{$\sin(2x)$};
\end{axis}
\end{tikzpicture}
\caption{Example plot using the custom \texttt{betterplot} style}
\label{fig:example}
\end{figure}
\section{Conclusion}\label{sec:conclusion}
\todo{Add text...}
\printbibliography[heading=bibintoc]
\end{document}