-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegpubl.cls
2191 lines (2083 loc) · 73.5 KB
/
egpubl.cls
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%%%%%%%%%%%%%%%%%%%%%% start of egpubl.cls %%%%%%%%%%%%%%%%%%%%%%
\def\fileversion{3.74}
\def\filedate{2018/12/14}
\def\docdate {2018/12/14}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{egpubl}[\filedate \space
Document Style for EG Publications v\fileversion ]
%
% EG Publications document style
% (based on EG Annual Event document style, which in turn was based on CFG Journal)
% Copyright (c) 1997-2019 D.Fellner
%
% based on the original LaTeX ARTICLE DOCUMENT STYLE
% for LaTeX version 2.09 by Leslie Lamport
% ...modifications by Sue Brooks, BUSS Ltd
% ... and Graham White 8.ix.92
% ...redesign for LaTeX2e and adaption to Conf. Proc. by D.Fellner
% 14-12-18 SB 3.74 small modifications for using biblatex with backend=biber
% 05-04-18 SB 3.73 added \orcid
% 17-03-18 SB 3.72 new copyright line for CGF open access papers
% 10-02-18 SB 3.71 fixed font size issue if more than two affiliations (hint of Sadlo, Heidelberg)
% 29-11-17 SB 3.70 introduce support for EuroVis Poster, Short Papers
% 26-01-17 SB 3.64 include ACM CCS 2012 support;
% 03-12-15 SB 3.63 Introduced \STAREurovis
% 17-11-15 SB 3.62 introduced \DC
% 02-09-15 SB 3.61 add Wiley copyright to STARs
% 06-07-15 SB 3.60 new format
% 20-04-15 SB 3.59 introduced \Expressive
% 20-04-15 SB 3.58 introduced \WsSubmissionJoint and \WsPaperJoint showing both
% names of 2 joined events
% 28-11-13 SB 3.57 fix problem with package tabularx
% 17-07-13 SB 3.56 new copyright line for CGF papers
% 14-06-13 SB 3.55 introduced \PaperL2P for events EG only asks for License to Publish
% 15-04-13 SB 3.54 introduced \DigitalHeritagePaper
% 04-05-11 SB 3.53 changing of copyright line on the behalf of Wiley
% 29-09-10 SB 3.52 introduced \Poster
% 23-09-10 SB 3.51 add possibility to include a teaser image into the first page
% 27-11-08 SB 3.50 using smaller fontsize for bibliography
% 27-10-08 SB 3.47 Adapting of "\CCScat" according to http://www.acm.org/about/class/how-to-use,
% item #8 (Suggestion of Breinbauer, Vienna)
% 31-07-08 SB 3.46 introduced \Areas, \MedicalPrize, \Education
% 20-11-07 SB 3.45 add string "Computer Graphics Forum" to first page of journal
% paper
% 13-11-07 SB 3.44 \SpecialIssueSubmission and \SpecialIssuePaper;
% changed copyright text due to the Exclusive Licence Policy
% 17-04-06 SB 3.43 replace 'Short Presentations' by 'Short Papers'
% 24-04-05 DF 3.42 adapt \tabular to current article style
% 24-03-05 SB 3.41 define \printed@Version in context of package hyperref
% 24-02-05 DF 3.40 a more compact layout for the bibliography;
% added \shortcite
% 30-01-04 DF 3.30 support both latex and pdflatex
% 11-08-03 DF 3.20 adapt to new citation style (via eg-alpha.bst)
% and fix refs to Blackwell (address, name)
% 30-04-03 DF 3.15 replace use of \tt by \ttfamily
% 17-03-03 DF 3.14 add string constants to describe function of editor ...
% 09-02-03 DF 3.13 fix shape of page numbers in running heads (upshape)
% 22-04-02 DF 3.12 cleanup of some redundant structures;
% commented-out sections deleted
% 22-02-02 DF 3.11 delete page range information on top line of first page;
% 22-11-01 DF 3.10 include keyword-support;
% increase area top-left at first page
% 23-06-01 DF 3.00 integrate support for EG WS Proc
% \WsSubmission, \WsPaper
% 15-06-01 DF 2.90 activate computation of page range through an
% .lbl file holding a \pEndPage command
% 07-06-01 DF 2.80 fix problem with empty last page
% 27-03-00 DF 2.71 replace 'Short Paper' by 'Short Presentation'
% 23-03-00 DF 2.70 inlude support for ShortPaper
% 25-02-00 DF 2.60 use \volume to determine year on first page
% for all types of publications (not submissions);
% use \pStartPage to initialize page counter and pagerange;
% 25-02-00 DF 2.50 final polishing of (c) lines;
% introduce \issue, \pStartPage, \pEndPage to
% replace \pnumber and \pagerange;
% selection between printed and electronic version
% 10-10-99 DF 2.40 implement commands \JournalSubmission, \JournalPaper;
% define p@volume and compute as function of year;
% parametrize copyright text (to cater for different
% def's of year);
% replaced \editors by \ConfEditors;
% customize for EG 00
% 20-11-98 DF 2.20 customize for EG 99 and introduce \ConfYear
% 26-02-98 DF 2.10 enhance level of customization
% \editors, \EGyear,
% 11-04-97 DF 2.00 port to LaTeX 2e and customization for EG'97
% Introduced \STAR, \TUTORIAL
% 06-01-94 AJW 1.10 NFSS compatible
% 15-03-93 MR 1.00 Added check for \CUP@mtlplain@loaded and
% \CUP@cmtt@loaded flags for use at CUP.
% This allows the style file to check for the use
% of `mtclplain' instead of `mtlplain'. `mtclplain'
% has all it's mttt fonts changed to cmtt.
% 10-03-93 RM \pnumber, \looseness in catchline address,
% spaces in running head text.
% 25-02-93 SFB 0.01.01 keywords,
% 0.01.02 catchline default
% 0.01.03 copyright in running foot
% 0.01.04 onecolumn style option
% 0.01.05 appendix titles...
% 0.01.06 section headings -- bold and italic
%
\newif\ifoldfss
\newif\ifnfssone
\newif\ifnfsstwo
\def\f@s@s{}%
%
\@ifundefined{DeclareFontShape}%
{%
\@ifundefined{selectfont}%
{\global\oldfsstrue\let\reset@font=\relax}% old font selection scheme
{\global\nfssonetrue\def\f@s@s{with NFSS release 1,\space}}%
}%
{\global\nfsstwotrue\def\f@s@s{with NFSS release 2,\space}}%
%
% \typeout{Document Style `CGF' \f@s@s v1.10 released 6th January 1994}
%
% Journals use two-sided printing.
%
\@twosidetrue
\@twocolumntrue
\@mparswitchtrue
\def\ds@draft{\overfullrule 5pt}
\def\ds@twocolumn{\@twocolumntrue}
\def\ds@onecolumn{\@twocolumnfalse}
\newif\ifSFB@galley
\def\ds@galley{\SFB@galleytrue\@twosidefalse\@mparswitchfalse}
\@options
%
% ****************************************
% * FONTS *
% ****************************************
%
\lineskip 1pt
\normallineskip 1pt
\def\baselinestretch{1}
\def\@normalsize{\@setsize\normalsize{11pt}\ixpt\@ixpt
\abovedisplayskip 5.5pt plus 2pt minus .5pt
\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip 5.5pt plus 2pt
\belowdisplayshortskip \abovedisplayshortskip
\let\@listi\@listI}
%% DF
\let\normalsize=\@normalsize
%%
\def\small{\@setsize\small{10pt}\viiipt\@viiipt
\abovedisplayskip 5pt plus 1pt minus .5pt
\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip 5pt plus 1pt
\belowdisplayshortskip \abovedisplayshortskip
\def\@listi{\leftmargin\leftmargini
\topsep \z@ plus 1pt minus .5pt
\parsep \z@
\itemsep \z@}}
\def\footnotesize{\@setsize\footnotesize{10pt}\viiipt\@viiipt
\abovedisplayskip 5pt plus 1pt minus .5pt
\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip 5pt plus 1pt
\belowdisplayshortskip \abovedisplayshortskip
\def\@listi{\leftmargin\leftmargini
\topsep \z@ plus 1pt minus .5pt
\parsep \z@
\itemsep \z@}}
\def\scriptsize{\@setsize\scriptsize{7pt}\vipt\@vipt} % ajw: was 7/8
\def\tiny{\@setsize\tiny{8pt}\vipt\@vipt}
\def\large{\@setsize\large{11pt}\xpt\@xpt}
\def\Large{\@setsize\Large{14pt}\xiipt\@xiipt}
\def\LARGE{\@setsize\LARGE{17pt}\xivpt\@xivpt}
\def\huge{\@setsize\huge{20pt}\xviipt\@xviipt}
\def\Huge{\@setsize\Huge{25pt}\xxpt\@xxpt}
\normalsize
% ****************************************
% * PAGE LAYOUT *
% ****************************************
%
% SIDE MARGINS:
%\oddsidemargin \z@ \evensidemargin \z@
\oddsidemargin = -23pt
\evensidemargin= -23pt
\marginparwidth 4pc
\marginparsep 0.5pc
% VERTICAL SPACING:
% \topmargin -3pc
\topmargin -1pc
\headheight 11pt
\headsep 11pt
\topskip 9pt
%% DF
%\footheight 11pt
%%
\footskip 22pt
% DIMENSION OF TEXT:
% \textwidth 38pc
% \textheight = 55\baselineskip \advance\textheight by \topskip
\textwidth 42pc
\textheight = 57\baselineskip \advance\textheight by \topskip
\columnsep 2pc
\columnseprule 0pt
% FOOTNOTES:
\footnotesep 6pt
\skip\footins 19.5pt plus 12pt minus 1pt
% FLOATS:
% for floats on a text page:
% one-column mode or single-column floats in two-column mode:
\floatsep 11pt plus 5.5pt minus 2.25pt
\textfloatsep 22pt plus 11pt minus 5.5pt
\intextsep 11pt plus 5.5pt minus 2.25pt
%% DF
% \@maxsep 22pt
%%
% two-column floats in two-column mode:
\dblfloatsep 11pt plus 5.5pt minus 2.25pt
\dbltextfloatsep 22pt plus 11pt minus 5.5pt
%% DF
% \@dblmaxsep 22pt
%%
% for floats on a separate float page or column:
% one-column mode or single-column floats in two-column mode:
\@fptop 0pt plus 0fil
\@fpsep 11pt plus 0.5fil
\@fpbot 0pt plus 3fil
% double-column floats in two-column mode.
\@dblfptop 0pt plus 0fil
\@dblfpsep 11pt plus 0.5fil
\@dblfpbot 0pt plus 3fil
\marginparpush 5.5pt
% ****************************************
% * PARAGRAPHING *
% ****************************************
%
\parskip 5.5pt plus 1pt minus 1.5pt
\parindent 1em
\partopsep 0pt plus 1pt
\@lowpenalty 51
\@medpenalty 151
\@highpenalty 301
\@beginparpenalty -\@lowpenalty
\@endparpenalty -\@lowpenalty
\@itempenalty -\@lowpenalty
\clubpenalty=0
\widowpenalty=10000
% ****************************************
% * FIGURES AND TABLES *
% ****************************************
%
\setcounter{topnumber}{2}
\def\topfraction{.9}
\setcounter{bottomnumber}{1}
\def\bottomfraction{.9}
\setcounter{totalnumber}{3}
\def\textfraction{.1}
\def\floatpagefraction{.75}
\setcounter{dbltopnumber}{2}
\def\dbltopfraction{.9}
\def\dblfloatpagefraction{.75}
\newcounter{table}
\def\thetable{\@arabic\c@table}
\ifSFB@galley \def\fps@table{p}
\else \def\fps@table{tbp}
\fi
\def\ftype@table{1}
\def\ext@table{lot}
\def\fnum@table{Table \thetable}
\def\table{\@float{table}}
\let\endtable\end@float
\@namedef{table*}{\@dblfloat{table}}
\@namedef{endtable*}{\end@dblfloat}
\newcounter{figure}
\def\thefigure{\@arabic\c@figure}
\ifSFB@galley \def\fps@figure{p}
\else \def\fps@figure{tbp}
\fi
\def\ftype@figure{2}
\def\ext@figure{lof}
\def\fnum@figure{Figure \thefigure}
\def\figure{\@float{figure}}
\let\endfigure\end@float
\@namedef{figure*}{\@dblfloat{figure}}
\@namedef{endfigure*}{\end@dblfloat}
\long\def\@makecaption#1#2{\vskip 6pt
\setbox\@tempboxa\hbox{\textbf{#1:} \reset@font\textit{#2}}
\ifdim \wd\@tempboxa >\hsize
\textbf{#1:} \reset@font\itshape #2\par
\else
\hbox to\hsize{\hfil\box\@tempboxa\hfil}
\fi
\vskip 6pt
}
% ****************************************
% * PARTS *
% ****************************************
%
\def\part{\par \addvspace{4ex}\@afterindentfalse
\secdef\@part\@spart}
\def\@part[#1]#2{\ifnum \c@secnumdepth >\m@ne
\refstepcounter{part}
\addcontentsline{toc}{part}{Part \thepart: #1}
\else \addcontentsline{toc}{part}{#1}
\fi
{\parindent 0pt \raggedright
\ifnum \c@secnumdepth >\m@ne
\reset@font\large\rmfamily PART
\ifcase\thepart \or ONE \or TWO \or THREE \or FOUR \or FIVE
\or SIX \or SEVEN \or EIGHT \or NINE \or TEN \else \fi
\par \nobreak
\fi
\reset@font\LARGE \rmfamily #2 \markboth{}{}\par }
\nobreak \vskip 3ex \@afterheading}
\def\@spart#1{{\parindent 0pt \raggedright
\reset@font\LARGE \rmfamily #1\par}
\nobreak \vskip 3ex \@afterheading}
% ****************************************
% * SECTIONS *
% ****************************************
%
\def\section{\@startsection {section}{1}{\z@}
{-11pt plus -5.5pt minus -1pt}
{0.001pt}
{\raggedright\reset@font\normalsize\bfseries}}
\def\subsection{\@startsection{subsection}{2}{\z@}
{-11pt plus -5.5pt minus -1pt}
{0.001pt}
{\raggedright\reset@font\normalsize\bfseries}}
\def\subsubsection{\@startsection{subsubsection}{3}{\z@}
{-5.5pt plus -5.5pt minus -1pt}
{0.001pt}
{\raggedright\reset@font\normalsize\bfseries}}
\def\paragraph{\@startsection{paragraph}{4}{\z@}
{5.5pt plus 2.25pt minus 1pt}
{-0.5em}
{\reset@font\normalsize\bfseries}}
\def\subparagraph{\@startsection{subparagraph}{4}{1em}
{5.5pt plus 2.25pt minus 1pt}
{-0.5em}
{\reset@font\normalsize\bfseries}}
\setcounter{secnumdepth}{5}
\def\@startsection#1#2#3#4#5#6{\if@noskipsec \leavevmode \fi
\par \@tempskipa #4\relax
\@afterindenttrue
\ifdim \@tempskipa <\z@ \@tempskipa -\@tempskipa \@afterindentfalse\fi
\if@nobreak \everypar{}\else
\addpenalty{\@secpenalty}\addvspace{\@tempskipa}\fi
\@ifstar{\SFB@ssect{#2}{#3}{#4}{#5}{#6}}%
{\@dblarg{\@sect{#1}{#2}{#3}{#4}{#5}{#6}}}}
%
% \@sect{NAME}{LEVEL}{INDENT}{BEFORESKIP}{AFTERSKIP}{STYLE}[ARG1]{ARG2}
%
\def\@sect#1#2#3#4#5#6[#7]#8{%
\ifnum #2>\c@secnumdepth
\def\@svsec{}%
\else
\refstepcounter{#1}
\edef\@svsec{\csname the#1\endcsname.\hskip 0.5em}%
\fi
\@tempskipa #5\relax
\ifdim \@tempskipa>\z@
\begingroup #6\relax
\ifnum #2=\@ne
\ifSFB@appendix
\ifSFB@appendixstar
\@hangfrom{\hskip #3\relax}{\interlinepenalty \@M
Appendix \csname the#1\endcsname\par}%
\else
\@hangfrom{\hskip #3\relax}{\interlinepenalty \@M
Appendix \csname the#1\endcsname:\hskip 0.5em\reset@font\rmfamily #8\par}%
\fi
\else
\@hangfrom{\hskip #3\relax\@svsec}{\interlinepenalty \@M #8\par}%
\fi
\else
\@hangfrom{\hskip #3\relax\@svsec}{\interlinepenalty \@M #8\par}%
\fi
\endgroup
\csname #1mark\endcsname{#7}%
\addcontentsline{toc}{#1}{\ifnum #2>\c@secnumdepth \else
\protect\numberline{\csname the#1\endcsname}\fi #7}%
\else
\def\@svsechd{#6\hskip #3\@svsec #8%\par
\csname #1mark\endcsname{#7}
\addcontentsline{toc}{#1}{\ifnum #2>\c@secnumdepth \else
\protect\numberline{\csname the#1\endcsname}\fi#7}}%
\fi
\@xsect{#5}}
%
% \SFB@ssect{LEVEL}{INDENT}{BEFORESKIP}{AFTERSKIP}{STYLE}{ARG} ==
%
\def\SFB@ssect#1#2#3#4#5#6{\@tempskipa #4\relax
\ifSFB@appendix
\ifnum #1>\@ne \edef\@svsec{#6}%
\else \ifSFB@appendixstar \edef\@svsec{Appendix}%
\else \edef\@svsec{Appendix:\hskip 0.5em\reset@font\rmfamily #6}%
\fi
\fi
\else
\ifnum #1>\@ne \edef\@svsec{#6}%
\else \edef\@svsec{#6}%
\fi
\fi
\ifdim \@tempskipa>\z@
\begingroup #5\relax
\@hangfrom{\hskip #2\relax}{\interlinepenalty \@M \@svsec \par}%
\endgroup
\else
\def\@svsechd{#5\hskip #2\relax \@svsec}%
\fi
\@xsect{#4}}
\newif\ifSFB@appendix
\newif\ifSFB@appendixstar
\def\APPENDIX{\appendix\SFB@appendixstartrue}
\def\appendix{\SFB@appendixstarfalse\par
\SFB@appendixtrue
\setcounter{secnumdepth}{1}
\setcounter{section}{0}
\setcounter{subsection}{0}
\def\thesection{\Alph{section}}}
% ****************************************
% * PARTS & SECTIONS NUMBERS *
% ****************************************
%
\newcounter{part}
\newcounter {section}
\newcounter {subsection}[section]
\newcounter {subsubsection}[subsection]
\newcounter {paragraph}[subsubsection]
\newcounter {subparagraph}[paragraph]
\def\thepart {\arabic{part}}
\def\thesection {\arabic{section}}
\def\thesubsection {\thesection.\arabic{subsection}}
\def\thesubsubsection {\thesubsection .\arabic{subsubsection}}
\def\theparagraph {\thesubsubsection.\arabic{paragraph}}
\def\thesubparagraph {\theparagraph.\arabic{subparagraph}}
% ****************************************
% * LISTS *
% ****************************************
%
\leftmargini 1em
\leftmarginii 1pc
\leftmarginiii 1pc
\leftmarginiv 1pc
\leftmarginv 1pc
\leftmarginvi 1pc
\leftmargin\leftmargini
\labelsep 0.5em
\labelwidth\leftmargini\advance\labelwidth-\labelsep
%
% label macros for Range-Left and Range-Right labels
\def\makeRLlabel#1{\rlap{#1}\hss}
\def\makeRRlabel#1{\hss\llap{#1}}
%
\def\@listI{\leftmargin\leftmargini
\parsep \z@
\partopsep \z@
\topsep \z@ plus 1pt minus .5pt
\itemsep \z@ plus .1pt
}
\let\@listi\@listI
\@listi
\def\@listii{\leftmargin\leftmarginii
\labelwidth\leftmarginii\advance\labelwidth-\labelsep
\topsep 5.5pt plus 1pt minus 1pt
\parsep \z@
\partopsep \z@
\itemsep \z@ plus .1pt
}
\def\@listiii{\leftmargin\leftmarginiii
\labelwidth\leftmarginiii\advance\labelwidth-\labelsep
\topsep 5.5pt plus 1pt minus 1pt
\parsep \z@
\partopsep \z@
\itemsep \z@
}
\def\@listiv{\leftmargin\leftmarginiv
\labelwidth\leftmarginiv\advance\labelwidth-\labelsep
}
\def\@listv{\leftmargin\leftmarginv
\labelwidth\leftmarginv\advance\labelwidth-\labelsep
}
\def\@listvi{\leftmargin\leftmarginvi
\labelwidth\leftmarginvi\advance\labelwidth-\labelsep
}
%
% ITEMIZE
\def\itemize{\ifnum \@itemdepth >3 \@toodeep
\else \advance\@itemdepth \@ne
\edef\@itemitem{labelitem\romannumeral\the\@itemdepth}%
\list{\csname\@itemitem\endcsname}%
{\let\makelabel\makeRLlabel}%
\fi}
\def\labelitemi{$\bullet$}
\def\labelitemii{--}
\def\labelitemiii{$\circ$}
\def\labelitemiv{$\diamond$}
%
% ENUMERATE
% SFB -- enumerate with optional argument to set left margin...
\def\enumerate{\ifnum \@enumdepth >3 \@toodeep \else
\advance\@enumdepth \@ne
\edef\@enumctr{enum\romannumeral\the\@enumdepth}%
\fi
\@ifnextchar [{\@enumeratetwo}{\@enumerateone}%
}
\def\@enumeratetwo[#1]{\list{\csname label\@enumctr\endcsname}%
{\settowidth\labelwidth{#1}
\leftmargin\labelwidth \advance\leftmargin\labelsep
\usecounter{\@enumctr}
\let\makelabel\makeRRlabel}%
}
\def\@enumerateone{\list{\csname label\@enumctr\endcsname}%
{\settowidth\labelwidth{9.}
\leftmargin\labelwidth \advance\leftmargin\labelsep
\usecounter{\@enumctr}
\let\makelabel\makeRRlabel}%
}
\def\labelenumi{\theenumi} \def\theenumi {\arabic{enumi}.}
\def\labelenumii{\theenumii} \def\theenumii {\alph{enumii}.}
\def\p@enumii{\theenumi}
\def\labelenumiii{\theenumiii} \def\theenumiii{\roman{enumiii}.}
\def\p@enumiii{\theenumi(\theenumii)}
\def\labelenumiv{\theenumiv} \def\theenumiv {\Alph{enumiv}.}
\def\p@enumiv{\p@enumiii\theenumiii}
%
% DESCRIPTION
\def\descriptionlabel#1{\hspace\labelsep \bfseries #1}
\def\description{\list{}{\labelwidth\z@ \itemindent-\leftmargin
\let\makelabel\descriptionlabel}}
\let\enddescription\endlist
% ****************************************
% * DISPLAYED TEXT *
% ****************************************
%
% VERSE
\def\verse{\let\\=\@centercr
\list{}{\itemsep\z@
\itemindent -1em
\listparindent \itemindent
\rightmargin\leftmargin
\advance\leftmargin 1em}\item[]}
\let\endverse\endlist
%
% QUOTATION
\def\quotation{\list{}{%\listparindent 1em
% \itemindent\listparindent
\leftmargin 1.5pc\rightmargin\leftmargin
\parsep 0pt plus 1pt}\item[]}
\let\endquotation=\endlist
%
% QUOTE
\def\quote{\list{}{\leftmargin 1.5pc\rightmargin\leftmargin}\item[]}
\let\endquote=\endlist
% ****************************************
% * OTHER ENVIRONMENTS *
% ****************************************
%
% THEOREM
\def\@begintheorem#1#2{\reset@font\rmfamily\list{}%
{\leftmargin\z@\rightmargin\leftmargin}\item[]{\bfseries #1\ #2 }}
\def\@opargbegintheorem#1#2#3{\reset@font\rmfamily\list{}%
{\leftmargin\z@\rightmargin\leftmargin}\item[]{\bfseries #1\ #2 (#3) }}
\def\@endtheorem{\endlist}
%
% PROOF
\def\proof{\reset@font\rmfamily\list{}%
{\leftmargin\z@\rightmargin\leftmargin}\item[]{\reset@font\itshape Proof\/}}
\def\endproof{\hspace*{1em}{\begin{picture}(6.5,6.5)%
\put(0,0){\framebox(6.5,6.5){}}\end{picture}}\endlist}
\@namedef{proof*}{\reset@font\rmfamily\list{}%
{\leftmargin\z@\rightmargin\leftmargin}\item[]{\reset@font\itshape Proof\/}}
\@namedef{endproof*}{\endlist}
\def\proofbox{\begin{picture}(6.5,6.5)%
\put(0,0){\framebox(6.5,6.5){}}\end{picture}}
%
% TITLEPAGE
\def\titlepage{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\else \newpage \fi \thispagestyle{empty}\c@page\z@}
\def\endtitlepage{\if@restonecol\twocolumn \else \newpage \fi}
% ARRAY AND TABULAR
%
\arraycolsep 5pt
\tabcolsep 6pt
\arrayrulewidth .5pt
\doublerulesep 1.5pt
% DF, 15.4.05: adapt \tabular to current article style
%
\def\tabular{\let\@halignto\@empty
\def\hline{\noalign{\ifnum0=`}\fi
\hrule \@height \arrayrulewidth
\futurelet \reserved@a \@xhline}
\def\@xhline{\ifx\reserved@a\hline
\vskip \doublerulesep \vskip -\arrayrulewidth
\fi
\ifnum0=`{\fi}}
\def\@arrayrule{\@addtopreamble{\hskip -.5\arrayrulewidth
\vrule \@width \arrayrulewidth
\hskip .5\arrayrulewidth}}
\let\fullhline\hline
\@tabular
}
%
% \def\tabular{\def\@halignto{}
% \def\hline{\noalign{\ifnum0=`}\fi
% \vskip 3pt
% \hrule \@height \arrayrulewidth
% \vskip 3pt
% \futurelet \@tempa\@xhline}
% \def\fullhline{\noalign{\ifnum0=`}\fi
% \vskip 3pt
% \hrule \@height \arrayrulewidth
% \vskip 3pt
% \futurelet \@tempa\@xhline}
% \def\@xhline{\ifx\@tempa\hline
% \vskip -6pt
% \vskip \doublerulesep
% \fi
% \ifnum0=`{\fi}}
% \def\@arrayrule{\@addtopreamble{\hskip -.5\arrayrulewidth
% % \vrule \@width \arrayrulewidth
% \hskip .5\arrayrulewidth}}
% \@tabular
% }
% EQNARRAY
%
\def\eqnarray{\stepcounter{equation}%
\let\@currentlabel=\theequation
\global\@eqnswtrue
\global\@eqcnt\z@
\tabskip\@centering
\let\\=\@eqncr
$$\halign to \displaywidth\bgroup\@eqnsel\hskip\@centering
$\displaystyle\tabskip\z@{##}$&\global\@eqcnt\@ne
\hskip \arraycolsep
\hfil${##}$\hfil
&\global\@eqcnt\tw@
\hskip \arraycolsep
$\displaystyle\tabskip\z@{##}$\hfil
\tabskip\@centering&\llap{##}\tabskip\z@\cr}
% TABBING
%
\tabbingsep \labelsep
% MINIPAGE
%
\skip\@mpfootins = \skip\footins
% FRAMEBOX
%
% Space left between box and text by \fbox and \framebox.
\fboxsep = 3pt
% Width of rules in box made by \fbox and \framebox.
\fboxrule = \arrayrulewidth
% ****************************************
% * TITLE AND ABSTRACT *
% ****************************************
%
% added for teaser
\newcommand{\teaser@empty}{}
\newcommand{\@teaser}{}
\newcommand{\teaser}[1]{\renewcommand{\@teaser}{#1}}
\newlength{\titlespace}
\setlength{\titlespace}{-10pt}
\newlength{\teaserspace}
\setlength{\teaserspace}{12pt}
\def\maketitle{\par
\begingroup
\setcounter{footnote}{0}
\def\thefootnote{\fnsymbol{footnote}}
\def\@makefnmark{\mbox{$^{\@thefnmark}$}}
\if@twocolumn
\twocolumn[\vspace*{27pt}\@maketitle]
\else
\newpage
\global\@topnum\z@
\@maketitle
\fi
\thispagestyle{titlepage}
\endgroup
\setcounter{footnote}{0}
\let\maketitle\relax
\let\@maketitle\relax
\gdef\@author{}
\gdef\@title{}
\hypersetup{pdfauthor={\@shortauthor},
pdftitle={\@shorttitle}}%
\let\thanks\relax
}
% \def\and{\end{author@tabular}\vskip 6pt\par
% \begin{author@tabular}[t]{@{}c@{}}}
% \def\@maketitle{\newpage
% \vspace*{10pt}
% {\centering \sloppy
% {\reset@font\huge \bfseries \@title \par}
% \vskip 35pt
% {\reset@font\normalsize
% \begin{author@tabular}[t]{@{}c@{}}\@author
% \end{author@tabular}\par}
% \vskip 46pt
% }%
%% fix problem with package tabularx
\def\and{%
\end{tabular}\vskip 6pt\par
\begin{tabular}[t]{@{}c@{}}\let\\=\author@nextline%
}
\def\@maketitle{\newpage
\vspace*{10pt}
{\centering \sloppy
{\reset@font\huge \bfseries \@title \par}
\vskip 35pt
{\reset@font\normalsize
\begin{tabular}[t]{@{}c@{}}\let\\=\author@nextline\@author
\end{tabular}
\par}
\vskip 46pt
}%
% added for teaser
\vspace{\titlespace}%
\ifx\@teaser\teaser@empty \else%
\begingroup%
\def\@captype{figure}%
\@teaser%
\endgroup\par%
\vspace{\teaserspace}%
\fi%
}
\def\author@nextline{ %
\tabularnewline[11pt]\reset@font\small\rmfamily\ignorespaces
\let\\=\author@nextlinetwo
}%
\def\author@nextlinetwo{\tabularnewline[-1pt]\reset@font\small\rmfamily\ignorespaces
\let\\=\author@nextlinetwo
}
% ORCID
\let\@orcid\relax
\def\orcid@base{https://orcid.org/}
\def\orcid#1{\hbox{\href{\orcid@base #1}{\includegraphics{orcid}}}}
\newif\ifSFB@abstract
\def\abstract{\if@twocolumn
\SFB@abstracttrue\start@SFBbox\SFB@widerule\addvspace{2pt}\bgroup\@abstract
\else
\@abstract
\fi}
\def\endabstract{\if@twocolumn
\SFB@abstractfalse\endlist\egroup
\SFB@widerule\addvspace{25pt}\finish@SFBbox
\@thanks \gdef\@thanks{}%
\else
\endlist
\fi}
\def\@abstract{\list{}{\leftmargin 2pc\rightmargin\leftmargin
\parsep 0pt plus .1pt}\item[]{\textbf{Abstract}}\\\reset@font\itshape}
%
%
\def\classification{\vskip 5.5pt\par\reset@font\rmfamily%
Categories and Subject Descriptors {\small (according to ACM CCS)}: }
\def\endclassification{\relax}
%\newcommand\CCScat[4]{#1 [#2]: #3---#4}
\newcommand\CCScat[4]{#2 [#1]: #3---#4}
%
\RequirePackage{comment}
\excludecomment{CCSXML}
\newcommand\CCSconcepts{}
\let\@concepts\@empty
\newcommand\ccsdesc[2][100]{%
\ccsdesc@parse#1~#2~}
\def\ccsdesc@parse#1~#2~#3~{%
\expandafter\ifx\csname CCS@#2\endcsname\relax
\expandafter\gdef\csname CCS@#2\endcsname{\textbullet\ \textbf{#2} $\,\to\,$ }%
\g@addto@macro{\@concepts}{\csname CCS@#2\endcsname}\fi
\expandafter\g@addto@macro\expandafter{\csname CCS@#2\endcsname}{%
\ifnum#1>499\textbf{#3; }\else
\ifnum#1>299\textit{#3; }\else
#3; \fi\fi }}
\newcommand\printccsdesc{%
\ifx\@concepts\@empty\else
\vspace{-8 pt}
\section*{CCS Concepts}
\@concepts
\fi}
\def\keywords{\vskip 5.5pt\par\reset@font\rmfamily\textbf{Keywords: }}
\def\endkeywords{\relax}
\newcommand\keyword[1]{[#1]}
\def\nokeywords{\relax}
\def\SFB@widerule{\bgroup\parskip 0pt\par\rule{\textwidth}{0.25pt}\par\egroup}
\def\author@tabular{\def\@halignto{}\@authortable}
\let\endauthor@tabular=\endtabular
\def\author@tabcrone{{\ifnum0=`}\fi\@xtabularcr[11pt]\reset@font\small\rmfamily
\let\\=\author@tabcrtwo\ignorespaces}
\def\author@tabcrtwo{{\ifnum0=`}\fi\@xtabularcr[-1pt]\reset@font\small\rmfamily
\let\\=\author@tabcrtwo\ignorespaces}
\def\@authortable{\leavevmode \hbox \bgroup $\let\@acol\@tabacol
\let\@classz\@tabclassz \let\@classiv\@tabclassiv
\let\\=\author@tabcrone \ignorespaces \@tabarray}
\def\start@SFBbox{\@next\@currbox\@freelist{}{}%
\global\setbox\@currbox
\vbox\bgroup
\hsize \textwidth
\@parboxrestore
}
\def\finish@SFBbox{\par\vskip -\dbltextfloatsep
\egroup
\global\count\@currbox\tw@
\global\@dbltopnum\@ne
\global\@topnum\z@
\global\@dbltoproom\maxdimen\@addtodblcol
\global\vsize\@colht
\global\@colroom\@colht
}
% ****************************************
% * PAGE STYLES *
% ****************************************
%
\mark{{}{}}
\gdef\@author{\mbox{}}
\def\author{\@ifnextchar [{\@authortwo}{\@authorone}}
\def\@authortwo[#1]#2{\gdef\@author{#2}\gdef\@shortauthor{#1}}
\def\@authorone#1{\gdef\@author{#1}\gdef\@shortauthor{#1}}
\gdef\@shortauthor{}
\gdef\@title{\mbox{}}
\def\title{\@ifnextchar [{\@titletwo}{\@titleone}}
\def\@titletwo[#1]#2{\gdef\@title{#2}\gdef\@shorttitle{#1}}
\def\@titleone#1{\gdef\@title{#1}\gdef\@shorttitle{#1}}
\gdef\@shorttitle{}
%
%% DF add p@volume which is a counter automatically adjusting by the year
%% DF (the volumes volume can be computed as year-1981)
%
\gdef\j@year{1981}
\gdef\j@volume{0}
\gdef\j@issue{0}
%
\newcounter{p@volume}
% \setcounter{p@volume}{\number\year} % compute volume based on current year
% \addtocounter{p@volume}{-1981}%
%
\newcommand\volume[1]{%
\gdef\j@volume{#1}%
\setcounter{p@volume}{#1}% compute year for the given volume
\addtocounter{p@volume}{1981}%
\gdef\j@year{\thep@volume}%
}
%
\newcommand\issue[1]{\gdef\j@issue{#1}}
%
\newcommand\pStartPage[1]{\gdef\j@pStartPage{#1}}
\gdef\j@pStartPage{1}
%
\newcommand\pEndPage[1]{\gdef\j@pEndPage{#1}}
\gdef\j@pEndPage{000}
%
%** \newcommand\pagerange[1]{\gdef\j@pagerange{#1}}
%** \gdef\j@pagerange{000--000}
%
\newcommand\journal[1]{\gdef\@journal{#1}}
\gdef\@journal{{\reset@font\large\sffamily COMPUTER GRAPHICS \reset@font\itshape forum}}
%
%% DF - add a few commands for customization
%
%
\newcommand\digitalheritage[1]{\gdef\@digitalheritage{#1}}
\gdef\@digitalheritage{{\reset@font\large\sffamily DIGITAL HERITAGE \reset@font\itshape Conference \number\year}}
%
\newcommand\expressive[1]{\gdef\@expressive{#1}}
\gdef\@expressive{{\reset@font\large\sffamily EXPRESSIVE \reset@font \number\year}}
%
\newcommand\ConfEditors[1]{\gdef\p@ConfEditors{#1}}
\gdef\p@ConfEditors{N.N. and N.N.}
%
\newcommand\ConfEditorStrg[1]{\gdef\p@ConfEditorStrg{#1}}
\gdef\p@ConfEditorStrg{(Editors)}
%
\newcommand\ShortPresEditors[1]{\gdef\p@ShortPresEditors{#1}}
\gdef\p@ShortPresEditors{N.N. and N.N.}
%
\newcommand\STARPresEditors[1]{\gdef\p@STARPresEditors{#1}}
\gdef\p@STARPresEditors{N.N. and N.N.}
%
\newcommand\TutorialEditors[1]{\gdef\p@TutorialEditors{#1}}
\gdef\p@TutorialEditors{N.N. and N.N.}
%
\newcommand\EducationEditors[1]{\gdef\p@EducationEditors{#1}}
\gdef\p@EducationEditors{N.N. and N.N.}
%
\newcommand\PosterEditors[1]{\gdef\p@PosterEditors{#1}}
\gdef\p@PosterEditors{N.N. and N.N.}
%
\newcommand\AreasEditors[1]{\gdef\p@AreasEditors{#1}}
\gdef\p@AreasEditors{N.N. and N.N.}
%
\newcommand\MedicalPrizeEditors[1]{\gdef\p@MedicalPrizeEditors{#1}}
\gdef\p@MedicalPrizeEditors{N.N. and N.N.}
%
\newcommand\DCEditors[1]{\gdef\p@DCEditors{#1}}
\gdef\p@DCEditors{N.N. and N.N.}
%
% EuroVis
\newcommand\EuroVisShortPresEditors[1]{\gdef\p@EuroVisShortPresEditors{#1}}
\gdef\p@EuroVisShortPresEditors{N.N. and N.N.}
%
\newcommand\EuroVisSTARPresEditors[1]{\gdef\p@EuroVisSTARPresEditors{#1}}
\gdef\p@EuroVisSTARPresEditors{N.N. and N.N.}
%
\newcommand\EuroVisPosterEditors[1]{\gdef\p@EuroVisPosterEditors{#1}}
\gdef\p@EuroVisPosterEditors{N.N. and N.N.}
%
\newcommand\EGyear[1]{\gdef\p@EGyear{#1}}
\gdef\p@EGyear{'0x}
%
\newcommand\ConfYear[1]{\gdef\p@ConfYear{#1}}
\gdef\p@ConfYear{200x}
%
\newcommand\ConfName[1]{\gdef\p@ConfName{#1}}
\gdef\p@ConfName{EUROGRAPHICS Workshop on ...}
\newcommand\ConfNameJoint[2]{\gdef\p@ConfNameJoint{#1\\#2}}
\gdef\p@ConfNameJoint{EUROGRAPHICS Workshop on ...\\EUROGRAPHICS Workshop on ...}
\newcommand\ConfNameDH[2]{\gdef\p@ConfNameDH{#1\\#2}}
\gdef\p@ConfNameA{EUROGRAPHICS Workshop on ...\\EUROGRAPHICS Workshop on ...}
%
% --- Handling of copyright text
% start with cmds to set the text for title page and running page
%
\newcommand\copyrightTextTitPag[1]{%
\renewcommand\p@copyrightTextTitPag{#1}%
}
\newcommand\p@copyrightTextTitPag{}%
%
\newcommand\copyrightTextRunPag[1]{%
\renewcommand\p@copyrightTextRunPag{#1}%
}
\newcommand\p@copyrightTextRunPag{}%
%
% --- and here are the parameterized texts defined
%
\newcommand\p@copyrightTextLong[1]{%
\copyright\ #1\ The Author(s)\\
Computer Graphics Forum \copyright\ #1\ The Eurographics Association and
John \\Wiley \& Sons Ltd. Published by John Wiley \& Sons Ltd.
%
}%
% if paper is open access please use this:
%\newcommand\p@copyrightTextLong[1]{
%\copyright\ #1\ The Author(s), Computer Graphics Forum published by John Wiley \& Sons Ltd. and \\The Eurographics Association.\\
%This is an open access article under the terms of the Creative Commons Attribution License, which permits use, distribution and reproduction in any medium, provided the original work is properly cited.}
\newcommand\p@copyrightTextShort[1]{%
\copyright\ #1\ The Author(s)
Computer Graphics Forum \copyright\ #1\ The Eurographics Association and John Wiley \& Sons Ltd.