-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtemplate.tex
52 lines (46 loc) · 1.9 KB
/
template.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
% /* include config --------------------------------------------------------- */
\newcommand{\metaFilename}{template}
\input{\metaFilename.config.tex}
% /* ------------------------------------------------------------------------ */
% /* begin paper ------------------------------------------------------------ */
\begin{document}
% /* abbreviations ------------------------------------------------------ */
\begin{acronym}
\input{\metaFilename.acro.tex}
\end{acronym}
% /* -------------------------------------------------------------------- */
% /* Meta data ---------------------------------------------------------- */
%\frontmatter
\title{\metaTitle}
\maketitle
% /* -------------------------------------------------------------------- */
% /* -------------------------------------------------------------------- */
\begin{abstract}
\input{src/abstract}
\end{abstract}
%IEEE
%\begin{IEEEkeywords}\metaKeywords\end{IEEEkeywords}
%LLNCS
\keywords{\metaKeywords}
% /* -------------------------------------------------------------------- */
% /* -------------------------------------------------------------------- */
%\mainmatter
\input{src/introduction}
\input{src/relatedwork}
\input{src/assumptions}
\input{src/analyze}
\input{src/evaluation}
\input{src/discussion}
\input{src/conclusions}
\input{src/acknowledgements}
\bibliographystyle{IEEEtran}
\bibliography{\metaFilename}
% to show unreferenced publications ------------------------------------- */
%\bibliographystyle{unsrt}
%\cite{dummy}
%\nocite{*}
%------------------------------------------------------------------------ */
% /* -------------------------------------------------------------------- */
%\backmatter
\end{document}
% /* ------------------------------------------------------------------------ */