falkorlib 0.8.7 → 0.8.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +98 -74
- data/README.md +1 -1
- data/falkorlib.gemspec +21 -24
- data/lib/falkorlib/bootstrap/base.rb +3 -4
- data/lib/falkorlib/bootstrap/ruby.rb +1 -1
- data/lib/falkorlib/cli/new.rb +1 -1
- data/lib/falkorlib/config.rb +6 -5
- data/lib/falkorlib/git/base.rb +1 -1
- data/lib/falkorlib/version.rb +1 -1
- data/spec/falkorlib/git_spec.rb +1 -1
- data/templates/latex/article/_related_works.tex.erb +1 -1
- data/templates/latex/article/biblio.bib.erb +12 -1
- data/templates/latex/article-acm/main.tex.erb +47 -65
- data/templates/latex/article-ieee/main.tex.erb +42 -410
- data/templates/latex/article-llncs/main.tex.erb +30 -18
- data/templates/latex/beamer/main.tex.erb +7 -6
- data/templates/latex/llncs/llncs.cls +49 -39
- data/templates/latex/llncs/{splncs03.bst → splncs04.bst} +40 -11
- metadata +88 -88
@@ -1,9 +1,9 @@
|
|
1
1
|
% =============================================================================
|
2
2
|
% File: <%= config[:name] %>.tex --
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
4
|
-
% Time-stamp: <
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:38 svarrette>
|
5
5
|
%
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %>
|
7
7
|
%
|
8
8
|
% For more information:
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
@@ -11,388 +11,56 @@
|
|
11
11
|
% - LaTeX symbol list:
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
13
13
|
% =============================================================================
|
14
|
-
% /!\ WARNING: inspired from bare_conf_compsoc.tex
|
15
14
|
% See http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran
|
16
|
-
%
|
17
|
-
% =============================================================================
|
18
|
-
%% V1.4b
|
19
|
-
%% 2015/08/26
|
20
|
-
%% by Michael Shell
|
21
|
-
%% See:
|
22
|
-
%% http://www.michaelshell.org/
|
23
|
-
%% for current contact information.
|
24
|
-
%%
|
25
|
-
%% This is a skeleton file demonstrating the use of IEEEtran.cls
|
26
|
-
%% (requires IEEEtran.cls version 1.8b or later) with an IEEE Computer
|
27
|
-
%% Society conference paper.
|
28
|
-
%%
|
29
|
-
%% Support sites:
|
30
|
-
%% http://www.michaelshell.org/tex/ieeetran/
|
31
|
-
%% http://www.ctan.org/pkg/ieeetran
|
32
|
-
%% and
|
33
|
-
%% http://www.ieee.org/
|
34
|
-
|
35
|
-
%%*************************************************************************
|
36
|
-
%% Legal Notice:
|
37
|
-
%% This code is offered as-is without any warranty either expressed or
|
38
|
-
%% implied; without even the implied warranty of MERCHANTABILITY or
|
39
|
-
%% FITNESS FOR A PARTICULAR PURPOSE!
|
40
|
-
%% User assumes all risk.
|
41
|
-
%% In no event shall the IEEE or any contributor to this code be liable for
|
42
|
-
%% any damages or losses, including, but not limited to, incidental,
|
43
|
-
%% consequential, or any other damages, resulting from the use or misuse
|
44
|
-
%% of any information contained here.
|
45
|
-
%%
|
46
|
-
%% All comments are the opinions of their respective authors and are not
|
47
|
-
%% necessarily endorsed by the IEEE.
|
48
|
-
%%
|
49
|
-
%% This work is distributed under the LaTeX Project Public License (LPPL)
|
50
|
-
%% ( http://www.latex-project.org/ ) version 1.3, and may be freely used,
|
51
|
-
%% distributed and modified. A copy of the LPPL, version 1.3, is included
|
52
|
-
%% in the base LaTeX documentation of all distributions of LaTeX released
|
53
|
-
%% 2003/12/01 or later.
|
54
|
-
%% Retain all contribution notices and credits.
|
55
|
-
%% ** Modified files should be clearly indicated as such, including **
|
56
|
-
%% ** renaming them and changing author support contact information. **
|
57
|
-
%%*************************************************************************
|
58
|
-
|
15
|
+
% See also https://github.com/latextemplates/IEEE
|
59
16
|
|
60
|
-
|
61
|
-
|
62
|
-
% *** with production work. The IEEE's font choices and paper sizes can ***
|
63
|
-
% *** trigger bugs that do not appear when using other class files. *** ***
|
64
|
-
% The testflow support page is at:
|
65
|
-
% http://www.michaelshell.org/tex/testflow/
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
\documentclass[conference,compsoc]{IEEEtran}
|
70
|
-
% Some/most Computer Society conferences require the compsoc mode option,
|
71
|
-
% but others may want the standard conference format.
|
72
|
-
%
|
73
|
-
% If IEEEtran.cls has not been installed into the LaTeX system files,
|
74
|
-
% manually specify the path to it like:
|
75
|
-
% \documentclass[conference,compsoc]{../sty/IEEEtran}
|
17
|
+
\documentclass[conference,a4paper]{IEEEtran}
|
18
|
+
\IEEEoverridecommandlockouts
|
76
19
|
|
77
20
|
\usepackage{_style}
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
% compilation based on whether the output is pdf or dvi.
|
88
|
-
% usage:
|
89
|
-
% \ifpdf
|
90
|
-
% % pdf code
|
91
|
-
% \else
|
92
|
-
% % dvi code
|
93
|
-
% \fi
|
94
|
-
% The latest version of ifpdf.sty can be obtained from:
|
95
|
-
% http://www.ctan.org/pkg/ifpdf
|
96
|
-
% Also, note that IEEEtran.cls V1.7 and later provides a builtin
|
97
|
-
% \ifCLASSINFOpdf conditional that works the same way.
|
98
|
-
% When switching from latex to pdflatex and vice-versa, the compiler may
|
99
|
-
% have to be run twice to clear warning/error messages.
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
% *** CITATION PACKAGES ***
|
107
|
-
%
|
108
|
-
\ifCLASSOPTIONcompsoc
|
109
|
-
% IEEE Computer Society needs nocompress option
|
110
|
-
% requires cite.sty v4.0 or later (November 2003)
|
111
|
-
\usepackage[nocompress]{cite}
|
112
|
-
\else
|
113
|
-
% normal IEEE
|
114
|
-
\usepackage{cite}
|
115
|
-
\fi
|
116
|
-
% cite.sty was written by Donald Arseneau
|
117
|
-
% V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
|
118
|
-
% \cite{} output to follow that of the IEEE. Loading the cite package will
|
119
|
-
% result in citation numbers being automatically sorted and properly
|
120
|
-
% "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
|
121
|
-
% cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
|
122
|
-
% \cite will automatically add leading space, if needed. Use cite.sty's
|
123
|
-
% noadjust option (cite.sty V3.8 and later) if you want to turn this off
|
124
|
-
% such as if a citation ever needs to be enclosed in parenthesis.
|
125
|
-
% cite.sty is already installed on most LaTeX systems. Be sure and use
|
126
|
-
% version 5.0 (2009-03-20) and later if using hyperref.sty.
|
127
|
-
% The latest version can be obtained at:
|
128
|
-
% http://www.ctan.org/pkg/cite
|
129
|
-
% The documentation is contained in the cite.sty file itself.
|
130
|
-
%
|
131
|
-
% Note that some packages require special options to format as the Computer
|
132
|
-
% Society requires. In particular, Computer Society papers do not use
|
133
|
-
% compressed citation ranges as is done in typical IEEE papers
|
134
|
-
% (e.g., [1]-[4]). Instead, they list every citation separately in order
|
135
|
-
% (e.g., [1], [2], [3], [4]). To get the latter we need to load the cite
|
136
|
-
% package with the nocompress option which is supported by cite.sty v4.0
|
137
|
-
% and later.
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
% *** GRAPHICS RELATED PACKAGES ***
|
144
|
-
%
|
145
|
-
\ifCLASSINFOpdf
|
146
|
-
% \usepackage[pdftex]{graphicx}
|
147
|
-
% declare the path(s) where your graphic files are
|
148
|
-
% \graphicspath{{../pdf/}{../jpeg/}}
|
149
|
-
% and their extensions so you won't have to specify these with
|
150
|
-
% every instance of \includegraphics
|
151
|
-
% \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
|
152
|
-
\else
|
153
|
-
% or other class option (dvipsone, dvipdf, if not using dvips). graphicx
|
154
|
-
% will default to the driver specified in the system graphics.cfg if no
|
155
|
-
% driver is specified.
|
156
|
-
% \usepackage[dvips]{graphicx}
|
157
|
-
% declare the path(s) where your graphic files are
|
158
|
-
% \graphicspath{{../eps/}}
|
159
|
-
% and their extensions so you won't have to specify these with
|
160
|
-
% every instance of \includegraphics
|
161
|
-
% \DeclareGraphicsExtensions{.eps}
|
162
|
-
\fi
|
163
|
-
% graphicx was written by David Carlisle and Sebastian Rahtz. It is
|
164
|
-
% required if you want graphics, photos, etc. graphicx.sty is already
|
165
|
-
% installed on most LaTeX systems. The latest version and documentation
|
166
|
-
% can be obtained at:
|
167
|
-
% http://www.ctan.org/pkg/graphicx
|
168
|
-
% Another good source of documentation is "Using Imported Graphics in
|
169
|
-
% LaTeX2e" by Keith Reckdahl which can be found at:
|
170
|
-
% http://www.ctan.org/pkg/epslatex
|
171
|
-
%
|
172
|
-
% latex, and pdflatex in dvi mode, support graphics in encapsulated
|
173
|
-
% postscript (.eps) format. pdflatex in pdf mode supports graphics
|
174
|
-
% in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
|
175
|
-
% that all non-photo figures use a vector format (.eps, .pdf, .mps) and
|
176
|
-
% not a bitmapped formats (.jpeg, .png). The IEEE frowns on bitmapped formats
|
177
|
-
% which can result in "jaggedy"/blurry rendering of lines and letters as
|
178
|
-
% well as large increases in file sizes.
|
179
|
-
%
|
180
|
-
% You can find documentation about the pdfTeX application at:
|
181
|
-
% http://www.tug.org/applications/pdftex
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
% *** MATH PACKAGES ***
|
188
|
-
%
|
189
|
-
%\usepackage{amsmath}
|
190
|
-
% A popular package from the American Mathematical Society that provides
|
191
|
-
% many useful and powerful commands for dealing with mathematics.
|
192
|
-
%
|
193
|
-
% Note that the amsmath package sets \interdisplaylinepenalty to 10000
|
194
|
-
% thus preventing page breaks from occurring within multiline equations. Use:
|
195
|
-
%\interdisplaylinepenalty=2500
|
196
|
-
% after loading amsmath to restore such page breaks as IEEEtran.cls normally
|
197
|
-
% does. amsmath.sty is already installed on most LaTeX systems. The latest
|
198
|
-
% version and documentation can be obtained at:
|
199
|
-
% http://www.ctan.org/pkg/amsmath
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
% *** SPECIALIZED LIST PACKAGES ***
|
206
|
-
%
|
207
|
-
%\usepackage{algorithmic}
|
208
|
-
% algorithmic.sty was written by Peter Williams and Rogerio Brito.
|
209
|
-
% This package provides an algorithmic environment fo describing algorithms.
|
210
|
-
% You can use the algorithmic environment in-text or within a figure
|
211
|
-
% environment to provide for a floating algorithm. Do NOT use the algorithm
|
212
|
-
% floating environment provided by algorithm.sty (by the same authors) or
|
213
|
-
% algorithm2e.sty (by Christophe Fiorio) as the IEEE does not use dedicated
|
214
|
-
% algorithm float types and packages that provide these will not provide
|
215
|
-
% correct IEEE style captions. The latest version and documentation of
|
216
|
-
% algorithmic.sty can be obtained at:
|
217
|
-
% http://www.ctan.org/pkg/algorithms
|
218
|
-
% Also of interest may be the (relatively newer and more customizable)
|
219
|
-
% algorithmicx.sty package by Szasz Janos:
|
220
|
-
% http://www.ctan.org/pkg/algorithmicx
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
% *** ALIGNMENT PACKAGES ***
|
226
|
-
%
|
227
|
-
%\usepackage{array}
|
228
|
-
% Frank Mittelbach's and David Carlisle's array.sty patches and improves
|
229
|
-
% the standard LaTeX2e array and tabular environments to provide better
|
230
|
-
% appearance and additional user controls. As the default LaTeX2e table
|
231
|
-
% generation code is lacking to the point of almost being broken with
|
232
|
-
% respect to the quality of the end results, all users are strongly
|
233
|
-
% advised to use an enhanced (at the very least that provided by array.sty)
|
234
|
-
% set of table tools. array.sty is already installed on most systems. The
|
235
|
-
% latest version and documentation can be obtained at:
|
236
|
-
% http://www.ctan.org/pkg/array
|
237
|
-
|
238
|
-
|
239
|
-
% IEEEtran contains the IEEEeqnarray family of commands that can be used to
|
240
|
-
% generate multiline equations as well as matrices, tables, etc., of high
|
241
|
-
% quality.
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
% *** SUBFIGURE PACKAGES ***
|
247
|
-
%\ifCLASSOPTIONcompsoc
|
248
|
-
% \usepackage[caption=false,font=footnotesize,labelfont=sf,textfont=sf]{subfig}
|
249
|
-
%\else
|
250
|
-
% \usepackage[caption=false,font=footnotesize]{subfig}
|
251
|
-
%\fi
|
252
|
-
% subfig.sty, written by Steven Douglas Cochran, is the modern replacement
|
253
|
-
% for subfigure.sty, the latter of which is no longer maintained and is
|
254
|
-
% incompatible with some LaTeX packages including fixltx2e. However,
|
255
|
-
% subfig.sty requires and automatically loads Axel Sommerfeldt's caption.sty
|
256
|
-
% which will override IEEEtran.cls' handling of captions and this will result
|
257
|
-
% in non-IEEE style figure/table captions. To prevent this problem, be sure
|
258
|
-
% and invoke subfig.sty's "caption=false" package option (available since
|
259
|
-
% subfig.sty version 1.3, 2005/06/28) as this is will preserve IEEEtran.cls
|
260
|
-
% handling of captions.
|
261
|
-
% Note that the Computer Society format requires a sans serif font rather
|
262
|
-
% than the serif font used in traditional IEEE formatting and thus the need
|
263
|
-
% to invoke different subfig.sty package options depending on whether
|
264
|
-
% compsoc mode has been enabled.
|
265
|
-
%
|
266
|
-
% The latest version and documentation of subfig.sty can be obtained at:
|
267
|
-
% http://www.ctan.org/pkg/subfig
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
% *** FLOAT PACKAGES ***
|
273
|
-
%
|
274
|
-
%\usepackage{fixltx2e}
|
275
|
-
% fixltx2e, the successor to the earlier fix2col.sty, was written by
|
276
|
-
% Frank Mittelbach and David Carlisle. This package corrects a few problems
|
277
|
-
% in the LaTeX2e kernel, the most notable of which is that in current
|
278
|
-
% LaTeX2e releases, the ordering of single and double column floats is not
|
279
|
-
% guaranteed to be preserved. Thus, an unpatched LaTeX2e can allow a
|
280
|
-
% single column figure to be placed prior to an earlier double column
|
281
|
-
% figure.
|
282
|
-
% Be aware that LaTeX2e kernels dated 2015 and later have fixltx2e.sty's
|
283
|
-
% corrections already built into the system in which case a warning will
|
284
|
-
% be issued if an attempt is made to load fixltx2e.sty as it is no longer
|
285
|
-
% needed.
|
286
|
-
% The latest version and documentation can be found at:
|
287
|
-
% http://www.ctan.org/pkg/fixltx2e
|
288
|
-
|
289
|
-
|
290
|
-
%\usepackage{stfloats}
|
291
|
-
% stfloats.sty was written by Sigitas Tolusis. This package gives LaTeX2e
|
292
|
-
% the ability to do double column floats at the bottom of the page as well
|
293
|
-
% as the top. (e.g., "\begin{figure*}[!b]" is not normally possible in
|
294
|
-
% LaTeX2e). It also provides a command:
|
295
|
-
%\fnbelowfloat
|
296
|
-
% to enable the placement of footnotes below bottom floats (the standard
|
297
|
-
% LaTeX2e kernel puts them above bottom floats). This is an invasive package
|
298
|
-
% which rewrites many portions of the LaTeX2e float routines. It may not work
|
299
|
-
% with other packages that modify the LaTeX2e float routines. The latest
|
300
|
-
% version and documentation can be obtained at:
|
301
|
-
% http://www.ctan.org/pkg/stfloats
|
302
|
-
% Do not use the stfloats baselinefloat ability as the IEEE does not allow
|
303
|
-
% \baselineskip to stretch. Authors submitting work to the IEEE should note
|
304
|
-
% that the IEEE rarely uses double column equations and that authors should try
|
305
|
-
% to avoid such use. Do not be tempted to use the cuted.sty or midfloat.sty
|
306
|
-
% packages (also by Sigitas Tolusis) as the IEEE does not format its papers in
|
307
|
-
% such ways.
|
308
|
-
% Do not attempt to use stfloats with fixltx2e as they are incompatible.
|
309
|
-
% Instead, use Morten Hogholm'a dblfloatfix which combines the features
|
310
|
-
% of both fixltx2e and stfloats:
|
311
|
-
%
|
312
|
-
% \usepackage{dblfloatfix}
|
313
|
-
% The latest version can be found at:
|
314
|
-
% http://www.ctan.org/pkg/dblfloatfix
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
% *** PDF, URL AND HYPERLINK PACKAGES ***
|
320
|
-
%
|
321
|
-
%\usepackage{url}
|
322
|
-
% url.sty was written by Donald Arseneau. It provides better support for
|
323
|
-
% handling and breaking URLs. url.sty is already installed on most LaTeX
|
324
|
-
% systems. The latest version and documentation can be obtained at:
|
325
|
-
% http://www.ctan.org/pkg/url
|
326
|
-
% Basically, \url{my_url_here}.
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
% *** Do not adjust lengths that control margins, column widths, etc. ***
|
332
|
-
% *** Do not use packages that alter fonts (such as pslatex). ***
|
333
|
-
% There should be no need to do such things with IEEEtran.cls V1.6 and later.
|
334
|
-
% (Unless specifically asked to do so by the journal or conference you plan
|
335
|
-
% to submit to, of course. )
|
336
|
-
|
21
|
+
%\usepackage{orcidlink}
|
22
|
+
\usepackage{balance}
|
23
|
+
\hypersetup{
|
24
|
+
colorlinks=true,
|
25
|
+
citecolor=blue,
|
26
|
+
linkcolor=blue,
|
27
|
+
filecolor=blue,
|
28
|
+
urlcolor=blue,
|
29
|
+
}
|
337
30
|
|
338
31
|
% correct bad hyphenation here
|
339
|
-
\hyphenation{}
|
32
|
+
% \hyphenation{}
|
340
33
|
|
341
34
|
|
342
|
-
% =============================================================================
|
343
|
-
\begin{document}
|
344
|
-
% =============================================================================
|
345
|
-
%
|
346
|
-
% paper title
|
347
|
-
% Titles are generally capitalized except for words such as a, an, and, as,
|
348
|
-
% at, but, by, for, in, nor, of, on, or, the, to and up, which are usually
|
349
|
-
% not capitalized unless they are the first or last word of the title.
|
350
|
-
% Linebreaks \\ can be used within to get better formatting as desired.
|
351
|
-
% Do not put math or special symbols in the title.
|
352
35
|
\title{<%= config[:title] %> -- <%= config[:subtitle] %>}
|
353
36
|
|
354
37
|
|
355
38
|
% author names and affiliations
|
356
39
|
% use a multiple column layout for up to three different
|
357
40
|
% affiliations
|
358
|
-
\author{
|
359
|
-
|
360
|
-
|
361
|
-
|
41
|
+
\author{
|
42
|
+
\IEEEauthorblockN{%
|
43
|
+
Sebastien Varrette$^{\ast}$, %\,\orcidlink{0000-0001-9011-851X},
|
44
|
+
<%= config[:author] %>,
|
45
|
+
FirstName2 LastName2$^{\ddagger}$, %\,\orcidlink{XXXX},
|
46
|
+
and
|
47
|
+
FirstName3 LastName3$^{\dagger}$ %\,\orcidlink{YYYY}
|
48
|
+
}
|
49
|
+
\IEEEauthorblockA{%
|
50
|
+
$^{\ast}$Faculty of Science, Technology and Medicine (FSTM)\\
|
362
51
|
$^{\dagger}$Interdisciplinary Centre for Security Reliability and Trust\\
|
363
52
|
$^{\ddagger}$Research Unit in Engineering Science\\
|
364
53
|
2, avenue de l'Universit\'e, L-4365 Esch-sur-Alzette, Luxembourg\\
|
365
|
-
\texttt{Firstname.Name@uni.lu}
|
54
|
+
\texttt{Firstname.Name@uni.lu}
|
55
|
+
}
|
366
56
|
}
|
367
57
|
|
368
|
-
% conference papers do not typically use \thanks and this command
|
369
|
-
% is locked out in conference mode. If really needed, such as for
|
370
|
-
% the acknowledgment of grants, issue a \IEEEoverridecommandlockouts
|
371
|
-
% after \documentclass
|
372
|
-
|
373
|
-
% for over three affiliations, or if they all won't fit within the width
|
374
|
-
% of the page (and note that there is less available width in this regard for
|
375
|
-
% compsoc conferences compared to traditional conferences), use this
|
376
|
-
% alternative format:
|
377
|
-
%
|
378
|
-
%\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1},
|
379
|
-
%Homer Simpson\IEEEauthorrefmark{2},
|
380
|
-
%James Kirk\IEEEauthorrefmark{3},
|
381
|
-
%Montgomery Scott\IEEEauthorrefmark{3} and
|
382
|
-
%Eldon Tyrell\IEEEauthorrefmark{4}}
|
383
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{1}School of Electrical and Computer Engineering\\
|
384
|
-
%Georgia Institute of Technology,
|
385
|
-
%Atlanta, Georgia 30332--0250\\ Email: see http://www.michaelshell.org/contact.html}
|
386
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Century Fox, Springfield, USA\\
|
387
|
-
%Email: homer@thesimpsons.com}
|
388
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Academy, San Francisco, California 96678-2391\\
|
389
|
-
%Telephone: (800) 555--1212, Fax: (888) 555--1212}
|
390
|
-
%\IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc., 123 Replicant Street, Los Angeles, California 90210--4321}}
|
391
|
-
|
392
|
-
|
393
58
|
% use for special paper notices
|
394
59
|
%\IEEEspecialpapernotice{(Invited Paper)}
|
395
60
|
|
61
|
+
% =============================================================================
|
62
|
+
\begin{document}
|
63
|
+
% =============================================================================
|
396
64
|
|
397
65
|
% make the title area
|
398
66
|
\maketitle
|
@@ -406,20 +74,11 @@
|
|
406
74
|
|
407
75
|
\acresetall
|
408
76
|
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
% For peer review papers, you can put extra information on the cover
|
415
|
-
% page as needed:
|
416
|
-
% \ifCLASSOPTIONpeerreview
|
417
|
-
% \begin{center} \bfseries EDICS Category: 3-BBND \end{center}
|
418
|
-
% \fi
|
419
|
-
%
|
420
|
-
% For peerreview papers, this IEEEtran command inserts a page break and
|
421
|
-
% creates the second title. It will be ignored for other modes.
|
422
|
-
\IEEEpeerreviewmaketitle
|
77
|
+
\begin{IEEEkeywords}
|
78
|
+
High Performance Computing, % \and
|
79
|
+
Fault Tolerance, % \and
|
80
|
+
Security
|
81
|
+
\end{IEEEkeywords}
|
423
82
|
|
424
83
|
|
425
84
|
% ===================================
|
@@ -452,44 +111,17 @@
|
|
452
111
|
\label{sec:conclusion}
|
453
112
|
\input{_conclusion}
|
454
113
|
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
% use section* for acknowledgment
|
464
|
-
\ifCLASSOPTIONcompsoc
|
465
|
-
% The Computer Society usually uses the plural form
|
466
|
-
\section*{Acknowledgments}
|
467
|
-
\else
|
468
|
-
% regular IEEE prefers the singular form
|
469
|
-
\section*{Acknowledgment}
|
470
|
-
\fi
|
471
|
-
the experiments presented in this paper were carried out
|
472
|
-
using the HPC facilities of the University of Luxembourg~\cite{VBCG_HPCS14}
|
473
|
-
{\small -- see \url{http://hpc.uni.lu}}.
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
% trigger a \newpage just before the given reference
|
480
|
-
% number - used to balance the columns on the last page
|
481
|
-
% adjust value as needed - may need to be readjusted if
|
482
|
-
% the document is modified later
|
483
|
-
%\IEEEtriggeratref{8}
|
484
|
-
% The "triggered" command can be changed if desired:
|
485
|
-
%\IEEEtriggercmd{\enlargethispage{-5in}}
|
486
|
-
|
487
|
-
% references section
|
114
|
+
~\\
|
115
|
+
{\noindent \textbf{Acknowledgments:}}
|
116
|
+
The experiments presented in this paper were carried out
|
117
|
+
using the HPC facilities of the University of Luxembourg~\cite{VCPKVO_HPCCT22}
|
118
|
+
{\small -- see \url{https://hpc.uni.lu}}.
|
488
119
|
|
489
120
|
\bibliographystyle{IEEEtran}
|
121
|
+
\balance
|
490
122
|
\bibliography{biblio}
|
491
123
|
|
492
|
-
\appendix
|
124
|
+
% \appendix
|
493
125
|
|
494
126
|
% \section{Acronyms used}
|
495
127
|
\input{_acronyms}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
% =============================================================================
|
2
2
|
% File: <%= config[:name] %>.tex --
|
3
3
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
4
|
-
% Time-stamp: <
|
4
|
+
% Time-stamp: <Wed 2022-08-17 10:49 svarrette>
|
5
5
|
%
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %> (Sebastien.Varrette@uni.lu)
|
7
7
|
%
|
8
8
|
% For more information:
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
@@ -12,17 +12,23 @@
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
13
13
|
% =============================================================================
|
14
14
|
% /!\ WARNING: inspired from llncs.dem demonstration file of the LaTeX macro
|
15
|
-
% package from Springer-Verlag for Lecture Notes in Computer Science, version 2.4
|
16
|
-
% for LaTeX2e as of 16. April 2010
|
17
15
|
% See http://www.springer.com/gp/computer-science/lncs/conference-proceedings-guidelines
|
16
|
+
% See also https://latextemplates.github.io/LNCS/
|
18
17
|
|
19
|
-
\documentclass[
|
18
|
+
\documentclass[runningheads]{llncs}
|
20
19
|
%\documentclass[conference,runningheads]{llncs}
|
21
20
|
|
22
21
|
%\newcommand{\blind}[1]{\textit{\textcolor{blue}{[removed for blind review purposes]}}}
|
23
22
|
\newcommand{\blind}[1]{#1}
|
24
23
|
|
25
24
|
\usepackage{_style}
|
25
|
+
\hypersetup{
|
26
|
+
colorlinks=true,
|
27
|
+
citecolor=blue,
|
28
|
+
linkcolor=blue,
|
29
|
+
filecolor=blue,
|
30
|
+
urlcolor=blue,
|
31
|
+
}
|
26
32
|
|
27
33
|
% correct bad hyphenation here
|
28
34
|
\hyphenation{}
|
@@ -36,22 +42,26 @@
|
|
36
42
|
% author names and affiliations
|
37
43
|
\author{\blind{%
|
38
44
|
<%= config[:author] %>$^{\ast}$,
|
39
|
-
|
45
|
+
\orcidID{0000-0001-9011-851X}
|
46
|
+
\and
|
47
|
+
FirstName2 LastName2$^{\ddagger}$
|
48
|
+
\orcidID{XXXX}
|
49
|
+
\and
|
50
|
+
FirstName3 LastName3$^{\dagger}$
|
51
|
+
\orcidID{YYYY}
|
40
52
|
}
|
41
53
|
}
|
42
54
|
\institute{\blind{%
|
43
|
-
\email{Firstname.Lastname@uni.lu}\\
|
44
55
|
$^{\ast}$Computer Science and Communications (CSC) Research Unit\\
|
45
56
|
$^{\dagger}$Interdisciplinary Centre for Security Reliability and Trust\\
|
46
57
|
$^{\ddagger}$Research Unit in Engineering Science\\
|
47
58
|
University of Luxembourg\\
|
48
|
-
|
49
|
-
|
59
|
+
2, avenue de l'Universit\'e, L-4365 Esch-sur-Alzette, Luxembourg\\
|
60
|
+
\email{\{firtname.lastname\}@uni.lu}
|
50
61
|
}
|
51
62
|
}
|
52
|
-
|
53
|
-
|
54
|
-
%\titlerunning{<%= config[:title] %>\ldots}
|
63
|
+
\authorrunning{<%= config[:author] %> et al.}
|
64
|
+
% \titlerunning{<%= config[:title] %>\ldots}
|
55
65
|
% =============================================================================
|
56
66
|
|
57
67
|
\begin{document}
|
@@ -62,6 +72,11 @@
|
|
62
72
|
%_______________
|
63
73
|
\begin{abstract}
|
64
74
|
\input{_abstract}
|
75
|
+
\keywords{%
|
76
|
+
High Performance Computing \and
|
77
|
+
Fault Tolerance \and
|
78
|
+
Security
|
79
|
+
}
|
65
80
|
\end{abstract}
|
66
81
|
|
67
82
|
\acresetall
|
@@ -103,16 +118,13 @@
|
|
103
118
|
\label{sec:conclusion}
|
104
119
|
\input{_conclusion}
|
105
120
|
|
106
|
-
|
107
|
-
|
108
121
|
~\\
|
109
122
|
{\noindent \textbf{Acknowledgments:}}
|
110
|
-
% \\
|
111
123
|
The experiments presented in this paper were carried out
|
112
|
-
using the HPC facilities of the University of Luxembourg~\cite{
|
113
|
-
{\small -- see \url{
|
124
|
+
using the HPC facilities of the University of Luxembourg~\cite{VCPKVO_HPCCT22}
|
125
|
+
{\small -- see \url{https://hpc.uni.lu}}.
|
114
126
|
|
115
|
-
\bibliographystyle{
|
127
|
+
\bibliographystyle{splncs04}
|
116
128
|
% comma separated list of bibtex files, **without** .bib extension
|
117
129
|
\bibliography{biblio}
|
118
130
|
|
@@ -1,9 +1,9 @@
|
|
1
|
+
% Time-stamp: <Thu 2017-08-17 22:22 svarrette>
|
1
2
|
% =============================================================================
|
2
3
|
% File: <%= config[:name] %>.tex --
|
3
4
|
% Author(s): <%= config[:author] %> (<%= config[:mail] %>)
|
4
|
-
% Time-stamp: <Thu 2017-08-17 22:22 svarrette>
|
5
5
|
%
|
6
|
-
% Copyright (c) <%= Time.now.year %> <%= config[:author]
|
6
|
+
% Copyright (c) <%= Time.now.year %> <%= config[:author] %>
|
7
7
|
%
|
8
8
|
% For more information:
|
9
9
|
% - LaTeX: http://www.latex-project.org/
|
@@ -12,7 +12,7 @@
|
|
12
12
|
% http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
|
13
13
|
% =============================================================================
|
14
14
|
|
15
|
-
\documentclass{beamer}
|
15
|
+
\documentclass[aspectratio=169]{beamer}
|
16
16
|
% \documentclass[draft]{beamer}
|
17
17
|
\usepackage{_style}
|
18
18
|
|
@@ -31,6 +31,8 @@
|
|
31
31
|
|
32
32
|
\graphicspath{{images/}} % Add this directory to the searched paths for graphics
|
33
33
|
|
34
|
+
% \usetikzlibrary{arrows,shapes,positioning,shadows,trees,intersections,backgrounds,calc,fit}
|
35
|
+
|
34
36
|
|
35
37
|
%%%%%%%%%% Header %%%%%%%%%%%%
|
36
38
|
\title{<%= config[:title] %>}
|
@@ -39,9 +41,8 @@
|
|
39
41
|
\author[<%= config[:author] %> \& al.]{
|
40
42
|
\underline{<%= config[:author] %>}
|
41
43
|
}
|
42
|
-
\institute[
|
43
|
-
|
44
|
-
University of Luxembourg (\href{http://www.uni.lu}{UL}), Luxembourg
|
44
|
+
\institute[University of Luxembourg]{
|
45
|
+
\myurl{https://hpc.uni.lu}
|
45
46
|
}
|
46
47
|
|
47
48
|
% Mandatory to **declare** a logo to be placed on the bottom right -- normally the
|