falkorlib 0.6.19 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +88 -0
  4. data/.travis.yml +56 -4
  5. data/Gemfile +4 -4
  6. data/Gemfile.lock +55 -27
  7. data/Rakefile +12 -8
  8. data/Vagrantfile +68 -0
  9. data/completion/_falkor +55 -7
  10. data/falkorlib.gemspec +14 -12
  11. data/lib/falkorlib.rb +22 -21
  12. data/lib/falkorlib/bootstrap.rb +5 -1
  13. data/lib/falkorlib/bootstrap/base.rb +385 -693
  14. data/lib/falkorlib/bootstrap/git.rb +137 -0
  15. data/lib/falkorlib/bootstrap/latex.rb +186 -0
  16. data/lib/falkorlib/bootstrap/link.rb +108 -96
  17. data/lib/falkorlib/bootstrap/ruby.rb +102 -0
  18. data/lib/falkorlib/cli.rb +82 -26
  19. data/lib/falkorlib/cli/config.rb +8 -8
  20. data/lib/falkorlib/cli/link.rb +8 -9
  21. data/lib/falkorlib/cli/new.rb +25 -39
  22. data/lib/falkorlib/common.rb +425 -425
  23. data/lib/falkorlib/config.rb +114 -110
  24. data/lib/falkorlib/error.rb +27 -16
  25. data/lib/falkorlib/gem_tasks.rb +12 -11
  26. data/lib/falkorlib/git.rb +3 -4
  27. data/lib/falkorlib/git/base.rb +439 -396
  28. data/lib/falkorlib/git/flow.rb +163 -165
  29. data/lib/falkorlib/git_tasks.rb +31 -31
  30. data/lib/falkorlib/loader.rb +1 -1
  31. data/lib/falkorlib/puppet.rb +3 -5
  32. data/lib/falkorlib/puppet/base.rb +10 -15
  33. data/lib/falkorlib/puppet/modules.rb +367 -365
  34. data/lib/falkorlib/puppet_tasks.rb +11 -8
  35. data/lib/falkorlib/tasks.rb +51 -54
  36. data/lib/falkorlib/tasks/gem.rake +42 -43
  37. data/lib/falkorlib/tasks/gem.rb +12 -11
  38. data/lib/falkorlib/tasks/git.rake +101 -107
  39. data/lib/falkorlib/tasks/git.rb +31 -31
  40. data/lib/falkorlib/tasks/gitflow.rake +131 -141
  41. data/lib/falkorlib/tasks/puppet.rb +11 -8
  42. data/lib/falkorlib/tasks/puppet_modules.rake +143 -154
  43. data/lib/falkorlib/tasks/rspec.rake +94 -59
  44. data/lib/falkorlib/tasks/yard.rake +35 -39
  45. data/lib/falkorlib/version.rb +55 -55
  46. data/lib/falkorlib/versioning.rb +169 -167
  47. data/spec/falkorlib/bootstrap_helpers_spec.rb +106 -56
  48. data/spec/falkorlib/bootstrap_latex_spec.rb +145 -0
  49. data/spec/falkorlib/bootstrap_link_spec.rb +137 -0
  50. data/spec/falkorlib/bootstrap_ruby_spec.rb +118 -0
  51. data/spec/falkorlib/bootstrap_spec.rb +112 -129
  52. data/spec/falkorlib/git_spec.rb +94 -22
  53. data/spec/falkorlib/gitflow_spec.rb +54 -42
  54. data/spec/falkorlib/puppet_modules_spec.rb +35 -26
  55. data/spec/falkorlib/versioning_puppet_module_spec.rb +94 -90
  56. data/spec/falkorlib_spec.rb +5 -0
  57. data/spec/spec_helper.rb +88 -47
  58. data/templates/latex/article-ieee/main.tex.erb +509 -0
  59. data/templates/latex/article/_abstract.tex.erb +19 -0
  60. data/templates/latex/article/_acronyms.tex.erb +116 -0
  61. data/templates/latex/article/_conclusion.tex.erb +25 -0
  62. data/templates/latex/article/_context.tex.erb +17 -0
  63. data/templates/latex/article/_experiments.tex.erb +27 -0
  64. data/templates/latex/article/_implem.tex.erb +17 -0
  65. data/templates/latex/article/_introduction.tex.erb +39 -0
  66. data/templates/latex/article/_related_works.tex.erb +19 -0
  67. data/templates/latex/article/biblio.bib.erb +28 -0
  68. data/templates/latex/article/template.tex.erb +16 -0
  69. data/templates/latex/ieee/IEEEtran.bst +2409 -0
  70. data/templates/latex/ieee/IEEEtran.cls +6347 -0
  71. data/templates/motd/motd.erb +2 -1
  72. metadata +82 -2
@@ -0,0 +1,509 @@
1
+ % =============================================================================
2
+ % File: <%= config[:name] %>.tex --
3
+ % Author(s): <%= config[:author] %> (<%= config[:mail] %>)
4
+ % Time-stamp: <Thu 2016-11-10 00:34 svarrette>
5
+ %
6
+ % Copyright (c) <%= Time.now.year %> <%= config[:author] %><Sebastien.Varrette@uni.lu>
7
+ %
8
+ % For more information:
9
+ % - LaTeX: http://www.latex-project.org/
10
+ % - Beamer: https://bitbucket.org/rivanvx/beamer/
11
+ % - LaTeX symbol list:
12
+ % http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
13
+ % =============================================================================
14
+ % /!\ WARNING: inspired from bare_conf_compsoc.tex
15
+ % 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
+
59
+
60
+ % *** Authors should verify (and, if needed, correct) their LaTeX system ***
61
+ % *** with the testflow diagnostic prior to trusting their LaTeX platform ***
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}
76
+
77
+ \usepackage{_style}
78
+
79
+ % Some very useful LaTeX packages include:
80
+ % (uncomment the ones you want to load)
81
+
82
+
83
+ % *** MISC UTILITY PACKAGES ***
84
+ %
85
+ %\usepackage{ifpdf}
86
+ % Heiko Oberdiek's ifpdf.sty is very useful if you need conditional
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
+
337
+
338
+ % correct bad hyphenation here
339
+ \hyphenation{}
340
+
341
+
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
+ \title{<%= config[:title] %> -- <%= config[:subtitle] %>}
353
+
354
+
355
+ % author names and affiliations
356
+ % use a multiple column layout for up to three different
357
+ % affiliations
358
+ \author{\IEEEauthorblockN{<%= config[:author] %>$^{\ast}$,
359
+ Name2$^{\dagger}$, Name3$^{\ddagger}$ and Pascal Bouvry$^{\ast}$}
360
+ \IEEEauthorblockA{
361
+ $^{\ast}$Computer Science and Communications (CSC) Research Unit\\
362
+ $^{\dagger}$Interdisciplinary Centre for Security Reliability and Trust\\
363
+ $^{\ddagger}$Research Unit in Engineering Science\\
364
+ 2, avenue de l'Universit\'e, L-4365 Esch-sur-Alzette, Luxembourg\\
365
+ \texttt{Firstname.Name@uni.lu}}
366
+ }
367
+
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
+ % use for special paper notices
394
+ %\IEEEspecialpapernotice{(Invited Paper)}
395
+
396
+
397
+ % make the title area
398
+ \maketitle
399
+
400
+ % As a general rule, do not put math, special symbols or citations
401
+ % in the abstract
402
+ %______________________
403
+ \begin{abstract}
404
+ \input{_abstract}
405
+ \end{abstract}
406
+
407
+ \acresetall
408
+
409
+ % no keywords
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
423
+
424
+
425
+ % ===================================
426
+ \section{Introduction}
427
+ \label{sec:introduction}
428
+ \input{_introduction}
429
+
430
+ % ========================================
431
+ \section{Context \& Motivations}
432
+ \label{sec:context}
433
+ \input{_context}
434
+
435
+ % ========================================
436
+ \section{Implementation and Experimental Setup}
437
+ \label{sec:implem}\label{sec:experimental_setup}
438
+ \input{_implem}
439
+
440
+ % ====================================================================
441
+ \section{Validation and Experimental Results}
442
+ \label{sec:experiments}
443
+ \input{_experiments}
444
+
445
+ % ====================================================================
446
+ \section{Related Work}
447
+ \label{sec:related_works}
448
+ \input{_related_works}
449
+
450
+ % ====================================================================
451
+ \section{Conclusion}
452
+ \label{sec:conclusion}
453
+ \input{_conclusion}
454
+
455
+
456
+
457
+
458
+
459
+ % conference papers do not normally have an appendix
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
488
+
489
+ \bibliographystyle{IEEEtran}
490
+ \bibliography{biblio}
491
+
492
+ \appendix
493
+
494
+ % \section{Acronyms used}
495
+ \input{_acronyms}
496
+
497
+ % that's all folks
498
+ \end{document}
499
+
500
+ % ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
501
+ % eof
502
+ %
503
+ % Local Variables:
504
+ % mode: latex
505
+ % mode: flyspell
506
+ % mode: visual-line
507
+ % fill-column: 80
508
+ % TeX-master: "<%= config[:name] %>.tex"
509
+ % End: