-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlangscibook.cls
executable file
·2247 lines (1976 loc) · 78.3 KB
/
langscibook.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% File: langscibook.cls
%% Author: Language Science Press (http://langsci-press.org)
%% Date: 2022-02-08 14:00 CET
%% Purpose: This file defines the basic document class
%% for books published with Language Science Press.
%% Language: LaTeX
%% Copyright 2012- Language Science Press
%% Licence: This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of LaTeX
%% version 2005/12/01 or later.
%%% This work has the LPPL maintenance status `maintained'.
%%% The Current Maintainer of this work is Sebastian Nordhoff.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Structure of this file:
% \- Early load packages
% \- Default values of variables
% \- Definition of conditionals
% \- Option handling
% \- Output variables
% \- MAIN CLASS
% \- General packages
% \- Covers
% \- Output types (book, draft, cover)
% \- Page geometry
% \- Fonts
% \- Colors
% \- Book cover
% \- Series history
% \- Imprint
% \- Dedication
% \- Header and footer
% \- Sectioning
% \- Epigrams
% \- Footnotes
% \- Quotes
% \- Languages
% \- Citations
% \- Floats
% \- Appendices
% \- Indexes
% \- Hyperref
% \- Edited volumes (Collection)
% \- Localisation
% \- Miscellaneous
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{langscibook}[2024/12/12 Language Science Press]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Early load packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{ifxetex}
\RequireXeTeX{}
\RequirePackage[]{silence}
\WarningsOff[hyperref]
\WarningsOff[microtype]
\WarningFilter{latex}{Command \mark} %markboth/markright
\WarningFilter{scrbook}{\float@addtolist}
\WarningFilter{biblatex}{Macro 'date+extradate}
\WarningFilter{microtype}{Unknown slot}
\WarningFilter{scrbook}{package incompatibility}
\WarningFilter{todonotes}{The length}
\WarningFilter{biblatex}{'babel/polyglossia'}
\hbadness=99999 % get rid of underfull box warnings
\typeout{Warnings are disabled in langscibook.cls for underfull boxes, hyperref, microtype and scrbook package incompatibility, todonotes length and babel/polyglossia csquotes}
\usepackage{etoolbox}
\RequirePackage{xparse}
\usepackage{langsci-affiliations}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Default values
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{xspace}
\newcommand{\lsp}{Language Science Press\xspace}
\newcommand{\lsSeriesNumber}{??}
\newcommand{\lsSeriesText}{\color{red}{No series description provided}}
\newcommand{\lsISSN}{??}
\newcommand{\lsISSNprint}{??}
\newcommand{\lsISSNelectronic}{??}
\newcommand{\lsISBNdigital}{000-0-000000-00-0}
\newcommand{\lsISBNhardcover}{000-0-000000-00-0}
\newcommand{\lsISBNsoftcover}{000-0-000000-00-0}
\newcommand{\lsISBNsoftcoverus}{000-0-000000-00-0}
\newcommand{\lsBookDOI}{??}
\newcommand{\lsChapterDOI}{??}
\newcommand{\lsID}{000}
\newcommand{\lsURL}{redefine \ lsURL}
\newcommand{\lsSeries}{eotms}
\newcommand{\lsOutput}{book}
\newcommand{\lsBookLanguage}{english}
\newcommand{\lsFontsize}{11pt}
\newcommand{\lsChapterFooterSize}{\small} %footers in editedvolumes
\newcommand{\lsCopyright}{CC-BY}
\newcommand{\lsSpinewidth}{20mm}
\newcommand{\lsBiblatexBackend}{biber}
\newcommand{\logotext}{{\color{red}no logo}}
\newcommand{\lsYear}{\the\year}
\newcommand{\lsBackBody}{Set blurb on back with {\textbackslash}BackBody\{my blurb\}}
\newcommand{\lsBackTitle}{\@title}
\newcommand{\BackTitle}[1]{\renewcommand{\lsBackTitle}{#1}}
\newcommand{\BackBody}[1]{\renewcommand{\lsBackBody}{#1}}
\newcommand{\newlineCover}{\\} % \newline only on cover
\newcommand{\newlineSpine}{\\} % \newline only on spine
\newcommand{\newlineTOC}{\\} % \newline only in TOC entry
\newcommand{\affiliation}[1]{} % A dummy command to process the affiliation info.
\newcommand{\orcid}[1]{} % A dummy command to process ORCiDs.
\newcommand{\lsSpineTitle}{\@title}
\newcommand{\lsSpineAuthor}
{%
\ResolveAffiliations[output affiliation=false,
orcid placement=none,
output authors font=\lsSpineAuthorFont]{\@author}%
}
\newcommand{\SpineTitle}[1]{\renewcommand{\lsSpineTitle}{#1}}
\newcommand{\SpineAuthor}[1]{\renewcommand{\lsSpineAuthor}{#1}}
% Default commands for loaded graphics
\newcommand{\includespinelogo}{~}
\newcommand{\includestoragelogo}{~}
\newcommand{\includepublisherlogo}{~}
\newcommand{\includechapterfooterlogo}{~}
\newcommand{\lsLicenseInformation}[1]{~}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Conditionals
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newbool{cover}
\newbool{resetcapitals}
\newbool{draft}
\newbool{openreview}
\newbool{babel}
\newbool{babelshorthands}
\newbool{multiauthors}
\newbool{showindex}
\newbool{minimal}
\newbool{collection}
\newbool{collectiontoclong}
\newbool{uniformtopskip}
\newbool{oldstylenumbers}
\newbool{lsISBNTwoDigitAddon}
\newbool{lsFloatCounterWithoutChapter}
\booltrue{lsFloatCounterWithoutChapter}
\newbool{lsImportPackagesWhenStandalone}
\newbool{lsSpineWidthUserConfigured}
\newbool{infn}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Option handling
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\RequirePackage{kvoptions}
\DeclareStringOption{output}[book]
\define@key{langscibook}{output}{%
\renewcommand{\lsOutput}{#1}}
\DeclareStringOption{booklanguage}[english]
\define@key{langscibook}{booklanguage}{%
\renewcommand{\lsBookLanguage}{#1}}
\DeclareStringOption{copyright}[CC-BY]
\define@key{langscibook}{copyright}{%
\renewcommand{\lsCopyright}{#1}}
\DeclareStringOption{biblatexbackend}[biber]
\define@key{langscibook}{biblatexbackend}{%
\renewcommand{\lsBiblatexBackend}{#1}}
\DeclareStringOption{spinewidth}[20mm]
\define@key{langscibook}{spinewidth}{%
\renewcommand{\lsSpinewidth}{#1}%
\booltrue{lsSpineWidthUserConfigured}}
\DeclareVoidOption{smallfont}{\renewcommand{\lsFontsize}{10pt}}
\DeclareVoidOption{decapbib}{
\booltrue{resetcapitals}
% \lsResetCapitalstrue
}
\DeclareVoidOption{draftmode}{% 'draftmode' instead of 'draft' due to undesirable side efects
\booltrue{draft}
\overfullrule=5pt
} % to indicate overfull hboxes
\DeclareVoidOption{openreview}{
\booltrue{openreview}
\AtBeginDocument{\renewcommand{\lsISBNdigital}{000-0-000000-00-0}}
}
\DeclareVoidOption{nobabel}{\boolfalse{babel}}
\DeclareVoidOption{babelshorthands}{\booltrue{babelshorthands}}
\DeclareVoidOption{multiauthors}{\booltrue{multiauthors}}
\DeclareVoidOption{showindex}{\booltrue{showindex}}
\DeclareVoidOption{minimal}{\booltrue{minimal}}
\DeclareVoidOption{collection}{\booltrue{collection}}
\DeclareVoidOption{proofs}
{
\AtEndPreamble{\usepackage[switch, pagewise]{lineno}}
\AtBeginDocument{\linenumbers}
}
\DeclareVoidOption{collectiontoclong}
{
\booltrue{collection}
\booltrue{collectiontoclong}
}
\DeclareVoidOption{uniformtopskip}{\booltrue{uniformtopskip}}
\DeclareVoidOption{oldstylenumbers}{\booltrue{oldstylenumbers}}
\DeclareVoidOption{classicfloatnumbers}{\boolfalse{lsFloatCounterWithoutChapter}}
\DeclareVoidOption{chinesefont}{
\AtEndPreamble{
\newfontfamily\cn
[
Scale=MatchLowercase,
BoldFont=SourceHanSerif-Bold.otf
]
{SourceHanSerif-Regular.otf}
\AdditionalFontImprint{Source Han Serif ZH}
\XeTeXlinebreaklocale 'zh'
\XeTeXlinebreakskip = 0pt plus 1pt
}
}
\DeclareVoidOption{japanesefont}{
\AtEndPreamble{
\newfontfamily\jpn
[
Scale=MatchLowercase,
BoldFont=SourceHanSerif-Bold.otf
]
{SourceHanSerif-Regular.otf}
\AdditionalFontImprint{Source Han Serif JA}
\XeTeXlinebreaklocale 'ja'
}
}
\DeclareVoidOption{koreanfont}{
\AtEndPreamble{
\newfontfamily\krn
[
Scale=MatchLowercase,
BoldFont=SourceHanSerif-Bold.otf
]
{SourceHanSerif-Regular.otf}
\AdditionalFontImprint{Source Han Serif KO}
\XeTeXlinebreaklocale 'ko'
}
}
\DeclareVoidOption{arabicfont}
{
\AtEndPreamble{
\newfontfamily\arabicfont[Script=Arabic,ItalicFont=*,Scale=1.4]{ScheherazadeRegOT_Jazm.ttf}
\AdditionalFontImprint{Arabtype}
\usepackage{langsci-bidi}
% \newcommand{\textarab}[1]{\RL{\arabicfont #1}} %has to be moved to localcommands
}
}
\DeclareVoidOption{hebrewfont}
{
\newfontfamily\hebrewfont[Script=Hebrew,ItalicFont=*, Scale=0.9]{SBLHebrew.ttf}
% \newcommand{\texthebrew}[1]{{\hebrewfont #1}}
\AdditionalFontImprint{SBLHebrew}
}
\DeclareVoidOption{syriacfont}
{
\newfontfamily\syriacfont[Script=Syriac]{EstrangeloEdessa.ttf}
% \newcommand{\textsyriac}[1]{{\syriacfont #1}}
\AdditionalFontImprint{Estrangelo Edessa}
}
\DeclareVoidOption{infn}{\booltrue{infn}}
\ProcessKeyvalOptions*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Output variables
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newbool{book}
\newbool{paper}
\newbool{guidelines}
\newbool{coverBODhc}
\newbool{coverBODsc}
\newbool{coverCS}
\newcommand{\lsOutputPaper}{paper}
\newcommand{\lsOutputBook}{book}
\newcommand{\lsOutputGuidelines}{guidelines}
\newcommand{\lsOutputCoverBODhc}{coverbodhc}
\newcommand{\lsOutputCoverBODsc}{coverbodsc}
\newcommand{\lsOutputCoverCS}{amazoncover}
\ifx\lsOutput\lsOutputPaper{\global\booltrue{paper}}\fi
\ifx\lsOutput\lsOutputBook{\global\booltrue{book}}\fi
\ifx\lsOutput\lsOutputGuidelines{\global\booltrue{guidelines}}\fi
\ifx\lsOutput\lsOutputCoverBODhc{\global\booltrue{coverBODhc}}\fi
\ifx\lsOutput\lsOutputCoverBODsc{\global\booltrue{coverBODsc}}\fi
\ifx\lsOutput\lsOutputCoverCS{\global\booltrue{coverCS}}\fi
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Class
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\LoadClass[
fontsize=\lsFontsize,% default is 11pt
footnotes=multiple,
numbers=noenddot,% no point after last number of chapters/sections
toc=bib, % make bibliography appear in toc
index=totoc,
headings=optiontohead,
footnotes=multiple
]{scrbook}
\ifbool{collection}
{% In collected volumes, write "Chapter n" instead of "n" in the header
\KOMAoptions{chapterprefix=true}
}
{
\ifbool{paper}
{% The same is applied to papers.
\KOMAoptions{chapterprefix=true}
\booltrue{lsImportPackagesWhenStandalone}
}
{}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% secret hook to insert package which want to be loaded before all other packages
\IfFileExists{./langsci-earlyload.def}{\input{langsci-earlyload.def}}{}
\usepackage{xstring}
\usepackage{graphicx}
\usepackage{hyphenat}
\usepackage{tikz} % Needed for covers and advert page
\usetikzlibrary{positioning}
\usetikzlibrary{calc}
\usepackage[hyphens]{url}
\urlstyle{same}
%% standard commands
% \usepackage{langsci-basic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Covers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\notbool{minimal}{
% Basic cover commands, including PGF layers
\newcommand{\coversetup}{
\booltrue{cover}
\renewcommand{\maketitle}{} %no need for this
\pagestyle{empty}
\pgfdeclarelayer{lspcls_bg} % Create a background layer that serves as the canvas for the coloured rectangles.
\pgfsetlayers{lspcls_bg,main} % Order the background layer behind the main layer of TikZ.
}
% Fill the canvas for the cover with coloured areas on back and front cover
% Argument 1: White margin that encompasses the coloured title and backtitle form. Input: 12.34mm
% Argument 2: Height of the coloured title and backtitle form and of the spine. Input: 12.45cm
% Argument 3: Width of the coloured title and backtitle form. Input: 12.45cm
\newcommand{\covergeometry}[3]{%
\begin{pgfonlayer}{lspcls_bg} % Draw on the background layer
\node [ bg, % Draw the coloured background on the front cover
left = #1 of current page.east,
fill=\lsSeriesColor,
minimum height=#2,
minimum width=#3
] (CoverColouredRectangleFront) {}; % Die können wir noch dynamisch bestimmen % 7.5mm -> 10.675mm for bleed
\node [ bg, % Draw the coloured background on the back cover
right = #1 of current page.west,
fill=\lsSeriesColor,
minimum height=#2,
minimum width=#3
] (CoverColouredRectangleBack) {};
\node at (current page.center) [ % Create a reference node for the spine
bg,
minimum height=#2,
minimum width=\spinewidth,dashed
] (CoverSpine) {}; % add [draw] option for preview mode
\end{pgfonlayer}
}
% Generates the content of the back cover. The starred variant \backcover*
% does not print the ISBN on the back. By default, we use \backcover if
% we are in a cover generation mode, and backcover* otherwise.
% Mandatory argument: Text width, corresponding to Argument 1 of \frontcovertoptext
\NewDocumentCommand \backcover {s m}
{%
\node [ font=\lsBackTitleFont,
right,
below right = 10mm and 7.5mm of CoverColouredRectangleBack.north west,
text width=#2
] (lspcls_backtitle) {\color{white}\raggedright\lsBackTitle\par};
\node [ font=\lsBackBodyFont,
below = 10mm of lspcls_backtitle,
text width=#2,
align=justify
] {\color{white}\parindent=15pt\lsBackBody};
\node [ above left = 10mm and 7.5mm of CoverColouredRectangleBack.south east ] {%
\IfBooleanF {#1}
{%
\colorbox{white}{%
\ifbool{lsISBNTwoDigitAddon}{%
\begin{pspicture}(0,0)(5.25,1in)
\psbarcode[transx=.4,transy=.3]
{\lsISBNcover\ \lsISBNhardcoverTwoDigitAddon}
{includetext guardwhitespace height=.7}{isbn}
\end{pspicture}%
}{%
\begin{pspicture}(0,0)(4.15,1in)
\psbarcode[transx=.4,transy=.3]
{\lsISBNcover}
{includetext height=.7}{isbn}%
\end{pspicture}%
}%
}%
}};
}
% Generates the content on the front cover, including title, author, subtitle. See below for remaining commands
% Argument 1: Text width on the front cover. Input: 12.34mm
% Argument 2: Font size on the front cover. Adjust to compensate varying text width. Input: 12.34pt
\newcommand{\frontcovertoptext}[3][white]{%
\renewcommand{\newlineCover}{\\}
\node [ font=\lsCoverTitleFont,
below right = 10mm and 7.5mm of CoverColouredRectangleFront.north west,
text width=#2,
align=left
] (lspcls_covertitle) {\color{#1}\raggedright\@title\par};
\ifx\@subtitle\empty % Is there a subtitle? If no, just print the author.
\node [ font=\lsCoverAuthorFont,
right,
below = 11.2mm of lspcls_covertitle.south,
text width=#2
] {\color{#1}\nohyphens{%
\lsEditorPrefix%
\ResolveAffiliations[output in groups=false,
output affiliation=false,
orcid placement=none,
output authors font=\lsCoverAuthorFont,
separator between two=\\,
separator between multiple=\\,
separator between final two=\\]
{\@author}\par}};
\else % If yes, create a node for subtitle and author
\node [ font=\lsCoverSubTitleFont,
below = 8mm of lspcls_covertitle.south,
text width=#2,
align=left
] (lspcls_coversubtitle) {\color{#1}\raggedright\@subtitle\par};
\node [
font=\lsCoverAuthorFont,
right,
below = 11.2mm of lspcls_coversubtitle.south,
text width=#2
] {\color{#1}\nohyphens{%
\lsEditorPrefix%
\ResolveAffiliations[output in groups=false,
output affiliation=false,
orcid placement=none,
output authors font=\lsCoverAuthorFont,
separator between two=\\,
separator between multiple=\\,
separator between final two=\\]
{\@author}\par}};
\fi
}
% Generates the bottom half of the front cover content: series, series number, logo.
\newcommand{\coverbottomtext}[1][white]{%
\node [ above right = 18.5mm and -.1mm of CoverColouredRectangleFront.south west,
rectangle,
fill=white,
minimum size=17pt] (lspcls_square) {}; % This is the white square at the bottom left of the front cover
\node [ above left = 10mm and 7.5mm of CoverColouredRectangleFront.south east] {\color{#1}\includepublisherlogo}; % Print the Language Science press Logo
\path let \p1 = (lspcls_square.north east), % Calculate the exact coordinates for the Series Title to print.
\p2 = (lspcls_covertitle.west)
in node at (\x2,\y1) (lspcls_seriesinfo) [
font=\lsCoverSeriesFont,
right,
text width=95mm,
anchor=north west]
{\color{#1}\lsSeriesTitle~\lsSeriesNumber\par};
}
}{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Output types
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Output types are defined with \newcommand above so they can be used with geometry.
%we define a command to better encapsulate the logic
\newcommand{\setuptitle}{%
\renewcommand{\maketitle}{%first we treat covers to get them out of the way
\ifbool{coverBODhc}{%
\bodHCcover
\end{document}
}{}
\ifbool{coverBODsc}{%
\bodSCcover
\end{document}
}{}
\ifbool{coverCS}{%
\amazonKindleCover
\end{document}
}{}
\ifbool{book}{
\begin{titlepage}
\thispagestyle{empty}
\setcounter{page}{-1}
%% First titlepage:
{\lsFrontPage}
%%%%%%%%%%%%%%%%%%%
\pagenumbering{roman}\clearpage\thispagestyle{empty} % We use roman pagenumbering here instead of \frontmatter because scrbook's frontmatter command issues a \clear(double)page, which is unnec. in digital publications.
%% Series information:
{\lsSeriesHistory}
%%%%%%%%%%%%%%%%%%%%%
\clearpage%\thispagestyle{empty}
%% Schmutztitel:
{\renewcommand{\lsCoverBlockColor}{white}
\renewcommand{\lsCoverFontColor}{\lsSeriesColor}
\lsSchmutztitel}
%%%%%%%%%%%%%%%%%%%%
\AtEndDocument{
\lsPageStyleEmpty
\null\newpage\thispagestyle{empty} % add a final blank page
%% Back page:
{\lsBackPage}
\null\newpage\thispagestyle{empty}
}
\end{titlepage}
}{} %end book
\ifbool{guidelines}{%
\begin{titlepage}
\thispagestyle{empty}
{\setcounter{page}{-1}
{\lsFrontPage}
}
\end{titlepage}
}{} %end guidelines
\color{black}
\lsInsideFont
%% Imprint:
\notbool{guidelines}{
{\lsImpressum}
}{} %end guidlines
%%%%%%%%%%%%%
% \null\newpage\thispagestyle{plain}
%\pagenumbering{roman} % or \frontmatter
%% Dedication:
\ifx\@dedication\empty{}
\else{\newpage\lsDedication}
\fi
%%%%%%%%%%%%%%%%
} %% \maketitle
} %\setuptitle
\notbool{paper}{
% A paper differs in title generation from the other
% output types, and it needs more input to produce
% its title. This is why \maketitle for output==paper
% is deferred until later. See the call to \includepaper@body.
\AtBeginDocument{%
\ifbool{minimal}
{% The minimal mode skips cover generation
\renewcommand{\maketitle}{You are using the minimal mode.}
}
{% else minimal
\setuptitle
}
%% Series-specific layout settings, governs the entire series
%% In SIDL, COGL and RCG, examples are put in italics. Sections are
%% referenced using the section sign “§”.
\ifx\lsSeries\sidl
\renewcommand{\sectref}[1]{§\ref{#1}}
\let\eachwordone=\itshape % only \gll
\let\oldtable\table % footnotes in tables without horizontal line
\let\endoldtable\endtable
\renewenvironment{table}{\setfootnoterule{0pt}\oldtable}{\endoldtable}
\fi
\ifx\lsSeries\pmwe
\let\eachwordone=\normalfont
\fi
\ifx\lsSeries\nc
\let\eachwordone=\itshape
\fi
\ifx\lsSeries\cogl
\let\eachwordone=\itshape
\renewcommand{\sectref}[1]{§\ref{#1}}
\fi
\ifx\lsSeries\rcg
\let\eachwordone=\itshape
\renewcommand{\sectref}[1]{§\ref{#1}}
\fi
} %% \AtBeginDocument
}{} %notbool paper
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Geometry
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% For output type cover
% CS spine width algorithm, when page count is known: Total Page Number (excluding cover), usually (Total Page - 3) * 0.0572008 mm
% BoD spine width algorithm located at http://www.bod.de/hilfe/coverberechnung.html (German only, please contact LangSci for help)
\newlength{\bleed}
\newlength{\seitenbreite}
\newlength{\seitenhoehe}
\newlength{\spinewidth}
\newlength{\totalwidth}
\newlength{\totalheight}
\setlength{\bleed}{3.175mm}
\setlength{\spinewidth}{\lsSpinewidth} % Create Space Version
\ExplSyntaxOn
% Integers and floats needed for automatic spine width calculation (BoD).
\int_new:N \l__langsci_bookblock_page_count
\int_new:N \l_langsci_spine_width_modifier
\fp_new:N \l__langsci_spine_width
\NewExpandableDocumentCommand{\lsDetermineSpineWidth}{O{Bookblock.pdf} m}
{% Collect the page count from input file.
\int_set:Nn \l__langsci_bookblock_page_count
{\the\XeTeXpdfpagecount"#1"}
\str_case:nn {#2}
{
{hardcover} % Determine hardcover spine dimensions with 90g white paper
{
\int_compare:nTF
{ \l__langsci_bookblock_page_count < 300 }
{ \int_set:Nn \l_langsci_spine_width_modifier {5} }
{ \int_set:Nn \l_langsci_spine_width_modifier {6} }
}
{softcover} % Determine softcover spine dimensions with 90g white paper
{
\int_set:Nn \l_langsci_spine_width_modifier {0}
}
}
\fp_set:Nn \l__langsci_spine_width
{
\l__langsci_bookblock_page_count / 2 * 0.12
+ \l_langsci_spine_width_modifier
}
\setlength{\spinewidth}{\fp_use:N \l__langsci_spine_width mm}
}
\ExplSyntaxOff
\usepackage{calc}
\ifbool{coverCS}{
\booltrue{cover}
\usepackage{langsci-pod}
\csgeometry
} %end covercs
\ifbool{coverBODhc}{
\booltrue{cover}
\usepackage{langsci-pod}
\ifbool{lsSpineWidthUserConfigured}
{}
{\lsDetermineSpineWidth{hardcover}}
\bodhcgeometry{}
}{}
\ifbool{coverBODsc}{
\booltrue{cover}
\usepackage{langsci-pod}
\ifbool{lsSpineWidthUserConfigured}
{}
{\lsDetermineSpineWidth{softcover}}
\bodscgeometry{}
}{}
%Page size and text area if not cover
\notbool{cover}{
%output types cover have already been handled
\usepackage[
papersize={170mm,240mm}
,top=27.4mm % TODO nachgemessen, nach Vermassung eigentlich 30mm-16pt = 25.8mm
,inner=20.5mm,
,outer=24.5mm
%,showframe,pass
,marginparwidth=50pt
]{geometry}
}{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Fonts
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Typesetting of mathematical formulas
\usepackage{amssymb} % has to be loaded before other stuff
\usepackage{amsmath} % has to be loaded before mathspec/unicode-math
\notbool{minimal}{% The minimal mode skips font loading
%% There is a known problem in the interplay between \binom, unicode-math, and OTF
%% https://tex.stackexchange.com/questions/269980/wrong-parentheses-size-in-binom-with-xelatex-and-unicode-math-in-displaystyle
\ifx\Umathcode\@undefined\else
\DeclareRobustCommand{\genfrac}[6]{%
\def\@tempa{#1#2}%
\edef\@tempb{\@nx\@genfrac\@mathstyle{#4}%
% just \over or \above never withdelims versions
\ifx @#3@\@@over\else\@@above\fi
}%
\ifx\@tempa\@empty \else
\bgroup % so mathord not mathinner
\left\ifx\relax#1\relax.\else#1\fi % assumes . is null delimiter
% otherwise add specified delimiter
\kern-\nulldelimiterspace % fractions add extra nulldelimiter space
\fi
\@tempb{#3}{\mathstrut{#5}}{\mathstrut{#6}}%
\ifx\@tempa\@empty \else
\kern-\nulldelimiterspace
\right\ifx\relax#2\relax.\else#2\fi
\egroup
\fi
}
\fi%umathcode
%% Provides \setmathfont
\usepackage{unicode-math}
\usepackage{metalogo}\newcommand{\xelatex}{\XeLaTeX\xspace}
\setmonofont[
% Ligatures={TeX},% not supported by ttf
Scale=MatchLowercase,
BoldFont = DejaVuSansMono-Bold.ttf ,
SlantedFont = DejaVuSansMono-Oblique.ttf ,
BoldSlantedFont = DejaVuSansMono-BoldOblique.ttf
]{DejaVuSansMono.ttf}
\setsansfont[
%Ligatures={TeX,Common},% not supported by ttf
Scale=MatchLowercase,
BoldFont = Arimo-Bold.ttf,
ItalicFont = Arimo-Italic.ttf,
BoldItalicFont = Arimo-BoldItalic.ttf
]{Arimo-Regular.ttf}
\setmathfont[AutoFakeBold]{LibertinusMath-Regular.otf}
\setmathfont[range={cal},StylisticSet=1]{XITSMath-Regular.otf}
\setmathfont[range={bfcal},StylisticSet=1]{XITSMath-Bold.otf}
\ifbool{oldstylenumbers}{
\defaultfontfeatures[LibertinusSerif-Semibold.otf,LibertinusSerif-Italic.otf,LibertinusSerif-SemiboldItalic.otf,LibertinusSerif-Regular.otf]{SmallCapsFeatures={Numbers=OldStyle}}
}{}
\setmainfont
[
Ligatures={TeX,Common},
PunctuationSpace=0,
Numbers={Proportional},
BoldFont = LibertinusSerif-Semibold.otf,
ItalicFont = LibertinusSerif-Italic.otf,
BoldItalicFont = LibertinusSerif-SemiboldItalic.otf,
BoldSlantedFont = LibertinusSerif-Semibold.otf,
SlantedFont = LibertinusSerif-Regular.otf,
SlantedFeatures = {FakeSlant=0.25},
BoldSlantedFeatures = {FakeSlant=0.25},
SmallCapsFeatures = {FakeSlant=0},
]
{LibertinusSerif-Regular.otf}
% Improve the appearance of numbers in tables and the TOC
% In those places, they should come out monospaced, unlike in main text.
\AtBeginEnvironment{tabular}{\ifmmode\else\addfontfeatures{Numbers={Monospaced,Lining}}\selectfont\fi}
\AtBeginEnvironment{tabularx}{\ifmmode\else\addfontfeatures{Numbers={Monospaced,Lining}}\selectfont\fi}
\AtBeginEnvironment{longtable}{\ifmmode\else\addfontfeatures{Numbers={Monospaced,Lining}}\selectfont\fi}
\DeclareTOCStyleEntry
[
entrynumberformat=\addfontfeature{Numbers={Monospaced,Lining}},
pagenumberformat=\addfontfeature{Numbers={Monospaced,Lining}}\bfseries,
raggedentrytext=true
]
{tocline}
{chapter}
\DeclareTOCStyleEntries
[
entrynumberformat=\addfontfeature{Numbers={Monospaced,Lining}},
pagenumberformat=\addfontfeature{Numbers={Monospaced,Lining}},
raggedentrytext=true
]
{tocline}
{section,subsection,subsubsection,paragraph,subparagraph}
% In collected volumes, adjust the spacing for unnumbered chapters
\ifbool{collection}{
\BeforeStartingTOC[toc]{\SetupAffiliations{output affiliation=false,
orcid placement=none,
output authors font=\normalfont,
separator between two={~\&~},
separator between multiple={,~},
separator between final two={~\&~}}
}
\renewcommand{\addtocentrydefault}[3]{%
\Ifstr{#2}{}{%
\addcontentsline{toc}{#1}{\protect\numberline{~}#3}%
}{%
\addcontentsline{toc}{#1}{\protect\numberline{#2}#3}%
}%
}%
}{}
\frenchspacing %see https://en.wikipedia.org/wiki/Sentence_spacing#Typography
\usepackage[final]{microtype}
\newcommand{\lsCoverTitleFontSize}{52pt}
\newcommand{\lsCoverTitleFontBaselineskip}{17.25mm}
\newcommand{\lsCoverTitleSizes}[2]{\renewcommand{\lsCoverTitleFontSize}{#1}\renewcommand{\lsCoverTitleFontBaselineskip}{#2}}
\newcommand{\lsCoverTitleFont}[1]{\sffamily\addfontfeatures{Scale=MatchUppercase}\fontsize{\lsCoverTitleFontSize}{\lsCoverTitleFontBaselineskip}\selectfont #1}
\newcommand{\lsCoverSubTitleFont}{\sffamily\addfontfeatures{Scale=MatchUppercase}\fontsize{25pt}{10mm}\selectfont}
\newcommand{\lsCoverAuthorFont}{\fontsize{25pt}{12.5mm}\selectfont}
\newcommand{\lsCoverSeriesFont}{\sffamily\fontsize{17pt}{7.5mm}\selectfont} % fontsize?
\newcommand{\lsCoverSeriesHistoryFont}{\sffamily\fontsize{10pt}{5mm}\selectfont}
\newcommand{\lsInsideFont}{} % obsolete, see \setmainfont
\newcommand{\lsDedicationFont}{\fontsize{15pt}{10mm}\selectfont}
\newcommand{\lsBackTitleFont}{\sffamily\addfontfeatures{Scale=MatchUppercase}\fontsize{25pt}{10mm}\selectfont}
\newcommand{\lsBackBodyFont}{\lsInsideFont}
\newcommand{\lsSpineAuthorFont}{\bfseries\fontsize{16pt}{14pt}\selectfont}
\newcommand{\lsSpineTitleFont}{\sffamily\bfseries\fontsize{18pt}{14pt}\selectfont}
}{} %end else minimal
\setkomafont{sectioning}{\normalcolor\bfseries}
\setkomafont{descriptionlabel}{\normalfont\itshape}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Colors
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{xcolor}
\definecolor{lsLightBlue}{cmyk}{0.6,0.05,0.05,0}
\definecolor{lsMidBlue}{cmyk}{0.75,0.15,0,0}
\definecolor{lsMidDarkBlue}{cmyk}{0.9,0.4,0.05,0}
\definecolor{lsDarkBlue}{cmyk}{0.9,0.5,0.15,0.3}
\definecolor{lsNightBlue}{cmyk}{1,0.47,0.22,0.68}
\definecolor{lsYellow}{cmyk}{0,0.25,1,0}
\definecolor{lsLightOrange}{cmyk}{0,0.50,1,0}
\definecolor{lsMidOrange}{cmyk}{0,0.64,1,0}
\definecolor{lsDarkOrange}{cmyk}{0,0.78,1,0}
\definecolor{lsRed}{cmyk}{0.05,1,0.8,0}
\definecolor{lsLightWine}{cmyk}{0.3,1,0.6,0}
\definecolor{lsMidWine}{cmyk}{0.54,1,0.65,0.1}
\definecolor{lsDarkWine}{cmyk}{0.58,1,0.70,0.35}
\definecolor{lsSoftGreen}{cmyk}{0.32,0.02,0.72,0}
\definecolor{lsLightGreen}{cmyk}{0.4,0,1,0}
\definecolor{lsMidGreen}{cmyk}{0.55,0,0.9,0.1}
\definecolor{lsRichGreen}{cmyk}{0.6,0,0.9,0.35}
\definecolor{lsDarkGreenOne}{cmyk}{0.85,0.02,0.95,0.38}
\definecolor{lsDarkGreenTwo}{cmyk}{0.85,0.05,1,0.5}
\definecolor{lsNightGreen}{cmyk}{0.88,0.15,1,0.66}
\definecolor{lsLightGray}{cmyk}{0,0,0,0.17}
\definecolor{lsGuidelinesGray}{cmyk}{0,0.04,0,0.45}
\definecolor{lsDOIGray}{cmyk}{0,0,0,0.45}
\definecolor{RED}{cmyk}{0.05,1,0.8,0}
\definecolor{langscicol1}{cmyk}{0.6,0.05,0.05,0}
\definecolor{langscicol2}{cmyk}{0.75,0.15,0,0}
\definecolor{langscicol3}{cmyk}{0.9,0.4,0.05,0}
\definecolor{langscicol4}{cmyk}{0.9,0.5,0.15,0.3}
\definecolor{langscicol5}{cmyk}{1,0.47,0.22,0.68}
\definecolor{langscicol6}{cmyk}{0,0.25,1,0}
\definecolor{langscicol7}{cmyk}{0,0.50,1,0}
\definecolor{langscicol8}{cmyk}{0,0.64,1,0}
\definecolor{langscicol9}{cmyk}{0,0.78,1,0}
\definecolor{langscicol10}{cmyk}{0.05,1,0.8,0}
\definecolor{langscicol11}{cmyk}{0.3,1,0.6,0}
\definecolor{langscicol12}{cmyk}{0.54,1,0.65,0.1}
\definecolor{langscicol13}{cmyk}{0.58,1,0.70,0.35}
\definecolor{langscicol14}{cmyk}{0.32,0.02,0.72,0}
\definecolor{langscicol15}{cmyk}{0.4,0,1,0}
\definecolor{langscicol16}{cmyk}{0.55,0,0.9,0.1}
\definecolor{langscicol17}{cmyk}{0.6,0,0.9,0.35}
\definecolor{langscicol18}{cmyk}{0.85,0.02,0.95,0.38}
\definecolor{langscicol19}{cmyk}{0.85,0.05,1,0.5}
\definecolor{langscicol20}{cmyk}{0.88,0.15,1,0.66}
% \newcommand{\lsptable}[2]{
% \resizebox{#1}{!}{
% \begin{tabularx}{\textwidth}{XXXXXXXXXXXXXXXXXXXX}
% \cellcolor{langscicol1}&\cellcolor{langscicol2}&\cellcolor{langscicol3}&\cellcolor{langscicol4}&\cellcolor{langscicol5}&\cellcolor{langscicol6}&\cellcolor{langscicol7}&\cellcolor{langscicol8}&\cellcolor{langscicol9}&\cellcolor{langscicol10}&\cellcolor{langscicol11}&\cellcolor{langscicol12}&\cellcolor{langscicol13}&\cellcolor{langscicol14}&\cellcolor{langscicol15}&\cellcolor{langscicol16}&\cellcolor{langscicol17}&\cellcolor{langscicol18}&\cellcolor{langscicol19}&\cellcolor{langscicol20}
% \rule{0pt}{#2}
% \end{tabularx}
% }
% }
\input{langsci-series.def}
\ifbool{guidelines}
{\let\lsSeries\guidelines}
{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Cover
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{pst-barcode} % generates ISBN bar codes
\newcommand{\lsCoverFontColor}{white}
\newcommand{\lsCoverBlockColor}{\lsSeriesColor}
\ExplSyntaxOn
\NewDocumentCommand{\lsDetermineMultiauthors}{}
{%
\int_compare:nNnTF
{\g__affiliations_num_authors_int} > {1}
{\booltrue{multiauthors}} {}
}
\NewDocumentCommand{\lsDeterminePaperAuthorAffiliationIndexing}{}
{%
\int_compare:nNnT
{\g__affiliations_num_authors_int} = {1}
{
\SetupAffiliations
{
mark~style = none,
separator~between~affiliations={~\&~}
}
}
}
\ExplSyntaxOff
\newcommand{\lsEditorPrefix}{}
\newcommand{\lsEditorSuffix}{}
\ifbool{collection}{
\AtBeginDocument{
\renewcommand{\newlineCover}{}
\renewcommand{\newlineSpine}{}
\renewcommand{\lsEditorPrefix}{{\Large Edited by\\}}
\renewcommand{\lsEditorSuffix}{(ed.)}
\CountAuthorsFromAffiliations{\@author}
\lsDetermineMultiauthors{}
\ifbool{multiauthors}{\renewcommand{\lsEditorSuffix}{(eds.)}}{}
} %end AtBeginDocument
}{} %end collection
\pgfdeclarelayer{lspcls_bg} % Create a background layer that serves as the canvas for the coloured rectangles.
\pgfsetlayers{lspcls_bg,main} % Order the background layer behind the main layer of TikZ.
\newcommand{\lsFrontPage}{% Front page
\ifcsname tikz@library@external@loaded\endcsname\tikzexternaldisable\fi
\pgfdeclarelayer{lspcls_bg} % Create a background layer that serves as the canvas for the coloured rectangles.
\pgfsetlayers{lspcls_bg,main} % Order the background layer behind the main layer of TikZ.
\thispagestyle{empty}
\begin{tikzpicture}[remember picture, overlay,bg/.style={outer sep=0}]
\begin{pgfonlayer}{lspcls_bg}
\node [ bg,
left=7.5mm of current page.east,
fill=\lsSeriesColor,
minimum width=155mm,
minimum height=225mm
] (CoverColouredRectangleFront) {};
\end{pgfonlayer}
\frontcovertoptext{140mm}{51pt}
\coverbottomtext
\ifbool{draft}{\node [rotate=45,align=center,scale=3,color=white,text opacity=.75] at (current page.center) {\lsCoverTitleFont Draft\\of \today, \currenttime};}{}
\ifbool{openreview}{
\node [rotate=45,align=center,scale=1.5,color=white,text opacity=.75] at (current page.center) {\lsCoverTitleFont Open Review\\Version of \today, \currenttime};}{}
\end{tikzpicture}
\ifcsname tikz@library@external@loaded\endcsname\tikzexternalenable\fi
} % end lsFrontPage
\newcommand{\lsSchmutztitel}{% Schmutztitel