-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkomaChapStyle.sty
568 lines (474 loc) · 14.9 KB
/
komaChapStyle.sty
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
%% %%
% IDENTIFICATION %
% ============== %
% Version of LaTeX required
% -------------------------
\NeedsTeXFormat{LaTeX2e}
% Package declaration
% -------------------
\ProvidesPackage{komaChapStyle}[2019/09/25 Chapter styles for the KOMA-Script bundle. Assumes that scrbook or scrreprt is loaded.]
%% %%
% PRELIMINARY DECLARATIONS %
% ======================== %
% Loading 'kvoptions' package to manage key=value options
% -------------------------------------------------------
\RequirePackage{kvoptions}
% Loading 'etoolbox' for programming facilities
% ---------------------------------------------
\RequirePackage{etoolbox}
%% %%
% OPTIONS %
% ======= %
% Setup key=value options
% -----------------------
\SetupKeyvalOptions{
family=kps,
prefix=kps@
}
% New options
% -----------
\DeclareStringOption{chapterstyle}[default]
\DeclareStringOption{headings}
\DeclareBoolOption[false]{framedChapterHead}
\DeclareBoolOption[false]{framedChapterTitle}
\DeclareBoolOption[false]{overlinedChapterTitle}
\DeclareBoolOption[false]{underlinedChapterTitle}
% Management of not explicitly declared options (default: error)
% ---------------------------------------------
%\DeclareDefaultOption{code}
% Processing the options
% ----------------------
\ProcessKeyvalOptions{kps}\relax
%% %%
% CORE DECLARATIONS %
% ================= %
% Call to specific packages
% -------------------------
\RequirePackage{fmtcount}
\RequirePackage{xcolor}
\definecolor{ChapGrey}{rgb}{0.6,0.6,0.6}
% Define size relative to the KOMA-Script 'headings' option
% ---------------------------------------------------------
% (default: headings=big)
\newcommand*{\tinierSizeHeadings}{\Large}
\newcommand*{\lowerSizeHeadings}{\LARGE}
\newcommand*{\normalSizeHeadings}{\huge}
\newcommand*{\biggerSizeHeadings}{\Huge}
\newcommand*{\hugerSizeHeadings}{\fontsize{30}{36}\selectfont}
\newcommand*{\giganticSizeHeadings}{\fontsize{40}{48}\selectfont}
\newcommand*{\gargantuaSizeHeadings}{\fontsize{60}{72}\selectfont}
\newcommand*{\titanicSizeHeadings}{\fontsize{80}{96}\selectfont}
\ifdefstring{\kps@headings}{big}{% if true
\relax
}{}
% Small size font
\ifdefstring{\kps@headings}{normal}{% if true
\renewcommand*{\tinierSizeHeadings}{\large}
\renewcommand*{\lowerSizeHeadings}{\Large}
\renewcommand*{\normalSizeHeadings}{\LARGE}
\renewcommand*{\biggerSizeHeadings}{\huge}
\renewcommand*{\hugerSizeHeadings}{\Huge}
}{}
% Even smaller
\ifdefstring{\kps@headings}{small}{% if true
\renewcommand*{\tinierSizeHeadings}{\normalsize}
\renewcommand*{\lowerSizeHeadings}{\large}
\renewcommand*{\normalSizeHeadings}{\Large}
\renewcommand*{\biggerSizeHeadings}{\LARGE}
\renewcommand*{\hugerSizeHeadings}{\huge}
}{}
% Defining the styles
% -------------------
% 'default'
\ifdefstring{\kps@chapterstyle}{default}{% if true
\relax
}{% else
\relax
}
% 'standard' (standard class like style)
\ifdefstring{\kps@chapterstyle}{standard}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, bold
\addtokomafont{chapter}{\normalfont\bfseries}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.0\baselineskip]{chapter}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
}{}
%%%%%
% B %
%%%%%
% 'bianchi'
\ifdefstring{\kps@chapterstyle}{bianchi}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter prefix: italic, medium weight, lower size
\addtokomafont{chapterprefix}{\lowerSizeHeadings\mdseries\itshape}
% Chapter number: bigger than prefix, normal font, italic
\newcommand*{\thehackedchapter}{\normalSizeHeadings\normalfont\itshape\thechapter}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thehackedchapter
\IfUsePrefixLine{}{\enskip}}%
}
% Chapter title: frame
\kps@framedChapterTitletrue
}{}
\ifdefstring{\kps@chapterstyle}{BigNum}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.5\baselineskip]{chapter}
% Chapter: italic
\addtokomafont{chapter}{\itshape}
% Chapter prefix: lower font
\addtokomafont{chapterprefix}{\tinierSizeHeadings}
% Chapter number: bigger than prefix, upright
\newcommand*{\thehackedchapter}{\gargantuaSizeHeadings\upshape\thechapter}
% Remove the dot after chapter prefix, chapter number on new line
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{}}\par\nobreak\vskip 2ex
\mbox{\enskip\thehackedchapter
\IfUsePrefixLine{}{\enskip}}%
}
}{}
% 'brotherton' (note: relies on the fmtcount package)
\ifdefstring{\kps@chapterstyle}{brotherton}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, bold
\addtokomafont{chapter}{\normalfont\bfseries}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.0\baselineskip]{chapter}
% Remove the dot after chapter prefix, chapter number in text
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\Numberstring{chapter}
\IfUsePrefixLine{}{\enskip}}%
}
% Restore the default numbering (letters) for appendix
\newcommand*{\appendixmore}{%
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
}
}{}
%%%%%
% C %
%%%%%
% 'chappell'
\ifdefstring{\kps@chapterstyle}{chappell}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, medium weight, smaller size, italic
\addtokomafont{chapter}{\lowerSizeHeadings\normalfont\mdseries\itshape}
% Chapter prefix: same as chapter but upright shape
\setkomafont{chapterprefix}{\usekomafont{chapter}\upshape}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
% Chapter title: overlined
\kps@overlinedChapterTitletrue
}{}
% 'culver'
\ifdefstring{\kps@chapterstyle}{culver}{% if true
% Chapter: normal font, bold, lower size
\addtokomafont{chapter}{\lowerSizeHeadings\normalfont\bfseries}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Chapter numbering: Roman
\renewcommand*{\thechapter}{\Roman{chapter}}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{\mbox{\thechapter\enskip}}
}{}
%%%%%
% D %
%%%%%
% 'dash'
\ifdefstring{\kps@chapterstyle}{dash}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, medium weight, lower size
\addtokomafont{chapter}{\lowerSizeHeadings\normalfont\mdseries}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Remove Chapter/Appendix and the dot, surround the number with dash
\renewcommand*{\chapterformat}{%
\mbox{---\nobreakspace\thechapter\nobreakspace---
\IfUsePrefixLine{}{\enskip}}%
}
}{}
% 'demo'
\ifdefstring{\kps@chapterstyle}{demo}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter prefix: normal font, bold, centered
\addtokomafont{chapterprefix}{\normalfont\bfseries\centering}
% Chapter: medium weight
\addtokomafont{chapter}{\mdseries}
% Ragged: aligned to the right margin
\renewcommand{\raggedchapter}{\raggedleft}
% Remove Chapter/Appendix and the dot, number in text,
\renewcommand*{\chapterformat}{%
\mbox{\Numberstring{chapter}
\IfUsePrefixLine{}{\enskip}}%
}
% Restore the default numbering (letters) for appendix
\newcommand*{\appendixmore}{%
\renewcommand*{\chapterformat}{%
\mbox{\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
}
% Chapter title: frame
\kps@framedChapterTitletrue
}{}
% 'dowding'
\ifdefstring{\kps@chapterstyle}{dowding}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, medium weight, italic
\addtokomafont{chapter}{\normalfont\mdseries\itshape}
% Chapter prefix: medium weight, lower size
\addtokomafont{chapterprefix}{\tinierSizeHeadings\mdseries\upshape}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.5\baselineskip]{chapter}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Remove the dot after chapter prefix, chapter number in text
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\Numberstring{chapter}
\IfUsePrefixLine{}{\enskip}}%
}
% Restore the default numbering (letters) for appendix
\newcommand*{\appendixmore}{%
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
}
}{}
%%%%%
% G %
%%%%%
\ifdefstring{\kps@chapterstyle}{ger}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, bold
\addtokomafont{chapter}{\normalfont\bfseries}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.0\baselineskip]{chapter}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip}}%
}
% Chapter title: frame
\kps@framedChapterHeadtrue
}{}
\ifdefstring{\kps@chapterstyle}{GreyNum}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Increase space between chapter prefix and chapter title
\RedeclareSectionCommand[innerskip=1.5\baselineskip]{chapter}
% Chapter: italic
\addtokomafont{chapter}{\itshape}
% Chapter prefix: lower font
\addtokomafont{chapterprefix}{\tinierSizeHeadings}
% Chapter number: bigger than prefix, grey color, upright
\newcommand*{\thehackedchapter}{\gargantuaSizeHeadings\upshape\color{ChapGrey}\thechapter}
% Remove the dot after chapter prefix, chapter number on new line
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{}}\par\nobreak\vskip 2ex
\mbox{\enskip\thehackedchapter
\IfUsePrefixLine{}{\enskip}}%
}
}{}
%%%%%
% H %
%%%%%
% 'hangnum'
\ifdefstring{\kps@chapterstyle}{hangnum}{% if true
% Chapter: normal font, bold
\addtokomafont{chapter}{\normalfont\bfseries}
% Chapter number: in left margin
\renewcommand*{\chapterformat}{%
\makebox[0pt][r]{\thechapter\enskip\enskip}%
}
}{}
%%%%%
% J %
%%%%%
% 'jenor'
%
%%%%%
% L %
%%%%%
\ifdefstring{\kps@chapterstyle}{lyhne}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter prefix: normal font, small caps
\addtokomafont{chapterprefix}{\tinierSizeHeadings\normalfont\scshape}
% Chapter number: bigger than prefix, normal font, italic
\newcommand*{\thehackedchapter}{\lowerSizeHeadings\normalfont\bfseries\thechapter}
% Chapter: lower font
\addtokomafont{chapter}{\tinierSizeHeadings}
% Ragged: aligned to the right margin
\renewcommand{\raggedchapter}{\raggedleft}
% Remove the dot after chapter prefix, chapter number in the right margin
\renewcommand*{\chapterformat}{%
\mbox{\chapapp}%
\makebox[0pt][l]{\nobreakspace\thehackedchapter}%
}
% Chapter title: frame
\kps@framedChapterTitletrue
}{}
%%%%%
% M %
%%%%%
% 'madsen'
\ifdefstring{\kps@chapterstyle}{madsen}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter prefix: normal font, small caps
\addtokomafont{chapterprefix}{\lowerSizeHeadings\normalfont\scshape}
% Chapter number: bigger than prefix, normal font, italic
\newcommand*{\thehackedchapter}{\giganticSizeHeadings\normalfont\bfseries\thechapter}
% Ragged: aligned to the right margin
\renewcommand{\raggedchapter}{\raggedleft}
% Remove the dot after chapter prefix, chapter number in the right margin
\renewcommand*{\chapterformat}{%
\mbox{\chapapp}%
\makebox[0pt][l]{\nobreakspace\thehackedchapter}%
}
% Chapter title: overlined
\kps@overlinedChapterTitletrue
}{}
%%%%%
% P %
%%%%%
\ifdefstring{\kps@chapterstyle}{pedersen}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, lower font, italic
\addtokomafont{chapter}{\normalfont\lowerSizeHeadings\itshape}
% Chapter prefix: right-aligned
\addtokomafont{chapterprefix}{\raggedleft}
% Chapter number: bigger than prefix
\newcommand*{\thehackedchapter}{\gargantuaSizeHeadings\thechapter}
% Remove the dot and the chapter prefix, chapter number in the right margin
\renewcommand*{\chapterformat}{%
\makebox[0pt][l]{\nobreakspace\thehackedchapter}%
}
}{}
%%%%%
% V %
%%%%%
\ifdefstring{\kps@chapterstyle}{VZ23}{% if true
% Write chapter prefix
\KOMAoption{chapterprefix}{true}
% Chapter: normal font, bold
\addtokomafont{chapter}{\normalfont\bfseries}
% Ragged: centered
\renewcommand{\raggedchapter}{\centering}
% Remove the dot and the chapter prefix, keep the chapter number
\renewcommand*{\chapterformat}{%
\mbox{\thechapter\IfUsePrefixLine{}{\enskip}}%
}
% Chapter title: overlined
\kps@overlinedChapterTitletrue
}{}
%%%%%
% W %
%%%%%
\ifdefstring{\kps@chapterstyle}{wilsondob}{% if true
% Chapter: normal font, italic
\addtokomafont{chapter}{\normalfont\normalSizeHeadings\itshape}
% Ragged: right-aligned
\renewcommand{\raggedchapter}{\raggedleft}
% Remove the dot after chapter prefix
\renewcommand*{\chapterformat}{%
\mbox{\chapappifchapterprefix{\nobreakspace}\thechapter
\IfUsePrefixLine{}{\enskip\enskip}}%
}
}{}
% Generic styles
% --------------
% Framed chapter heading
\ifbool{kps@framedChapterHead}{% if true
% Draw lines before and after the chapter text
\renewcommand{\chapterlinesformat}[3]{%
\rule{\textwidth}{1pt}\nopagebreak\\%
\raggedchapter
\@hangfrom{#2}#3\nopagebreak%
\rule{\textwidth}{1pt}
}
\renewcommand{\chapterlineswithprefixformat}[3]{%
\rule{\textwidth}{1pt}\nopagebreak\\%
\raggedchapter
#2%
#3\nopagebreak%
\rule{\textwidth}{1pt}
}
}{}
% Framed chapter title
\ifbool{kps@framedChapterTitle}{% if true
% Draw lines before and after the chapter text
\renewcommand{\chapterlinesformat}[3]{%
\raggedchapter
\rule{\textwidth}{1pt}\nopagebreak\\%
\@hangfrom{#2}#3\nopagebreak%
\rule{\textwidth}{1pt}
}
\renewcommand{\chapterlineswithprefixformat}[3]{%
\raggedchapter
#2%
\rule{\textwidth}{1pt}\nopagebreak\\%
#3\nopagebreak%
\rule{\textwidth}{1pt}
}
}{}
% Overlined chapter title
\ifbool{kps@overlinedChapterTitle}{% if true
% Draw line before the chapter text
\renewcommand{\chapterlinesformat}[3]{%
\raggedchapter
\rule{\textwidth}{1pt}\nopagebreak\\%
\@hangfrom{#2}#3%
}
\renewcommand{\chapterlineswithprefixformat}[3]{%
\raggedchapter
#2%
\rule{\textwidth}{1pt}\nopagebreak\\%
#3%
}
}{}
% Underlined chapter title
\ifbool{kps@underlinedChapterTitle}{% if true
% Draw line after the chapter text
\renewcommand{\chapterlinesformat}[3]{%
\raggedchapter
\@hangfrom{#2}#3\nopagebreak%
\rule{\textwidth}{1pt}
}
\renewcommand{\chapterlineswithprefixformat}[3]{%
\raggedchapter
#2#3\nopagebreak%
\rule{\textwidth}{1pt}
}
}{}
% TEMPLATE
% --------
%\ifdefstring{\kps@chapterstyle}{style}{% if true
% %TODO
%}{}