lncs 0.0.1
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.
- data/.gitignore +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/LICENCE +21 -0
- data/README.md +176 -0
- data/Rakefile +1 -0
- data/bin/lncs +9 -0
- data/lib/lncs/actions.rb +7 -0
- data/lib/lncs/cli.rb +62 -0
- data/lib/lncs/initialiser.rb +22 -0
- data/lib/lncs/paper.rb +166 -0
- data/lib/lncs/proceedings.rb +75 -0
- data/lib/lncs/section.rb +60 -0
- data/lib/lncs/version.rb +3 -0
- data/lib/lncs.rb +6 -0
- data/lncs.gemspec +30 -0
- data/templates/front_matter/organisation.tex +110 -0
- data/templates/front_matter/preface.tex +19 -0
- data/templates/front_matter/sponsors.tex +8 -0
- data/templates/llncs.cls +1206 -0
- data/templates/main.tex +39 -0
- data/templates/manifest.json +36 -0
- data/templates/sprmindx.sty +4 -0
- metadata +167 -0
data/templates/main.tex
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2
|
+
% In order to generate an Author Index do the following:
|
3
|
+
% After TeXing this document start the program MakeIndex by typing
|
4
|
+
% MAKEINDX -S SPRMINDX.STY <filename>
|
5
|
+
% (generates an IND file for the Author Index)
|
6
|
+
% into the DOS command line.
|
7
|
+
% (At other systems you may have to use the command MAKEINDEX.)
|
8
|
+
% Now TeX this file once again, then you will get an Author Index.
|
9
|
+
% TeX this file once more, then the TOC will be complete.
|
10
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
11
|
+
|
12
|
+
\documentclass{llncs}
|
13
|
+
|
14
|
+
\usepackage{makeidx}
|
15
|
+
\makeindex
|
16
|
+
|
17
|
+
\begin{document}
|
18
|
+
|
19
|
+
\frontmatter
|
20
|
+
\setcounter{page}{5}
|
21
|
+
|
22
|
+
|
23
|
+
\pagestyle{headings} % switches on printing of running heads
|
24
|
+
|
25
|
+
\input{front_matter/preface.tex}
|
26
|
+
\input{front_matter/organisation.tex}
|
27
|
+
\input{front_matter/sponsors.tex}
|
28
|
+
|
29
|
+
\tableofcontents
|
30
|
+
|
31
|
+
\mainmatter
|
32
|
+
|
33
|
+
\input{titles/index.tex}
|
34
|
+
|
35
|
+
\addtocmark[2]{Author Index} % additional numbered TOC entry
|
36
|
+
\renewcommand{\indexname}{Author Index}
|
37
|
+
\printindex
|
38
|
+
|
39
|
+
\end{document}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
{
|
2
|
+
// The LNCS volume number obtained from your Springer editor
|
3
|
+
"volume_number": 7949,
|
4
|
+
|
5
|
+
// Path to the folder containing all of the (accepted) papers for this volume
|
6
|
+
"sources": "/Users/louis/Downloads/submissions",
|
7
|
+
|
8
|
+
// Include at least one section
|
9
|
+
"sections": [
|
10
|
+
{
|
11
|
+
// Section titles are used in the table of contents
|
12
|
+
"title": "Foundations",
|
13
|
+
// The identifiers of the papers to appear in this section
|
14
|
+
"papers": [7,11,14,18,20,24,35,46,63]
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"title": "Applications",
|
18
|
+
"papers": [2,6,22,29,58,68]
|
19
|
+
}
|
20
|
+
],
|
21
|
+
|
22
|
+
// Include the papers key to indicate the location of the PDF file for each submission
|
23
|
+
"papers": {
|
24
|
+
"7" : {
|
25
|
+
"pdf": "7/paper7.pdf",
|
26
|
+
// You can optionally override the title and list of authors for any paper too
|
27
|
+
"title": "MOCQL: A Declarative Language for Ad-Hoc Model Querying",
|
28
|
+
// You can use LaTeX in the names of authors (and titles), but be sure to escape
|
29
|
+
// any backslashes (for the JSON parser)
|
30
|
+
"authors": ["Harald St\\\"orrle"]
|
31
|
+
},
|
32
|
+
"24" : {
|
33
|
+
"pdf": "ECMFA2013-cameraready.pdf"
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
metadata
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lncs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Louis M. Rose
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-05-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: json
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.7'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.7'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: thor
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0.18'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0.18'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: zip
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '2.0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: pdf-reader
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.3'
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '1.3'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: bundler
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '1.3'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '1.3'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: rake
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
description: Automates the production of tables of contents and author indexes, and
|
111
|
+
the arrangement of papers for a Springer LNCS volume.
|
112
|
+
email:
|
113
|
+
- louismrose@gmail.com
|
114
|
+
executables:
|
115
|
+
- lncs
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- .gitignore
|
120
|
+
- Gemfile
|
121
|
+
- Gemfile.lock
|
122
|
+
- LICENCE
|
123
|
+
- README.md
|
124
|
+
- Rakefile
|
125
|
+
- bin/lncs
|
126
|
+
- lib/lncs.rb
|
127
|
+
- lib/lncs/actions.rb
|
128
|
+
- lib/lncs/cli.rb
|
129
|
+
- lib/lncs/initialiser.rb
|
130
|
+
- lib/lncs/paper.rb
|
131
|
+
- lib/lncs/proceedings.rb
|
132
|
+
- lib/lncs/section.rb
|
133
|
+
- lib/lncs/version.rb
|
134
|
+
- lncs.gemspec
|
135
|
+
- templates/front_matter/organisation.tex
|
136
|
+
- templates/front_matter/preface.tex
|
137
|
+
- templates/front_matter/sponsors.tex
|
138
|
+
- templates/llncs.cls
|
139
|
+
- templates/main.tex
|
140
|
+
- templates/manifest.json
|
141
|
+
- templates/sprmindx.sty
|
142
|
+
homepage: https://github.com/louismrose/lncs
|
143
|
+
licenses:
|
144
|
+
- MIT
|
145
|
+
post_install_message:
|
146
|
+
rdoc_options: []
|
147
|
+
require_paths:
|
148
|
+
- lib
|
149
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
150
|
+
none: false
|
151
|
+
requirements:
|
152
|
+
- - ! '>='
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: 1.9.3
|
155
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
156
|
+
none: false
|
157
|
+
requirements:
|
158
|
+
- - ! '>='
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: 1.3.6
|
161
|
+
requirements: []
|
162
|
+
rubyforge_project:
|
163
|
+
rubygems_version: 1.8.25
|
164
|
+
signing_key:
|
165
|
+
specification_version: 3
|
166
|
+
summary: A few tools for automating the preparation of a Springer LNCS volume
|
167
|
+
test_files: []
|