forked from inarts/Paper
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtemplate.tex
73 lines (62 loc) · 3.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
% core meta data --------------------------------------------------------------------
\newcommand{\metaTitle}{A Nice Descriptive Title\texorpdfstring{\\}{ }without Abbreviations}
\newcommand{\metaTitleShort}{Nice Short Title}
\newcommand{\metaSubject}{Conference Name}
\newcommand{\metaKeywords}{some, keywords}
\newcommand{\metaAuthorFirst}{F. Last}
\newcommand{\metaMailFirst}{[email protected]}
\newcommand{\metaInstFirst}{University, City, Country,\\Department}
% ------------------------------------------------------------------------------
% /* include config --------------------------------------------------------- */
\input{template.config.tex}
\input{template.acro.tex} % acro package
\IfFileExists{global-do-not-edit.acro.tex}{\input{global-do-not-edit.acro.tex}}{} % chktex 27
\AtBeginDocument{\let\textlabel\label}
% IEEE copyright ---------------------------------------------------------------
%\usepackage[pscoord]{eso-pic}
%\newcommand{\ieeecopyright}[3]{
% \setbox0=\hbox{#3}
% \AddToShipoutPictureFG*{ \put(\LenToUnit{#1\paperwidth},\LenToUnit{#2\paperheight}){\vtop{{\null}\makebox[0pt][c]{#3}}}}
%}
%\ieeecopyright{.2}{0.055}{978-1-4799-1234-5/67/\$31.00~\copyright~2015~IEEE}
% IEEE copyright ---------------------------------------------------------------
% /* ------------------------------------------------------------------------ */
% /* begin paper ------------------------------------------------------------ */
\begin{document}
% /* acronym package ---------------------------------------------------- */
%\begin{acronym}
% \input{template.acro.tex}
%\end{acronym}
% /* -------------------------------------------------------------------- */
% /* Meta data ---------------------------------------------------------- */
%\frontmatter
\title{\metaTitle}
\maketitle
% /* -------------------------------------------------------------------- */
% /* -------------------------------------------------------------------- */
\begin{abstract}
\input{src/00_abstract}
\end{abstract}
%\begin{IEEEkeywords}\metaKeywords\end{IEEEkeywords} % enable for IEEE style
\keywords{\metaKeywords} % enable for LLNCS style
% /* -------------------------------------------------------------------- */
% /* -------------------------------------------------------------------- */
%\mainmatter
\input{src/01_introduction}
\input{src/02_relatedwork}
\input{src/03_approach}
\input{src/04_evaluation}
\input{src/05_conclusions}
\input{src/00_acknowledgements}
%\bibliographystyle{IEEEtran} % enable for bibtex
%\bibliography{template} % enable for bibtex
\printbibliography% enable for biber style
% to show unreferenced publications ------------------------------------- */
%\bibliographystyle{unsrt}
%\cite{dummy}
%\nocite{*}
%------------------------------------------------------------------------ */
% /* -------------------------------------------------------------------- */
%\backmatter
\end{document}
% /* ------------------------------------------------------------------------ */