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/llncs.cls
ADDED
@@ -0,0 +1,1206 @@
|
|
1
|
+
% LLNCS DOCUMENT CLASS -- version 2.16 (15-Apr-2010)
|
2
|
+
% Springer Verlag LaTeX2e support for Lecture Notes in Computer Science
|
3
|
+
%
|
4
|
+
%%
|
5
|
+
%% \CharacterTable
|
6
|
+
%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
|
7
|
+
%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
|
8
|
+
%% Digits \0\1\2\3\4\5\6\7\8\9
|
9
|
+
%% Exclamation \! Double quote \" Hash (number) \#
|
10
|
+
%% Dollar \$ Percent \% Ampersand \&
|
11
|
+
%% Acute accent \' Left paren \( Right paren \)
|
12
|
+
%% Asterisk \* Plus \+ Comma \,
|
13
|
+
%% Minus \- Point \. Solidus \/
|
14
|
+
%% Colon \: Semicolon \; Less than \<
|
15
|
+
%% Equals \= Greater than \> Question mark \?
|
16
|
+
%% Commercial at \@ Left bracket \[ Backslash \\
|
17
|
+
%% Right bracket \] Circumflex \^ Underscore \_
|
18
|
+
%% Grave accent \` Left brace \{ Vertical bar \|
|
19
|
+
%% Right brace \} Tilde \~}
|
20
|
+
%%
|
21
|
+
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
22
|
+
\ProvidesClass{llncs}[2010/04/15 v2.16
|
23
|
+
^^J LaTeX document class for Lecture Notes in Computer Science]
|
24
|
+
% Options
|
25
|
+
\let\if@envcntreset\iffalse
|
26
|
+
\DeclareOption{envcountreset}{\let\if@envcntreset\iftrue}
|
27
|
+
\DeclareOption{citeauthoryear}{\let\citeauthoryear=Y}
|
28
|
+
\DeclareOption{oribibl}{\let\oribibl=Y}
|
29
|
+
\let\if@custvec\iftrue
|
30
|
+
\DeclareOption{orivec}{\let\if@custvec\iffalse}
|
31
|
+
\let\if@envcntsame\iffalse
|
32
|
+
\DeclareOption{envcountsame}{\let\if@envcntsame\iftrue}
|
33
|
+
\let\if@envcntsect\iffalse
|
34
|
+
\DeclareOption{envcountsect}{\let\if@envcntsect\iftrue}
|
35
|
+
\let\if@runhead\iffalse
|
36
|
+
\DeclareOption{runningheads}{\let\if@runhead\iftrue}
|
37
|
+
|
38
|
+
\let\if@openbib\iffalse
|
39
|
+
\DeclareOption{openbib}{\let\if@openbib\iftrue}
|
40
|
+
|
41
|
+
% languages
|
42
|
+
\let\switcht@@therlang\relax
|
43
|
+
\def\ds@deutsch{\def\switcht@@therlang{\switcht@deutsch}}
|
44
|
+
\def\ds@francais{\def\switcht@@therlang{\switcht@francais}}
|
45
|
+
|
46
|
+
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
|
47
|
+
|
48
|
+
\ProcessOptions
|
49
|
+
|
50
|
+
\LoadClass[twoside]{article}
|
51
|
+
\RequirePackage{multicol} % needed for the list of participants, index
|
52
|
+
\RequirePackage{aliascnt}
|
53
|
+
|
54
|
+
\setlength{\textwidth}{12.2cm}
|
55
|
+
\setlength{\textheight}{19.3cm}
|
56
|
+
\renewcommand\@pnumwidth{2em}
|
57
|
+
\renewcommand\@tocrmarg{3.5em}
|
58
|
+
%
|
59
|
+
\def\@dottedtocline#1#2#3#4#5{%
|
60
|
+
\ifnum #1>\c@tocdepth \else
|
61
|
+
\vskip \z@ \@plus.2\p@
|
62
|
+
{\leftskip #2\relax \rightskip \@tocrmarg \advance\rightskip by 0pt plus 2cm
|
63
|
+
\parfillskip -\rightskip \pretolerance=10000
|
64
|
+
\parindent #2\relax\@afterindenttrue
|
65
|
+
\interlinepenalty\@M
|
66
|
+
\leavevmode
|
67
|
+
\@tempdima #3\relax
|
68
|
+
\advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
|
69
|
+
{#4}\nobreak
|
70
|
+
\leaders\hbox{$\m@th
|
71
|
+
\mkern \@dotsep mu\hbox{.}\mkern \@dotsep
|
72
|
+
mu$}\hfill
|
73
|
+
\nobreak
|
74
|
+
\hb@xt@\@pnumwidth{\hfil\normalfont \normalcolor #5}%
|
75
|
+
\par}%
|
76
|
+
\fi}
|
77
|
+
%
|
78
|
+
\def\switcht@albion{%
|
79
|
+
\def\abstractname{Abstract.}
|
80
|
+
\def\ackname{Acknowledgement.}
|
81
|
+
\def\andname{and}
|
82
|
+
\def\lastandname{\unskip, and}
|
83
|
+
\def\appendixname{Appendix}
|
84
|
+
\def\chaptername{Chapter}
|
85
|
+
\def\claimname{Claim}
|
86
|
+
\def\conjecturename{Conjecture}
|
87
|
+
\def\contentsname{Table of Contents}
|
88
|
+
\def\corollaryname{Corollary}
|
89
|
+
\def\definitionname{Definition}
|
90
|
+
\def\examplename{Example}
|
91
|
+
\def\exercisename{Exercise}
|
92
|
+
\def\figurename{Fig.}
|
93
|
+
\def\keywordname{{\bf Keywords:}}
|
94
|
+
\def\indexname{Index}
|
95
|
+
\def\lemmaname{Lemma}
|
96
|
+
\def\contriblistname{List of Contributors}
|
97
|
+
\def\listfigurename{List of Figures}
|
98
|
+
\def\listtablename{List of Tables}
|
99
|
+
\def\mailname{{\it Correspondence to\/}:}
|
100
|
+
\def\noteaddname{Note added in proof}
|
101
|
+
\def\notename{Note}
|
102
|
+
\def\partname{Part}
|
103
|
+
\def\problemname{Problem}
|
104
|
+
\def\proofname{Proof}
|
105
|
+
\def\propertyname{Property}
|
106
|
+
\def\propositionname{Proposition}
|
107
|
+
\def\questionname{Question}
|
108
|
+
\def\remarkname{Remark}
|
109
|
+
\def\seename{see}
|
110
|
+
\def\solutionname{Solution}
|
111
|
+
\def\subclassname{{\it Subject Classifications\/}:}
|
112
|
+
\def\tablename{Table}
|
113
|
+
\def\theoremname{Theorem}}
|
114
|
+
\switcht@albion
|
115
|
+
% Names of theorem like environments are already defined
|
116
|
+
% but must be translated if another language is chosen
|
117
|
+
%
|
118
|
+
% French section
|
119
|
+
\def\switcht@francais{%\typeout{On parle francais.}%
|
120
|
+
\def\abstractname{R\'esum\'e.}%
|
121
|
+
\def\ackname{Remerciements.}%
|
122
|
+
\def\andname{et}%
|
123
|
+
\def\lastandname{ et}%
|
124
|
+
\def\appendixname{Appendice}
|
125
|
+
\def\chaptername{Chapitre}%
|
126
|
+
\def\claimname{Pr\'etention}%
|
127
|
+
\def\conjecturename{Hypoth\`ese}%
|
128
|
+
\def\contentsname{Table des mati\`eres}%
|
129
|
+
\def\corollaryname{Corollaire}%
|
130
|
+
\def\definitionname{D\'efinition}%
|
131
|
+
\def\examplename{Exemple}%
|
132
|
+
\def\exercisename{Exercice}%
|
133
|
+
\def\figurename{Fig.}%
|
134
|
+
\def\keywordname{{\bf Mots-cl\'e:}}
|
135
|
+
\def\indexname{Index}
|
136
|
+
\def\lemmaname{Lemme}%
|
137
|
+
\def\contriblistname{Liste des contributeurs}
|
138
|
+
\def\listfigurename{Liste des figures}%
|
139
|
+
\def\listtablename{Liste des tables}%
|
140
|
+
\def\mailname{{\it Correspondence to\/}:}
|
141
|
+
\def\noteaddname{Note ajout\'ee \`a l'\'epreuve}%
|
142
|
+
\def\notename{Remarque}%
|
143
|
+
\def\partname{Partie}%
|
144
|
+
\def\problemname{Probl\`eme}%
|
145
|
+
\def\proofname{Preuve}%
|
146
|
+
\def\propertyname{Caract\'eristique}%
|
147
|
+
%\def\propositionname{Proposition}%
|
148
|
+
\def\questionname{Question}%
|
149
|
+
\def\remarkname{Remarque}%
|
150
|
+
\def\seename{voir}
|
151
|
+
\def\solutionname{Solution}%
|
152
|
+
\def\subclassname{{\it Subject Classifications\/}:}
|
153
|
+
\def\tablename{Tableau}%
|
154
|
+
\def\theoremname{Th\'eor\`eme}%
|
155
|
+
}
|
156
|
+
%
|
157
|
+
% German section
|
158
|
+
\def\switcht@deutsch{%\typeout{Man spricht deutsch.}%
|
159
|
+
\def\abstractname{Zusammenfassung.}%
|
160
|
+
\def\ackname{Danksagung.}%
|
161
|
+
\def\andname{und}%
|
162
|
+
\def\lastandname{ und}%
|
163
|
+
\def\appendixname{Anhang}%
|
164
|
+
\def\chaptername{Kapitel}%
|
165
|
+
\def\claimname{Behauptung}%
|
166
|
+
\def\conjecturename{Hypothese}%
|
167
|
+
\def\contentsname{Inhaltsverzeichnis}%
|
168
|
+
\def\corollaryname{Korollar}%
|
169
|
+
%\def\definitionname{Definition}%
|
170
|
+
\def\examplename{Beispiel}%
|
171
|
+
\def\exercisename{\"Ubung}%
|
172
|
+
\def\figurename{Abb.}%
|
173
|
+
\def\keywordname{{\bf Schl\"usselw\"orter:}}
|
174
|
+
\def\indexname{Index}
|
175
|
+
%\def\lemmaname{Lemma}%
|
176
|
+
\def\contriblistname{Mitarbeiter}
|
177
|
+
\def\listfigurename{Abbildungsverzeichnis}%
|
178
|
+
\def\listtablename{Tabellenverzeichnis}%
|
179
|
+
\def\mailname{{\it Correspondence to\/}:}
|
180
|
+
\def\noteaddname{Nachtrag}%
|
181
|
+
\def\notename{Anmerkung}%
|
182
|
+
\def\partname{Teil}%
|
183
|
+
%\def\problemname{Problem}%
|
184
|
+
\def\proofname{Beweis}%
|
185
|
+
\def\propertyname{Eigenschaft}%
|
186
|
+
%\def\propositionname{Proposition}%
|
187
|
+
\def\questionname{Frage}%
|
188
|
+
\def\remarkname{Anmerkung}%
|
189
|
+
\def\seename{siehe}
|
190
|
+
\def\solutionname{L\"osung}%
|
191
|
+
\def\subclassname{{\it Subject Classifications\/}:}
|
192
|
+
\def\tablename{Tabelle}%
|
193
|
+
%\def\theoremname{Theorem}%
|
194
|
+
}
|
195
|
+
|
196
|
+
% Ragged bottom for the actual page
|
197
|
+
\def\thisbottomragged{\def\@textbottom{\vskip\z@ plus.0001fil
|
198
|
+
\global\let\@textbottom\relax}}
|
199
|
+
|
200
|
+
\renewcommand\small{%
|
201
|
+
\@setfontsize\small\@ixpt{11}%
|
202
|
+
\abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@
|
203
|
+
\abovedisplayshortskip \z@ \@plus2\p@
|
204
|
+
\belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@
|
205
|
+
\def\@listi{\leftmargin\leftmargini
|
206
|
+
\parsep 0\p@ \@plus1\p@ \@minus\p@
|
207
|
+
\topsep 8\p@ \@plus2\p@ \@minus4\p@
|
208
|
+
\itemsep0\p@}%
|
209
|
+
\belowdisplayskip \abovedisplayskip
|
210
|
+
}
|
211
|
+
|
212
|
+
\frenchspacing
|
213
|
+
\widowpenalty=10000
|
214
|
+
\clubpenalty=10000
|
215
|
+
|
216
|
+
\setlength\oddsidemargin {63\p@}
|
217
|
+
\setlength\evensidemargin {63\p@}
|
218
|
+
\setlength\marginparwidth {90\p@}
|
219
|
+
|
220
|
+
\setlength\headsep {16\p@}
|
221
|
+
|
222
|
+
\setlength\footnotesep{7.7\p@}
|
223
|
+
\setlength\textfloatsep{8mm\@plus 2\p@ \@minus 4\p@}
|
224
|
+
\setlength\intextsep {8mm\@plus 2\p@ \@minus 2\p@}
|
225
|
+
|
226
|
+
\setcounter{secnumdepth}{2}
|
227
|
+
|
228
|
+
\newcounter {chapter}
|
229
|
+
\renewcommand\thechapter {\@arabic\c@chapter}
|
230
|
+
|
231
|
+
\newif\if@mainmatter \@mainmattertrue
|
232
|
+
\newcommand\frontmatter{\cleardoublepage
|
233
|
+
\@mainmatterfalse\pagenumbering{Roman}}
|
234
|
+
\newcommand\mainmatter{\cleardoublepage
|
235
|
+
\@mainmattertrue\pagenumbering{arabic}}
|
236
|
+
\newcommand\backmatter{\if@openright\cleardoublepage\else\clearpage\fi
|
237
|
+
\@mainmatterfalse}
|
238
|
+
|
239
|
+
\renewcommand\part{\cleardoublepage
|
240
|
+
\thispagestyle{empty}%
|
241
|
+
\if@twocolumn
|
242
|
+
\onecolumn
|
243
|
+
\@tempswatrue
|
244
|
+
\else
|
245
|
+
\@tempswafalse
|
246
|
+
\fi
|
247
|
+
\null\vfil
|
248
|
+
\secdef\@part\@spart}
|
249
|
+
|
250
|
+
\def\@part[#1]#2{%
|
251
|
+
\ifnum \c@secnumdepth >-2\relax
|
252
|
+
\refstepcounter{part}%
|
253
|
+
\addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
|
254
|
+
\else
|
255
|
+
\addcontentsline{toc}{part}{#1}%
|
256
|
+
\fi
|
257
|
+
\markboth{}{}%
|
258
|
+
{\centering
|
259
|
+
\interlinepenalty \@M
|
260
|
+
\normalfont
|
261
|
+
\ifnum \c@secnumdepth >-2\relax
|
262
|
+
\huge\bfseries \partname~\thepart
|
263
|
+
\par
|
264
|
+
\vskip 20\p@
|
265
|
+
\fi
|
266
|
+
\Huge \bfseries #2\par}%
|
267
|
+
\@endpart}
|
268
|
+
\def\@spart#1{%
|
269
|
+
{\centering
|
270
|
+
\interlinepenalty \@M
|
271
|
+
\normalfont
|
272
|
+
\Huge \bfseries #1\par}%
|
273
|
+
\@endpart}
|
274
|
+
\def\@endpart{\vfil\newpage
|
275
|
+
\if@twoside
|
276
|
+
\null
|
277
|
+
\thispagestyle{empty}%
|
278
|
+
\newpage
|
279
|
+
\fi
|
280
|
+
\if@tempswa
|
281
|
+
\twocolumn
|
282
|
+
\fi}
|
283
|
+
|
284
|
+
\newcommand\chapter{\clearpage
|
285
|
+
\thispagestyle{empty}%
|
286
|
+
\global\@topnum\z@
|
287
|
+
\@afterindentfalse
|
288
|
+
\secdef\@chapter\@schapter}
|
289
|
+
\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
|
290
|
+
\if@mainmatter
|
291
|
+
\refstepcounter{chapter}%
|
292
|
+
\typeout{\@chapapp\space\thechapter.}%
|
293
|
+
\addcontentsline{toc}{chapter}%
|
294
|
+
{\protect\numberline{\thechapter}#1}%
|
295
|
+
\else
|
296
|
+
\addcontentsline{toc}{chapter}{#1}%
|
297
|
+
\fi
|
298
|
+
\else
|
299
|
+
\addcontentsline{toc}{chapter}{#1}%
|
300
|
+
\fi
|
301
|
+
\chaptermark{#1}%
|
302
|
+
\addtocontents{lof}{\protect\addvspace{10\p@}}%
|
303
|
+
\addtocontents{lot}{\protect\addvspace{10\p@}}%
|
304
|
+
\if@twocolumn
|
305
|
+
\@topnewpage[\@makechapterhead{#2}]%
|
306
|
+
\else
|
307
|
+
\@makechapterhead{#2}%
|
308
|
+
\@afterheading
|
309
|
+
\fi}
|
310
|
+
\def\@makechapterhead#1{%
|
311
|
+
% \vspace*{50\p@}%
|
312
|
+
{\centering
|
313
|
+
\ifnum \c@secnumdepth >\m@ne
|
314
|
+
\if@mainmatter
|
315
|
+
\large\bfseries \@chapapp{} \thechapter
|
316
|
+
\par\nobreak
|
317
|
+
\vskip 20\p@
|
318
|
+
\fi
|
319
|
+
\fi
|
320
|
+
\interlinepenalty\@M
|
321
|
+
\Large \bfseries #1\par\nobreak
|
322
|
+
\vskip 40\p@
|
323
|
+
}}
|
324
|
+
\def\@schapter#1{\if@twocolumn
|
325
|
+
\@topnewpage[\@makeschapterhead{#1}]%
|
326
|
+
\else
|
327
|
+
\@makeschapterhead{#1}%
|
328
|
+
\@afterheading
|
329
|
+
\fi}
|
330
|
+
\def\@makeschapterhead#1{%
|
331
|
+
% \vspace*{50\p@}%
|
332
|
+
{\centering
|
333
|
+
\normalfont
|
334
|
+
\interlinepenalty\@M
|
335
|
+
\Large \bfseries #1\par\nobreak
|
336
|
+
\vskip 40\p@
|
337
|
+
}}
|
338
|
+
|
339
|
+
\renewcommand\section{\@startsection{section}{1}{\z@}%
|
340
|
+
{-18\p@ \@plus -4\p@ \@minus -4\p@}%
|
341
|
+
{12\p@ \@plus 4\p@ \@minus 4\p@}%
|
342
|
+
{\normalfont\large\bfseries\boldmath
|
343
|
+
\rightskip=\z@ \@plus 8em\pretolerance=10000 }}
|
344
|
+
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
|
345
|
+
{-18\p@ \@plus -4\p@ \@minus -4\p@}%
|
346
|
+
{8\p@ \@plus 4\p@ \@minus 4\p@}%
|
347
|
+
{\normalfont\normalsize\bfseries\boldmath
|
348
|
+
\rightskip=\z@ \@plus 8em\pretolerance=10000 }}
|
349
|
+
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
|
350
|
+
{-18\p@ \@plus -4\p@ \@minus -4\p@}%
|
351
|
+
{-0.5em \@plus -0.22em \@minus -0.1em}%
|
352
|
+
{\normalfont\normalsize\bfseries\boldmath}}
|
353
|
+
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
|
354
|
+
{-12\p@ \@plus -4\p@ \@minus -4\p@}%
|
355
|
+
{-0.5em \@plus -0.22em \@minus -0.1em}%
|
356
|
+
{\normalfont\normalsize\itshape}}
|
357
|
+
\renewcommand\subparagraph[1]{\typeout{LLNCS warning: You should not use
|
358
|
+
\string\subparagraph\space with this class}\vskip0.5cm
|
359
|
+
You should not use \verb|\subparagraph| with this class.\vskip0.5cm}
|
360
|
+
|
361
|
+
\DeclareMathSymbol{\Gamma}{\mathalpha}{letters}{"00}
|
362
|
+
\DeclareMathSymbol{\Delta}{\mathalpha}{letters}{"01}
|
363
|
+
\DeclareMathSymbol{\Theta}{\mathalpha}{letters}{"02}
|
364
|
+
\DeclareMathSymbol{\Lambda}{\mathalpha}{letters}{"03}
|
365
|
+
\DeclareMathSymbol{\Xi}{\mathalpha}{letters}{"04}
|
366
|
+
\DeclareMathSymbol{\Pi}{\mathalpha}{letters}{"05}
|
367
|
+
\DeclareMathSymbol{\Sigma}{\mathalpha}{letters}{"06}
|
368
|
+
\DeclareMathSymbol{\Upsilon}{\mathalpha}{letters}{"07}
|
369
|
+
\DeclareMathSymbol{\Phi}{\mathalpha}{letters}{"08}
|
370
|
+
\DeclareMathSymbol{\Psi}{\mathalpha}{letters}{"09}
|
371
|
+
\DeclareMathSymbol{\Omega}{\mathalpha}{letters}{"0A}
|
372
|
+
|
373
|
+
\let\footnotesize\small
|
374
|
+
|
375
|
+
\if@custvec
|
376
|
+
\def\vec#1{\mathchoice{\mbox{\boldmath$\displaystyle#1$}}
|
377
|
+
{\mbox{\boldmath$\textstyle#1$}}
|
378
|
+
{\mbox{\boldmath$\scriptstyle#1$}}
|
379
|
+
{\mbox{\boldmath$\scriptscriptstyle#1$}}}
|
380
|
+
\fi
|
381
|
+
|
382
|
+
\def\squareforqed{\hbox{\rlap{$\sqcap$}$\sqcup$}}
|
383
|
+
\def\qed{\ifmmode\squareforqed\else{\unskip\nobreak\hfil
|
384
|
+
\penalty50\hskip1em\null\nobreak\hfil\squareforqed
|
385
|
+
\parfillskip=0pt\finalhyphendemerits=0\endgraf}\fi}
|
386
|
+
|
387
|
+
\def\getsto{\mathrel{\mathchoice {\vcenter{\offinterlineskip
|
388
|
+
\halign{\hfil
|
389
|
+
$\displaystyle##$\hfil\cr\gets\cr\to\cr}}}
|
390
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr\gets
|
391
|
+
\cr\to\cr}}}
|
392
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr\gets
|
393
|
+
\cr\to\cr}}}
|
394
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
|
395
|
+
\gets\cr\to\cr}}}}}
|
396
|
+
\def\lid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
|
397
|
+
$\displaystyle##$\hfil\cr<\cr\noalign{\vskip1.2pt}=\cr}}}
|
398
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr<\cr
|
399
|
+
\noalign{\vskip1.2pt}=\cr}}}
|
400
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr<\cr
|
401
|
+
\noalign{\vskip1pt}=\cr}}}
|
402
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
|
403
|
+
<\cr
|
404
|
+
\noalign{\vskip0.9pt}=\cr}}}}}
|
405
|
+
\def\gid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
|
406
|
+
$\displaystyle##$\hfil\cr>\cr\noalign{\vskip1.2pt}=\cr}}}
|
407
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr>\cr
|
408
|
+
\noalign{\vskip1.2pt}=\cr}}}
|
409
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr>\cr
|
410
|
+
\noalign{\vskip1pt}=\cr}}}
|
411
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
|
412
|
+
>\cr
|
413
|
+
\noalign{\vskip0.9pt}=\cr}}}}}
|
414
|
+
\def\grole{\mathrel{\mathchoice {\vcenter{\offinterlineskip
|
415
|
+
\halign{\hfil
|
416
|
+
$\displaystyle##$\hfil\cr>\cr\noalign{\vskip-1pt}<\cr}}}
|
417
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr
|
418
|
+
>\cr\noalign{\vskip-1pt}<\cr}}}
|
419
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr
|
420
|
+
>\cr\noalign{\vskip-0.8pt}<\cr}}}
|
421
|
+
{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
|
422
|
+
>\cr\noalign{\vskip-0.3pt}<\cr}}}}}
|
423
|
+
\def\bbbr{{\rm I\!R}} %reelle Zahlen
|
424
|
+
\def\bbbm{{\rm I\!M}}
|
425
|
+
\def\bbbn{{\rm I\!N}} %natuerliche Zahlen
|
426
|
+
\def\bbbf{{\rm I\!F}}
|
427
|
+
\def\bbbh{{\rm I\!H}}
|
428
|
+
\def\bbbk{{\rm I\!K}}
|
429
|
+
\def\bbbp{{\rm I\!P}}
|
430
|
+
\def\bbbone{{\mathchoice {\rm 1\mskip-4mu l} {\rm 1\mskip-4mu l}
|
431
|
+
{\rm 1\mskip-4.5mu l} {\rm 1\mskip-5mu l}}}
|
432
|
+
\def\bbbc{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm C$}\hbox{\hbox
|
433
|
+
to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
|
434
|
+
{\setbox0=\hbox{$\textstyle\rm C$}\hbox{\hbox
|
435
|
+
to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
|
436
|
+
{\setbox0=\hbox{$\scriptstyle\rm C$}\hbox{\hbox
|
437
|
+
to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
|
438
|
+
{\setbox0=\hbox{$\scriptscriptstyle\rm C$}\hbox{\hbox
|
439
|
+
to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}}}
|
440
|
+
\def\bbbq{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
|
441
|
+
Q$}\hbox{\raise
|
442
|
+
0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
|
443
|
+
{\setbox0=\hbox{$\textstyle\rm Q$}\hbox{\raise
|
444
|
+
0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
|
445
|
+
{\setbox0=\hbox{$\scriptstyle\rm Q$}\hbox{\raise
|
446
|
+
0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}
|
447
|
+
{\setbox0=\hbox{$\scriptscriptstyle\rm Q$}\hbox{\raise
|
448
|
+
0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}}}
|
449
|
+
\def\bbbt{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
|
450
|
+
T$}\hbox{\hbox to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
|
451
|
+
{\setbox0=\hbox{$\textstyle\rm T$}\hbox{\hbox
|
452
|
+
to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
|
453
|
+
{\setbox0=\hbox{$\scriptstyle\rm T$}\hbox{\hbox
|
454
|
+
to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
|
455
|
+
{\setbox0=\hbox{$\scriptscriptstyle\rm T$}\hbox{\hbox
|
456
|
+
to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}}}
|
457
|
+
\def\bbbs{{\mathchoice
|
458
|
+
{\setbox0=\hbox{$\displaystyle \rm S$}\hbox{\raise0.5\ht0\hbox
|
459
|
+
to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
|
460
|
+
to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
|
461
|
+
{\setbox0=\hbox{$\textstyle \rm S$}\hbox{\raise0.5\ht0\hbox
|
462
|
+
to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
|
463
|
+
to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
|
464
|
+
{\setbox0=\hbox{$\scriptstyle \rm S$}\hbox{\raise0.5\ht0\hbox
|
465
|
+
to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
|
466
|
+
to0pt{\kern0.5\wd0\vrule height0.45\ht0\hss}\box0}}
|
467
|
+
{\setbox0=\hbox{$\scriptscriptstyle\rm S$}\hbox{\raise0.5\ht0\hbox
|
468
|
+
to0pt{\kern0.4\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
|
469
|
+
to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
|
470
|
+
\def\bbbz{{\mathchoice {\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
|
471
|
+
{\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
|
472
|
+
{\hbox{$\mathsf\scriptstyle Z\kern-0.3em Z$}}
|
473
|
+
{\hbox{$\mathsf\scriptscriptstyle Z\kern-0.2em Z$}}}}
|
474
|
+
|
475
|
+
\let\ts\,
|
476
|
+
|
477
|
+
\setlength\leftmargini {17\p@}
|
478
|
+
\setlength\leftmargin {\leftmargini}
|
479
|
+
\setlength\leftmarginii {\leftmargini}
|
480
|
+
\setlength\leftmarginiii {\leftmargini}
|
481
|
+
\setlength\leftmarginiv {\leftmargini}
|
482
|
+
\setlength \labelsep {.5em}
|
483
|
+
\setlength \labelwidth{\leftmargini}
|
484
|
+
\addtolength\labelwidth{-\labelsep}
|
485
|
+
|
486
|
+
\def\@listI{\leftmargin\leftmargini
|
487
|
+
\parsep 0\p@ \@plus1\p@ \@minus\p@
|
488
|
+
\topsep 8\p@ \@plus2\p@ \@minus4\p@
|
489
|
+
\itemsep0\p@}
|
490
|
+
\let\@listi\@listI
|
491
|
+
\@listi
|
492
|
+
\def\@listii {\leftmargin\leftmarginii
|
493
|
+
\labelwidth\leftmarginii
|
494
|
+
\advance\labelwidth-\labelsep
|
495
|
+
\topsep 0\p@ \@plus2\p@ \@minus\p@}
|
496
|
+
\def\@listiii{\leftmargin\leftmarginiii
|
497
|
+
\labelwidth\leftmarginiii
|
498
|
+
\advance\labelwidth-\labelsep
|
499
|
+
\topsep 0\p@ \@plus\p@\@minus\p@
|
500
|
+
\parsep \z@
|
501
|
+
\partopsep \p@ \@plus\z@ \@minus\p@}
|
502
|
+
|
503
|
+
\renewcommand\labelitemi{\normalfont\bfseries --}
|
504
|
+
\renewcommand\labelitemii{$\m@th\bullet$}
|
505
|
+
|
506
|
+
\setlength\arraycolsep{1.4\p@}
|
507
|
+
\setlength\tabcolsep{1.4\p@}
|
508
|
+
|
509
|
+
\def\tableofcontents{\chapter*{\contentsname\@mkboth{{\contentsname}}%
|
510
|
+
{{\contentsname}}}
|
511
|
+
\def\authcount##1{\setcounter{auco}{##1}\setcounter{@auth}{1}}
|
512
|
+
\def\lastand{\ifnum\value{auco}=2\relax
|
513
|
+
\unskip{} \andname\
|
514
|
+
\else
|
515
|
+
\unskip \lastandname\
|
516
|
+
\fi}%
|
517
|
+
\def\and{\stepcounter{@auth}\relax
|
518
|
+
\ifnum\value{@auth}=\value{auco}%
|
519
|
+
\lastand
|
520
|
+
\else
|
521
|
+
\unskip,
|
522
|
+
\fi}%
|
523
|
+
\@starttoc{toc}\if@restonecol\twocolumn\fi}
|
524
|
+
|
525
|
+
\def\l@part#1#2{\addpenalty{\@secpenalty}%
|
526
|
+
\addvspace{2em plus\p@}% % space above part line
|
527
|
+
\begingroup
|
528
|
+
\parindent \z@
|
529
|
+
\rightskip \z@ plus 5em
|
530
|
+
\hrule\vskip5pt
|
531
|
+
\large % same size as for a contribution heading
|
532
|
+
\bfseries\boldmath % set line in boldface
|
533
|
+
\leavevmode % TeX command to enter horizontal mode.
|
534
|
+
#1\par
|
535
|
+
\vskip5pt
|
536
|
+
\hrule
|
537
|
+
\vskip1pt
|
538
|
+
\nobreak % Never break after part entry
|
539
|
+
\endgroup}
|
540
|
+
|
541
|
+
\def\@dotsep{2}
|
542
|
+
|
543
|
+
\let\phantomsection=\relax
|
544
|
+
|
545
|
+
\def\hyperhrefextend{\ifx\hyper@anchor\@undefined\else
|
546
|
+
{}\fi}
|
547
|
+
|
548
|
+
\def\addnumcontentsmark#1#2#3{%
|
549
|
+
\addtocontents{#1}{\protect\contentsline{#2}{\protect\numberline
|
550
|
+
{\thechapter}#3}{\thepage}\hyperhrefextend}}%
|
551
|
+
\def\addcontentsmark#1#2#3{%
|
552
|
+
\addtocontents{#1}{\protect\contentsline{#2}{#3}{\thepage}\hyperhrefextend}}%
|
553
|
+
\def\addcontentsmarkwop#1#2#3{%
|
554
|
+
\addtocontents{#1}{\protect\contentsline{#2}{#3}{0}\hyperhrefextend}}%
|
555
|
+
|
556
|
+
\def\@adcmk[#1]{\ifcase #1 \or
|
557
|
+
\def\@gtempa{\addnumcontentsmark}%
|
558
|
+
\or \def\@gtempa{\addcontentsmark}%
|
559
|
+
\or \def\@gtempa{\addcontentsmarkwop}%
|
560
|
+
\fi\@gtempa{toc}{chapter}%
|
561
|
+
}
|
562
|
+
\def\addtocmark{%
|
563
|
+
\phantomsection
|
564
|
+
\@ifnextchar[{\@adcmk}{\@adcmk[3]}%
|
565
|
+
}
|
566
|
+
|
567
|
+
\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
|
568
|
+
\vskip 1.0em plus 1pt \@tempdima 1.5em \begingroup
|
569
|
+
\parindent \z@ \rightskip \@tocrmarg
|
570
|
+
\advance\rightskip by 0pt plus 2cm
|
571
|
+
\parfillskip -\rightskip \pretolerance=10000
|
572
|
+
\leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
|
573
|
+
{\large\bfseries\boldmath#1}\ifx0#2\hfil\null
|
574
|
+
\else
|
575
|
+
\nobreak
|
576
|
+
\leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
|
577
|
+
\@dotsep mu$}\hfill
|
578
|
+
\nobreak\hbox to\@pnumwidth{\hss #2}%
|
579
|
+
\fi\par
|
580
|
+
\penalty\@highpenalty \endgroup}
|
581
|
+
|
582
|
+
\def\l@title#1#2{\addpenalty{-\@highpenalty}
|
583
|
+
\addvspace{8pt plus 1pt}
|
584
|
+
\@tempdima \z@
|
585
|
+
\begingroup
|
586
|
+
\parindent \z@ \rightskip \@tocrmarg
|
587
|
+
\advance\rightskip by 0pt plus 2cm
|
588
|
+
\parfillskip -\rightskip \pretolerance=10000
|
589
|
+
\leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
|
590
|
+
#1\nobreak
|
591
|
+
\leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
|
592
|
+
\@dotsep mu$}\hfill
|
593
|
+
\nobreak\hbox to\@pnumwidth{\hss #2}\par
|
594
|
+
\penalty\@highpenalty \endgroup}
|
595
|
+
|
596
|
+
\def\l@author#1#2{\addpenalty{\@highpenalty}
|
597
|
+
\@tempdima=15\p@ %\z@
|
598
|
+
\begingroup
|
599
|
+
\parindent \z@ \rightskip \@tocrmarg
|
600
|
+
\advance\rightskip by 0pt plus 2cm
|
601
|
+
\pretolerance=10000
|
602
|
+
\leavevmode \advance\leftskip\@tempdima %\hskip -\leftskip
|
603
|
+
\textit{#1}\par
|
604
|
+
\penalty\@highpenalty \endgroup}
|
605
|
+
|
606
|
+
\setcounter{tocdepth}{0}
|
607
|
+
\newdimen\tocchpnum
|
608
|
+
\newdimen\tocsecnum
|
609
|
+
\newdimen\tocsectotal
|
610
|
+
\newdimen\tocsubsecnum
|
611
|
+
\newdimen\tocsubsectotal
|
612
|
+
\newdimen\tocsubsubsecnum
|
613
|
+
\newdimen\tocsubsubsectotal
|
614
|
+
\newdimen\tocparanum
|
615
|
+
\newdimen\tocparatotal
|
616
|
+
\newdimen\tocsubparanum
|
617
|
+
\tocchpnum=\z@ % no chapter numbers
|
618
|
+
\tocsecnum=15\p@ % section 88. plus 2.222pt
|
619
|
+
\tocsubsecnum=23\p@ % subsection 88.8 plus 2.222pt
|
620
|
+
\tocsubsubsecnum=27\p@ % subsubsection 88.8.8 plus 1.444pt
|
621
|
+
\tocparanum=35\p@ % paragraph 88.8.8.8 plus 1.666pt
|
622
|
+
\tocsubparanum=43\p@ % subparagraph 88.8.8.8.8 plus 1.888pt
|
623
|
+
\def\calctocindent{%
|
624
|
+
\tocsectotal=\tocchpnum
|
625
|
+
\advance\tocsectotal by\tocsecnum
|
626
|
+
\tocsubsectotal=\tocsectotal
|
627
|
+
\advance\tocsubsectotal by\tocsubsecnum
|
628
|
+
\tocsubsubsectotal=\tocsubsectotal
|
629
|
+
\advance\tocsubsubsectotal by\tocsubsubsecnum
|
630
|
+
\tocparatotal=\tocsubsubsectotal
|
631
|
+
\advance\tocparatotal by\tocparanum}
|
632
|
+
\calctocindent
|
633
|
+
|
634
|
+
\def\l@section{\@dottedtocline{1}{\tocchpnum}{\tocsecnum}}
|
635
|
+
\def\l@subsection{\@dottedtocline{2}{\tocsectotal}{\tocsubsecnum}}
|
636
|
+
\def\l@subsubsection{\@dottedtocline{3}{\tocsubsectotal}{\tocsubsubsecnum}}
|
637
|
+
\def\l@paragraph{\@dottedtocline{4}{\tocsubsubsectotal}{\tocparanum}}
|
638
|
+
\def\l@subparagraph{\@dottedtocline{5}{\tocparatotal}{\tocsubparanum}}
|
639
|
+
|
640
|
+
\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
|
641
|
+
\fi\section*{\listfigurename\@mkboth{{\listfigurename}}{{\listfigurename}}}
|
642
|
+
\@starttoc{lof}\if@restonecol\twocolumn\fi}
|
643
|
+
\def\l@figure{\@dottedtocline{1}{0em}{1.5em}}
|
644
|
+
|
645
|
+
\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
|
646
|
+
\fi\section*{\listtablename\@mkboth{{\listtablename}}{{\listtablename}}}
|
647
|
+
\@starttoc{lot}\if@restonecol\twocolumn\fi}
|
648
|
+
\let\l@table\l@figure
|
649
|
+
|
650
|
+
\renewcommand\listoffigures{%
|
651
|
+
\section*{\listfigurename
|
652
|
+
\@mkboth{\listfigurename}{\listfigurename}}%
|
653
|
+
\@starttoc{lof}%
|
654
|
+
}
|
655
|
+
|
656
|
+
\renewcommand\listoftables{%
|
657
|
+
\section*{\listtablename
|
658
|
+
\@mkboth{\listtablename}{\listtablename}}%
|
659
|
+
\@starttoc{lot}%
|
660
|
+
}
|
661
|
+
|
662
|
+
\ifx\oribibl\undefined
|
663
|
+
\ifx\citeauthoryear\undefined
|
664
|
+
\renewenvironment{thebibliography}[1]
|
665
|
+
{\section*{\refname}
|
666
|
+
\def\@biblabel##1{##1.}
|
667
|
+
\small
|
668
|
+
\list{\@biblabel{\@arabic\c@enumiv}}%
|
669
|
+
{\settowidth\labelwidth{\@biblabel{#1}}%
|
670
|
+
\leftmargin\labelwidth
|
671
|
+
\advance\leftmargin\labelsep
|
672
|
+
\if@openbib
|
673
|
+
\advance\leftmargin\bibindent
|
674
|
+
\itemindent -\bibindent
|
675
|
+
\listparindent \itemindent
|
676
|
+
\parsep \z@
|
677
|
+
\fi
|
678
|
+
\usecounter{enumiv}%
|
679
|
+
\let\p@enumiv\@empty
|
680
|
+
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
|
681
|
+
\if@openbib
|
682
|
+
\renewcommand\newblock{\par}%
|
683
|
+
\else
|
684
|
+
\renewcommand\newblock{\hskip .11em \@plus.33em \@minus.07em}%
|
685
|
+
\fi
|
686
|
+
\sloppy\clubpenalty4000\widowpenalty4000%
|
687
|
+
\sfcode`\.=\@m}
|
688
|
+
{\def\@noitemerr
|
689
|
+
{\@latex@warning{Empty `thebibliography' environment}}%
|
690
|
+
\endlist}
|
691
|
+
\def\@lbibitem[#1]#2{\item[{[#1]}\hfill]\if@filesw
|
692
|
+
{\let\protect\noexpand\immediate
|
693
|
+
\write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
|
694
|
+
\newcount\@tempcntc
|
695
|
+
\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
|
696
|
+
\@tempcnta\z@\@tempcntb\m@ne\def\@citea{}\@cite{\@for\@citeb:=#2\do
|
697
|
+
{\@ifundefined
|
698
|
+
{b@\@citeb}{\@citeo\@tempcntb\m@ne\@citea\def\@citea{,}{\bfseries
|
699
|
+
?}\@warning
|
700
|
+
{Citation `\@citeb' on page \thepage \space undefined}}%
|
701
|
+
{\setbox\z@\hbox{\global\@tempcntc0\csname b@\@citeb\endcsname\relax}%
|
702
|
+
\ifnum\@tempcntc=\z@ \@citeo\@tempcntb\m@ne
|
703
|
+
\@citea\def\@citea{,}\hbox{\csname b@\@citeb\endcsname}%
|
704
|
+
\else
|
705
|
+
\advance\@tempcntb\@ne
|
706
|
+
\ifnum\@tempcntb=\@tempcntc
|
707
|
+
\else\advance\@tempcntb\m@ne\@citeo
|
708
|
+
\@tempcnta\@tempcntc\@tempcntb\@tempcntc\fi\fi}}\@citeo}{#1}}
|
709
|
+
\def\@citeo{\ifnum\@tempcnta>\@tempcntb\else
|
710
|
+
\@citea\def\@citea{,\,\hskip\z@skip}%
|
711
|
+
\ifnum\@tempcnta=\@tempcntb\the\@tempcnta\else
|
712
|
+
{\advance\@tempcnta\@ne\ifnum\@tempcnta=\@tempcntb \else
|
713
|
+
\def\@citea{--}\fi
|
714
|
+
\advance\@tempcnta\m@ne\the\@tempcnta\@citea\the\@tempcntb}\fi\fi}
|
715
|
+
\else
|
716
|
+
\renewenvironment{thebibliography}[1]
|
717
|
+
{\section*{\refname}
|
718
|
+
\small
|
719
|
+
\list{}%
|
720
|
+
{\settowidth\labelwidth{}%
|
721
|
+
\leftmargin\parindent
|
722
|
+
\itemindent=-\parindent
|
723
|
+
\labelsep=\z@
|
724
|
+
\if@openbib
|
725
|
+
\advance\leftmargin\bibindent
|
726
|
+
\itemindent -\bibindent
|
727
|
+
\listparindent \itemindent
|
728
|
+
\parsep \z@
|
729
|
+
\fi
|
730
|
+
\usecounter{enumiv}%
|
731
|
+
\let\p@enumiv\@empty
|
732
|
+
\renewcommand\theenumiv{}}%
|
733
|
+
\if@openbib
|
734
|
+
\renewcommand\newblock{\par}%
|
735
|
+
\else
|
736
|
+
\renewcommand\newblock{\hskip .11em \@plus.33em \@minus.07em}%
|
737
|
+
\fi
|
738
|
+
\sloppy\clubpenalty4000\widowpenalty4000%
|
739
|
+
\sfcode`\.=\@m}
|
740
|
+
{\def\@noitemerr
|
741
|
+
{\@latex@warning{Empty `thebibliography' environment}}%
|
742
|
+
\endlist}
|
743
|
+
\def\@cite#1{#1}%
|
744
|
+
\def\@lbibitem[#1]#2{\item[]\if@filesw
|
745
|
+
{\def\protect##1{\string ##1\space}\immediate
|
746
|
+
\write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
|
747
|
+
\fi
|
748
|
+
\else
|
749
|
+
\@cons\@openbib@code{\noexpand\small}
|
750
|
+
\fi
|
751
|
+
|
752
|
+
\def\idxquad{\hskip 10\p@}% space that divides entry from number
|
753
|
+
|
754
|
+
\def\@idxitem{\par\hangindent 10\p@}
|
755
|
+
|
756
|
+
\def\subitem{\par\setbox0=\hbox{--\enspace}% second order
|
757
|
+
\noindent\hangindent\wd0\box0}% index entry
|
758
|
+
|
759
|
+
\def\subsubitem{\par\setbox0=\hbox{--\,--\enspace}% third
|
760
|
+
\noindent\hangindent\wd0\box0}% order index entry
|
761
|
+
|
762
|
+
\def\indexspace{\par \vskip 10\p@ plus5\p@ minus3\p@\relax}
|
763
|
+
|
764
|
+
\renewenvironment{theindex}
|
765
|
+
{\@mkboth{\indexname}{\indexname}%
|
766
|
+
\thispagestyle{empty}\parindent\z@
|
767
|
+
\parskip\z@ \@plus .3\p@\relax
|
768
|
+
\let\item\par
|
769
|
+
\def\,{\relax\ifmmode\mskip\thinmuskip
|
770
|
+
\else\hskip0.2em\ignorespaces\fi}%
|
771
|
+
\normalfont\small
|
772
|
+
\begin{multicols}{2}[\@makeschapterhead{\indexname}]%
|
773
|
+
}
|
774
|
+
{\end{multicols}}
|
775
|
+
|
776
|
+
\renewcommand\footnoterule{%
|
777
|
+
\kern-3\p@
|
778
|
+
\hrule\@width 2truecm
|
779
|
+
\kern2.6\p@}
|
780
|
+
\newdimen\fnindent
|
781
|
+
\fnindent1em
|
782
|
+
\long\def\@makefntext#1{%
|
783
|
+
\parindent \fnindent%
|
784
|
+
\leftskip \fnindent%
|
785
|
+
\noindent
|
786
|
+
\llap{\hb@xt@1em{\hss\@makefnmark\ }}\ignorespaces#1}
|
787
|
+
|
788
|
+
\long\def\@makecaption#1#2{%
|
789
|
+
\small
|
790
|
+
\vskip\abovecaptionskip
|
791
|
+
\sbox\@tempboxa{{\bfseries #1.} #2}%
|
792
|
+
\ifdim \wd\@tempboxa >\hsize
|
793
|
+
{\bfseries #1.} #2\par
|
794
|
+
\else
|
795
|
+
\global \@minipagefalse
|
796
|
+
\hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
|
797
|
+
\fi
|
798
|
+
\vskip\belowcaptionskip}
|
799
|
+
|
800
|
+
\def\fps@figure{htbp}
|
801
|
+
\def\fnum@figure{\figurename\thinspace\thefigure}
|
802
|
+
\def \@floatboxreset {%
|
803
|
+
\reset@font
|
804
|
+
\small
|
805
|
+
\@setnobreak
|
806
|
+
\@setminipage
|
807
|
+
}
|
808
|
+
\def\fps@table{htbp}
|
809
|
+
\def\fnum@table{\tablename~\thetable}
|
810
|
+
\renewenvironment{table}
|
811
|
+
{\setlength\abovecaptionskip{0\p@}%
|
812
|
+
\setlength\belowcaptionskip{10\p@}%
|
813
|
+
\@float{table}}
|
814
|
+
{\end@float}
|
815
|
+
\renewenvironment{table*}
|
816
|
+
{\setlength\abovecaptionskip{0\p@}%
|
817
|
+
\setlength\belowcaptionskip{10\p@}%
|
818
|
+
\@dblfloat{table}}
|
819
|
+
{\end@dblfloat}
|
820
|
+
|
821
|
+
\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname
|
822
|
+
ext@#1\endcsname}{#1}{\protect\numberline{\csname
|
823
|
+
the#1\endcsname}{\ignorespaces #2}}\begingroup
|
824
|
+
\@parboxrestore
|
825
|
+
\@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\par
|
826
|
+
\endgroup}
|
827
|
+
|
828
|
+
% LaTeX does not provide a command to enter the authors institute
|
829
|
+
% addresses. The \institute command is defined here.
|
830
|
+
|
831
|
+
\newcounter{@inst}
|
832
|
+
\newcounter{@auth}
|
833
|
+
\newcounter{auco}
|
834
|
+
\newdimen\instindent
|
835
|
+
\newbox\authrun
|
836
|
+
\newtoks\authorrunning
|
837
|
+
\newtoks\tocauthor
|
838
|
+
\newbox\titrun
|
839
|
+
\newtoks\titlerunning
|
840
|
+
\newtoks\toctitle
|
841
|
+
|
842
|
+
\def\clearheadinfo{\gdef\@author{No Author Given}%
|
843
|
+
\gdef\@title{No Title Given}%
|
844
|
+
\gdef\@subtitle{}%
|
845
|
+
\gdef\@institute{No Institute Given}%
|
846
|
+
\gdef\@thanks{}%
|
847
|
+
\global\titlerunning={}\global\authorrunning={}%
|
848
|
+
\global\toctitle={}\global\tocauthor={}}
|
849
|
+
|
850
|
+
\def\institute#1{\gdef\@institute{#1}}
|
851
|
+
|
852
|
+
\def\institutename{\par
|
853
|
+
\begingroup
|
854
|
+
\parskip=\z@
|
855
|
+
\parindent=\z@
|
856
|
+
\setcounter{@inst}{1}%
|
857
|
+
\def\and{\par\stepcounter{@inst}%
|
858
|
+
\noindent$^{\the@inst}$\enspace\ignorespaces}%
|
859
|
+
\setbox0=\vbox{\def\thanks##1{}\@institute}%
|
860
|
+
\ifnum\c@@inst=1\relax
|
861
|
+
\gdef\fnnstart{0}%
|
862
|
+
\else
|
863
|
+
\xdef\fnnstart{\c@@inst}%
|
864
|
+
\setcounter{@inst}{1}%
|
865
|
+
\noindent$^{\the@inst}$\enspace
|
866
|
+
\fi
|
867
|
+
\ignorespaces
|
868
|
+
\@institute\par
|
869
|
+
\endgroup}
|
870
|
+
|
871
|
+
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or\star\or{\star\star}\or
|
872
|
+
{\star\star\star}\or \dagger\or \ddagger\or
|
873
|
+
\mathchar "278\or \mathchar "27B\or \|\or **\or \dagger\dagger
|
874
|
+
\or \ddagger\ddagger \else\@ctrerr\fi}}
|
875
|
+
|
876
|
+
\def\inst#1{\unskip$^{#1}$}
|
877
|
+
\def\fnmsep{\unskip$^,$}
|
878
|
+
\def\email#1{{\tt#1}}
|
879
|
+
\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}%
|
880
|
+
\@ifpackageloaded{babel}{%
|
881
|
+
\@ifundefined{extrasenglish}{}{\addto\extrasenglish{\switcht@albion}}%
|
882
|
+
\@ifundefined{extrasfrenchb}{}{\addto\extrasfrenchb{\switcht@francais}}%
|
883
|
+
\@ifundefined{extrasgerman}{}{\addto\extrasgerman{\switcht@deutsch}}%
|
884
|
+
}{\switcht@@therlang}%
|
885
|
+
\providecommand{\keywords}[1]{\par\addvspace\baselineskip
|
886
|
+
\noindent\keywordname\enspace\ignorespaces#1}%
|
887
|
+
}
|
888
|
+
\def\homedir{\~{ }}
|
889
|
+
|
890
|
+
\def\subtitle#1{\gdef\@subtitle{#1}}
|
891
|
+
\clearheadinfo
|
892
|
+
%
|
893
|
+
%%% to avoid hyperref warnings
|
894
|
+
\providecommand*{\toclevel@author}{999}
|
895
|
+
%%% to make title-entry parent of section-entries
|
896
|
+
\providecommand*{\toclevel@title}{0}
|
897
|
+
%
|
898
|
+
\renewcommand\maketitle{\newpage
|
899
|
+
\phantomsection
|
900
|
+
\refstepcounter{chapter}%
|
901
|
+
\stepcounter{section}%
|
902
|
+
\setcounter{section}{0}%
|
903
|
+
\setcounter{subsection}{0}%
|
904
|
+
\setcounter{figure}{0}
|
905
|
+
\setcounter{table}{0}
|
906
|
+
\setcounter{equation}{0}
|
907
|
+
\setcounter{footnote}{0}%
|
908
|
+
\begingroup
|
909
|
+
\parindent=\z@
|
910
|
+
\renewcommand\thefootnote{\@fnsymbol\c@footnote}%
|
911
|
+
\if@twocolumn
|
912
|
+
\ifnum \col@number=\@ne
|
913
|
+
\@maketitle
|
914
|
+
\else
|
915
|
+
\twocolumn[\@maketitle]%
|
916
|
+
\fi
|
917
|
+
\else
|
918
|
+
\newpage
|
919
|
+
\global\@topnum\z@ % Prevents figures from going at top of page.
|
920
|
+
\@maketitle
|
921
|
+
\fi
|
922
|
+
\thispagestyle{empty}\@thanks
|
923
|
+
%
|
924
|
+
\def\\{\unskip\ \ignorespaces}\def\inst##1{\unskip{}}%
|
925
|
+
\def\thanks##1{\unskip{}}\def\fnmsep{\unskip}%
|
926
|
+
\instindent=\hsize
|
927
|
+
\advance\instindent by-\headlineindent
|
928
|
+
\if!\the\toctitle!\addcontentsline{toc}{title}{\@title}\else
|
929
|
+
\addcontentsline{toc}{title}{\the\toctitle}\fi
|
930
|
+
\if@runhead
|
931
|
+
\if!\the\titlerunning!\else
|
932
|
+
\edef\@title{\the\titlerunning}%
|
933
|
+
\fi
|
934
|
+
\global\setbox\titrun=\hbox{\small\rm\unboldmath\ignorespaces\@title}%
|
935
|
+
\ifdim\wd\titrun>\instindent
|
936
|
+
\typeout{Title too long for running head. Please supply}%
|
937
|
+
\typeout{a shorter form with \string\titlerunning\space prior to
|
938
|
+
\string\maketitle}%
|
939
|
+
\global\setbox\titrun=\hbox{\small\rm
|
940
|
+
Title Suppressed Due to Excessive Length}%
|
941
|
+
\fi
|
942
|
+
\xdef\@title{\copy\titrun}%
|
943
|
+
\fi
|
944
|
+
%
|
945
|
+
\if!\the\tocauthor!\relax
|
946
|
+
{\def\and{\noexpand\protect\noexpand\and}%
|
947
|
+
\protected@xdef\toc@uthor{\@author}}%
|
948
|
+
\else
|
949
|
+
\def\\{\noexpand\protect\noexpand\newline}%
|
950
|
+
\protected@xdef\scratch{\the\tocauthor}%
|
951
|
+
\protected@xdef\toc@uthor{\scratch}%
|
952
|
+
\fi
|
953
|
+
\addtocontents{toc}{\noexpand\protect\noexpand\authcount{\the\c@auco}}%
|
954
|
+
\addcontentsline{toc}{author}{\toc@uthor}%
|
955
|
+
\if@runhead
|
956
|
+
\if!\the\authorrunning!
|
957
|
+
\value{@inst}=\value{@auth}%
|
958
|
+
\setcounter{@auth}{1}%
|
959
|
+
\else
|
960
|
+
\edef\@author{\the\authorrunning}%
|
961
|
+
\fi
|
962
|
+
\global\setbox\authrun=\hbox{\small\unboldmath\@author\unskip}%
|
963
|
+
\ifdim\wd\authrun>\instindent
|
964
|
+
\typeout{Names of authors too long for running head. Please supply}%
|
965
|
+
\typeout{a shorter form with \string\authorrunning\space prior to
|
966
|
+
\string\maketitle}%
|
967
|
+
\global\setbox\authrun=\hbox{\small\rm
|
968
|
+
Authors Suppressed Due to Excessive Length}%
|
969
|
+
\fi
|
970
|
+
\xdef\@author{\copy\authrun}%
|
971
|
+
\markboth{\@author}{\@title}%
|
972
|
+
\fi
|
973
|
+
\endgroup
|
974
|
+
\setcounter{footnote}{\fnnstart}%
|
975
|
+
\clearheadinfo}
|
976
|
+
%
|
977
|
+
\def\@maketitle{\newpage
|
978
|
+
\markboth{}{}%
|
979
|
+
\def\lastand{\ifnum\value{@inst}=2\relax
|
980
|
+
\unskip{} \andname\
|
981
|
+
\else
|
982
|
+
\unskip \lastandname\
|
983
|
+
\fi}%
|
984
|
+
\def\and{\stepcounter{@auth}\relax
|
985
|
+
\ifnum\value{@auth}=\value{@inst}%
|
986
|
+
\lastand
|
987
|
+
\else
|
988
|
+
\unskip,
|
989
|
+
\fi}%
|
990
|
+
\begin{center}%
|
991
|
+
\let\newline\\
|
992
|
+
{\Large \bfseries\boldmath
|
993
|
+
\pretolerance=10000
|
994
|
+
\@title \par}\vskip .8cm
|
995
|
+
\if!\@subtitle!\else {\large \bfseries\boldmath
|
996
|
+
\vskip -.65cm
|
997
|
+
\pretolerance=10000
|
998
|
+
\@subtitle \par}\vskip .8cm\fi
|
999
|
+
\setbox0=\vbox{\setcounter{@auth}{1}\def\and{\stepcounter{@auth}}%
|
1000
|
+
\def\thanks##1{}\@author}%
|
1001
|
+
\global\value{@inst}=\value{@auth}%
|
1002
|
+
\global\value{auco}=\value{@auth}%
|
1003
|
+
\setcounter{@auth}{1}%
|
1004
|
+
{\lineskip .5em
|
1005
|
+
\noindent\ignorespaces
|
1006
|
+
\@author\vskip.35cm}
|
1007
|
+
{\small\institutename}
|
1008
|
+
\end{center}%
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
% definition of the "\spnewtheorem" command.
|
1012
|
+
%
|
1013
|
+
% Usage:
|
1014
|
+
%
|
1015
|
+
% \spnewtheorem{env_nam}{caption}[within]{cap_font}{body_font}
|
1016
|
+
% or \spnewtheorem{env_nam}[numbered_like]{caption}{cap_font}{body_font}
|
1017
|
+
% or \spnewtheorem*{env_nam}{caption}{cap_font}{body_font}
|
1018
|
+
%
|
1019
|
+
% New is "cap_font" and "body_font". It stands for
|
1020
|
+
% fontdefinition of the caption and the text itself.
|
1021
|
+
%
|
1022
|
+
% "\spnewtheorem*" gives a theorem without number.
|
1023
|
+
%
|
1024
|
+
% A defined spnewthoerem environment is used as described
|
1025
|
+
% by Lamport.
|
1026
|
+
%
|
1027
|
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
1028
|
+
|
1029
|
+
\def\@thmcountersep{}
|
1030
|
+
\def\@thmcounterend{.}
|
1031
|
+
|
1032
|
+
\def\spnewtheorem{\@ifstar{\@sthm}{\@Sthm}}
|
1033
|
+
|
1034
|
+
% definition of \spnewtheorem with number
|
1035
|
+
|
1036
|
+
\def\@spnthm#1#2{%
|
1037
|
+
\@ifnextchar[{\@spxnthm{#1}{#2}}{\@spynthm{#1}{#2}}}
|
1038
|
+
\def\@Sthm#1{\@ifnextchar[{\@spothm{#1}}{\@spnthm{#1}}}
|
1039
|
+
|
1040
|
+
\def\@spxnthm#1#2[#3]#4#5{\expandafter\@ifdefinable\csname #1\endcsname
|
1041
|
+
{\@definecounter{#1}\@addtoreset{#1}{#3}%
|
1042
|
+
\expandafter\xdef\csname the#1\endcsname{\expandafter\noexpand
|
1043
|
+
\csname the#3\endcsname \noexpand\@thmcountersep \@thmcounter{#1}}%
|
1044
|
+
\expandafter\xdef\csname #1name\endcsname{#2}%
|
1045
|
+
\global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
|
1046
|
+
\global\@namedef{end#1}{\@endtheorem}}}
|
1047
|
+
|
1048
|
+
\def\@spynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
|
1049
|
+
{\@definecounter{#1}%
|
1050
|
+
\expandafter\xdef\csname the#1\endcsname{\@thmcounter{#1}}%
|
1051
|
+
\expandafter\xdef\csname #1name\endcsname{#2}%
|
1052
|
+
\global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#3}{#4}}%
|
1053
|
+
\global\@namedef{end#1}{\@endtheorem}}}
|
1054
|
+
|
1055
|
+
\def\@spothm#1[#2]#3#4#5{%
|
1056
|
+
\@ifundefined{c@#2}{\@latexerr{No theorem environment `#2' defined}\@eha}%
|
1057
|
+
{\expandafter\@ifdefinable\csname #1\endcsname
|
1058
|
+
{\newaliascnt{#1}{#2}%
|
1059
|
+
\expandafter\xdef\csname #1name\endcsname{#3}%
|
1060
|
+
\global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
|
1061
|
+
\global\@namedef{end#1}{\@endtheorem}}}}
|
1062
|
+
|
1063
|
+
\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
|
1064
|
+
\refstepcounter{#1}%
|
1065
|
+
\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
|
1066
|
+
|
1067
|
+
\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
|
1068
|
+
\ignorespaces}
|
1069
|
+
|
1070
|
+
\def\@spythm#1#2#3#4[#5]{\@spopargbegintheorem{#2}{\csname
|
1071
|
+
the#1\endcsname}{#5}{#3}{#4}\ignorespaces}
|
1072
|
+
|
1073
|
+
\def\@spbegintheorem#1#2#3#4{\trivlist
|
1074
|
+
\item[\hskip\labelsep{#3#1\ #2\@thmcounterend}]#4}
|
1075
|
+
|
1076
|
+
\def\@spopargbegintheorem#1#2#3#4#5{\trivlist
|
1077
|
+
\item[\hskip\labelsep{#4#1\ #2}]{#4(#3)\@thmcounterend\ }#5}
|
1078
|
+
|
1079
|
+
% definition of \spnewtheorem* without number
|
1080
|
+
|
1081
|
+
\def\@sthm#1#2{\@Ynthm{#1}{#2}}
|
1082
|
+
|
1083
|
+
\def\@Ynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
|
1084
|
+
{\global\@namedef{#1}{\@Thm{\csname #1name\endcsname}{#3}{#4}}%
|
1085
|
+
\expandafter\xdef\csname #1name\endcsname{#2}%
|
1086
|
+
\global\@namedef{end#1}{\@endtheorem}}}
|
1087
|
+
|
1088
|
+
\def\@Thm#1#2#3{\topsep 7\p@ \@plus2\p@ \@minus4\p@
|
1089
|
+
\@ifnextchar[{\@Ythm{#1}{#2}{#3}}{\@Xthm{#1}{#2}{#3}}}
|
1090
|
+
|
1091
|
+
\def\@Xthm#1#2#3{\@Begintheorem{#1}{#2}{#3}\ignorespaces}
|
1092
|
+
|
1093
|
+
\def\@Ythm#1#2#3[#4]{\@Opargbegintheorem{#1}
|
1094
|
+
{#4}{#2}{#3}\ignorespaces}
|
1095
|
+
|
1096
|
+
\def\@Begintheorem#1#2#3{#3\trivlist
|
1097
|
+
\item[\hskip\labelsep{#2#1\@thmcounterend}]}
|
1098
|
+
|
1099
|
+
\def\@Opargbegintheorem#1#2#3#4{#4\trivlist
|
1100
|
+
\item[\hskip\labelsep{#3#1}]{#3(#2)\@thmcounterend\ }}
|
1101
|
+
|
1102
|
+
\if@envcntsect
|
1103
|
+
\def\@thmcountersep{.}
|
1104
|
+
\spnewtheorem{theorem}{Theorem}[section]{\bfseries}{\itshape}
|
1105
|
+
\else
|
1106
|
+
\spnewtheorem{theorem}{Theorem}{\bfseries}{\itshape}
|
1107
|
+
\if@envcntreset
|
1108
|
+
\@addtoreset{theorem}{section}
|
1109
|
+
\else
|
1110
|
+
\@addtoreset{theorem}{chapter}
|
1111
|
+
\fi
|
1112
|
+
\fi
|
1113
|
+
|
1114
|
+
%definition of divers theorem environments
|
1115
|
+
\spnewtheorem*{claim}{Claim}{\itshape}{\rmfamily}
|
1116
|
+
\spnewtheorem*{proof}{Proof}{\itshape}{\rmfamily}
|
1117
|
+
\if@envcntsame % alle Umgebungen wie Theorem.
|
1118
|
+
\def\spn@wtheorem#1#2#3#4{\@spothm{#1}[theorem]{#2}{#3}{#4}}
|
1119
|
+
\else % alle Umgebungen mit eigenem Zaehler
|
1120
|
+
\if@envcntsect % mit section numeriert
|
1121
|
+
\def\spn@wtheorem#1#2#3#4{\@spxnthm{#1}{#2}[section]{#3}{#4}}
|
1122
|
+
\else % nicht mit section numeriert
|
1123
|
+
\if@envcntreset
|
1124
|
+
\def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
|
1125
|
+
\@addtoreset{#1}{section}}
|
1126
|
+
\else
|
1127
|
+
\def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
|
1128
|
+
\@addtoreset{#1}{chapter}}%
|
1129
|
+
\fi
|
1130
|
+
\fi
|
1131
|
+
\fi
|
1132
|
+
\spn@wtheorem{case}{Case}{\itshape}{\rmfamily}
|
1133
|
+
\spn@wtheorem{conjecture}{Conjecture}{\itshape}{\rmfamily}
|
1134
|
+
\spn@wtheorem{corollary}{Corollary}{\bfseries}{\itshape}
|
1135
|
+
\spn@wtheorem{definition}{Definition}{\bfseries}{\itshape}
|
1136
|
+
\spn@wtheorem{example}{Example}{\itshape}{\rmfamily}
|
1137
|
+
\spn@wtheorem{exercise}{Exercise}{\itshape}{\rmfamily}
|
1138
|
+
\spn@wtheorem{lemma}{Lemma}{\bfseries}{\itshape}
|
1139
|
+
\spn@wtheorem{note}{Note}{\itshape}{\rmfamily}
|
1140
|
+
\spn@wtheorem{problem}{Problem}{\itshape}{\rmfamily}
|
1141
|
+
\spn@wtheorem{property}{Property}{\itshape}{\rmfamily}
|
1142
|
+
\spn@wtheorem{proposition}{Proposition}{\bfseries}{\itshape}
|
1143
|
+
\spn@wtheorem{question}{Question}{\itshape}{\rmfamily}
|
1144
|
+
\spn@wtheorem{solution}{Solution}{\itshape}{\rmfamily}
|
1145
|
+
\spn@wtheorem{remark}{Remark}{\itshape}{\rmfamily}
|
1146
|
+
|
1147
|
+
\def\@takefromreset#1#2{%
|
1148
|
+
\def\@tempa{#1}%
|
1149
|
+
\let\@tempd\@elt
|
1150
|
+
\def\@elt##1{%
|
1151
|
+
\def\@tempb{##1}%
|
1152
|
+
\ifx\@tempa\@tempb\else
|
1153
|
+
\@addtoreset{##1}{#2}%
|
1154
|
+
\fi}%
|
1155
|
+
\expandafter\expandafter\let\expandafter\@tempc\csname cl@#2\endcsname
|
1156
|
+
\expandafter\def\csname cl@#2\endcsname{}%
|
1157
|
+
\@tempc
|
1158
|
+
\let\@elt\@tempd}
|
1159
|
+
|
1160
|
+
\def\theopargself{\def\@spopargbegintheorem##1##2##3##4##5{\trivlist
|
1161
|
+
\item[\hskip\labelsep{##4##1\ ##2}]{##4##3\@thmcounterend\ }##5}
|
1162
|
+
\def\@Opargbegintheorem##1##2##3##4{##4\trivlist
|
1163
|
+
\item[\hskip\labelsep{##3##1}]{##3##2\@thmcounterend\ }}
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
\renewenvironment{abstract}{%
|
1167
|
+
\list{}{\advance\topsep by0.35cm\relax\small
|
1168
|
+
\leftmargin=1cm
|
1169
|
+
\labelwidth=\z@
|
1170
|
+
\listparindent=\z@
|
1171
|
+
\itemindent\listparindent
|
1172
|
+
\rightmargin\leftmargin}\item[\hskip\labelsep
|
1173
|
+
\bfseries\abstractname]}
|
1174
|
+
{\endlist}
|
1175
|
+
|
1176
|
+
\newdimen\headlineindent % dimension for space between
|
1177
|
+
\headlineindent=1.166cm % number and text of headings.
|
1178
|
+
|
1179
|
+
\def\ps@headings{\let\@mkboth\@gobbletwo
|
1180
|
+
\let\@oddfoot\@empty\let\@evenfoot\@empty
|
1181
|
+
\def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
|
1182
|
+
\leftmark\hfil}
|
1183
|
+
\def\@oddhead{\normalfont\small\hfil\rightmark\hspace{\headlineindent}%
|
1184
|
+
\llap{\thepage}}
|
1185
|
+
\def\chaptermark##1{}%
|
1186
|
+
\def\sectionmark##1{}%
|
1187
|
+
\def\subsectionmark##1{}}
|
1188
|
+
|
1189
|
+
\def\ps@titlepage{\let\@mkboth\@gobbletwo
|
1190
|
+
\let\@oddfoot\@empty\let\@evenfoot\@empty
|
1191
|
+
\def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
|
1192
|
+
\hfil}
|
1193
|
+
\def\@oddhead{\normalfont\small\hfil\hspace{\headlineindent}%
|
1194
|
+
\llap{\thepage}}
|
1195
|
+
\def\chaptermark##1{}%
|
1196
|
+
\def\sectionmark##1{}%
|
1197
|
+
\def\subsectionmark##1{}}
|
1198
|
+
|
1199
|
+
\if@runhead\ps@headings\else
|
1200
|
+
\ps@empty\fi
|
1201
|
+
|
1202
|
+
\setlength\arraycolsep{1.4\p@}
|
1203
|
+
\setlength\tabcolsep{1.4\p@}
|
1204
|
+
|
1205
|
+
\endinput
|
1206
|
+
%end of file llncs.cls
|