-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsettings.inc.php
239 lines (203 loc) · 6.58 KB
/
settings.inc.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
// You can override any defaults by setting values here
$config = array_merge($config, array(
/*
* The style to generate when calling set-style.php. Instead of
* providing it at the command line, you can set it by default here
* and call the script without any argument.
*/
//"style" => "lncs",
/*
* The affiliations. This should be an array of arrays, where
* the first sub-array corresponds to institution 1 in authors.txt,
* the second sub-array corresponds to institution 2, etc. Leave any
* of these fields blank to omit them from the paper.
* Used only in ACM publications; for other styles, the address
* lines in authors.txt are sufficient.
*/
//"author-affiliations" => array(
// array(
// "streetaddress" => "123 Riverside Av.",
// "city" => "Hill Valley",
// "state" => "CA",
// "country" => "USA",
// "postcode" => "91234"
// )
//),
/*
* A short title for the paper, used for running heads. If unspecified,
* the title from authors.txt will be used
*/
//"short-title" => "My Short Title",
/*
* The name (without extension) of the bib file, if not the default
* "paper.bib".
*/
//"bib-name" => "report",
/*
* Whether the paper contains an abstract.
*/
//"abstract" => false,
/*
* If you wish to use a different font size than the default,
* specify it here (in points)
*/
//"point-size" => 12,
/*
* The name of the journal to compile for.
* - In the ACM journal style, you must use a journal name found in
* acmart.cls.
* - In the Elsevier and IEEE transactions journal style, you can use any
* string you like.
* - You can ignore this parameter for all other styles.
*/
"journal-name" => "TISSEC",
/*
* The journal volume. Used only in the ACM and IEEE transactions
* journal style.
*/
//"volume" => 9,
/*
* The journal number. Used only in the ACM and IEEE transactions
* journal style.
*/
//"number" => 4,
/*
* The journal article number. Used only in the ACM journal style
* and IEEE CS magazine style.
*/
//"article-number" => 39,
/*
* The article's publication year (if not the current year).
* Used only in the ACM, IEEE transactions and IEEE CS magazine styles.
*/
//"year" => 1955,
/*
* The article's publication month (if not the current month).
* Used only in the ACM and IEEE transactions/magazine journal style.
*/
//"month" => 3,
/*
* Keywords associated to the article.
* Used only in the ACM journal, IEEE transactions and LIPICS styles.
*/
//"keywords" => "science, magic, art",
/*
* If the paper is published in a conference, the acronym of
* the conference (e.g. "ICFF '16"). Used only in ACM conference
* proceedings.
*/
//"conference" => "OUTATIME '55",
/*
* If the paper is published in a conference, the long name of
* the conference. Used only in LIPICS proceedings.
*/
//"conf-name" => "42nd Conference on Very Important Topics",
/*
* If the paper is published in a conference, the location
* of the conference. Used in ACM conference proceedings
* and LIPICS.
*/
//"conference-loc" => "Hill Valley, CA, USA",
/*
* If the paper is published in a conference, the date
* of the conference. Used in ACM conference proceedings
* and LIPICS.
*/
//"conference-date" => "July 1955",
/*
* Copyright information to be overridden. Used only in ACM conference
* proceedings.
*/
//"copyright" => "0-89791-88-6/97/05",
/*
* The article's DOI
*/
//"doi" => "0000001.0000001",
/*
* The journal's ISSN
*/
//"issn" => "1234-56789",
/*
* The journal's ISBN
*/
//"isbn" => "1234-56789",
/*
* The 2012 ACM classification string; used only in LIPICS
*/
//"acm-class" => "",
/*
* The 2012 ACM classification number; used only in LIPICS
*/
//"acm-number" => "",
/*
* The ACM copyright status. One of none, acmcopyright,
* acmlicensed, rightsretained, usgov, usgovmixed, cagov,
* cagovmixed. Has no effect on other stylesheets.
*/
// "acm-copyright" => "none",
/*
* Whether to use the Computer Modern font or the Times font. This
* only works for Springer LNCS, and is ignored in all other styles.
*/
//"use-times" => true,
/*
* A bibliography style. Use it to override the bib style provided
* by each editor. Leave it to the empty string otherwise.
*/
//"bib-style" => "abbrv",
/*
* The default path for images when using the \includegraphics{}
* command.
*/
//"graphicspath" => array("fig/", "whatever/"),
/*
* Set whether to use the microtype package. No good reason to
* turn it off unless it clashes with some other package.
*/
//"microtype" => false,
/*
* A string for the corresponding address. Used in stvrauth, ignored
* in other styles
*/
//"corr-addr" => "",
/*
* Set whether the paper will be typeset using double spacing.
* Ignored in all styles except stvrauth.
*/
//"doublespace" => true,
/*
* Set whether the hyperref package will be disabled. IEEE requires
* the camera-ready version to have no bookmarks, so in that case set
* this to true.
*/
//"disable-hr" => true,
/*
* Sets the sub-type of the document, for EasyChair proceedings.
* Valid values are EPiC, EPiCempty, debug, verbose, notimes, withtimes,
* a4paper, letterpaper, or the empty string. This setting is ignored in
* every other document class.
*/
//"easychair-type" => "",
/*
* The name of the editor. Used only in IEEE CS magazine style.
*/
"editor-name" => "Stanford S.\\ Strickland",
/*
* The editor e-mail. Used only in IEEE CS magazine style.
*/
"editor-email" => "[email protected]",
/*
* Any other string to be appended to the parameters of the
* \documentclass instruction. You should probably start this string
* with a comma, since it comes after other options.
*/
"otheropts" => "",
/*
* A dummy parameter, just so you don't bother about removing
* the comma from the last uncommented parameter above. Leave this
* uncommented at all times.
*/
"dummy" => "dummy"
));
?>