The KOMA-pagestyle-package: This File Has Version Number V1.3e, Last Revised 2020/02/27
The KOMA-pagestyle-package: This File Has Version Number V1.3e, Last Revised 2020/02/27
Contents
1 Introduction 2
1.1 Interface for all users . . . . . . . . . . . . . . . . . . . . . . 2
1.2 Interface for experts . . . . . . . . . . . . . . . . . . . . . . 4
1.3 Configuration file . . . . . . . . . . . . . . . . . . . . . . . . 5
1.4 Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2 Implementation 5
2.1 Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
2.2 Some Initialisation . . . . . . . . . . . . . . . . . . . . . . . 6
2.3 Predefinitions . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.4 Expert-Pagestyle-Definition-Interface . . . . . . . . . . . . . 7
2.5 User-Pagestyle-Definition-Interface . . . . . . . . . . . . . . 12
2.6 Width of head and foot . . . . . . . . . . . . . . . . . . . . 13
2.7 Fonts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
2.8 Extended multilanguage formats . . . . . . . . . . . . . . . 16
2.9 Configurationfile . . . . . . . . . . . . . . . . . . . . . . . . 17
2.10 End . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
∗
This file has version number v1.3e, last revised 2020/02/27.
1
1 Introduction
There is a simple user-interface and a expert-interface. Using the user-
interface you can define a lot of different pagestyles. But there are combi-
nations, you cannot define. Using the expert-interface you can do allmost
all you may ever want. To do more, you should learn more about defining
macros yourself.
2
headright headmiddle headleft headleft headmiddle headright
Using one optional argument [hilw i] (means i nner l ine w idth) you get a
separationline between head and text and between text and foot like this
(ilw =0.5pt):
Using both optional arguments [holw i] (means outer l ine w idth) and
[hilw i] you get a separationline between head and text and between
text and foot and a line above head and below foot like this (olw =2pt,
ilw =0.5pt):
3
headright headmiddle headleft headleft headmiddle headright
You can define new pagestyles and you can redefine existing pagestyles.
If you redefine an active pagestyle, this doesn’t change the actual
shown pagestyle. To activate you have to use always a \pagestyle- or
\thispagestyle-command.
You can change the standard pagestyle headings to. If you want to
change pagestyle myheadings, you should use the star-version of the
command:
\deftripstyle*{hnamei}[holw i][hilw i] {hheadlefti}{hheadmiddlei}
{hheadrighti}{hfootlefti}{hfootmiddlei}{hfootrighti} this defines a my-
version pagestyle. This means, section- and chapter-commands or perhaps
\tableofcontents don’t change the marks. Only \markboth and
\markright change them. But if you don’t use \headmark, \leftmark or
\rightmark, star- and starless version of \deftripstyle are almost the
same.
(toplinelength,toplinewidth)
{hevenpagehead i}{hoddpagehead i}{honesidepagehead i}
(headseplinelength,headseplinewidth)
These five parts have to be one argument! So you should put them together
in group-braces (“{” and “}”).
4
foot-definition analogous defines the foot at the new pagestyle.
\newpagestyle Command \newpagestyle{hnamei}{hhead-definitioni}{hfoot-definitioni}
defines a real new pagestyle. If there’s already a pagestyle named name,
you’ll get an error. Otherwise it’s the same like \defpagestyle.
\renewpagestyle Command \renewpagestyle{hnamei}{hhead-definitioni}{hfoot-definitioni}
redefines a old pagestyle. If there isn’t a pagestyle named name, you’ll get
an error. Otherwise it’s the same like \defpagestyle.
\providepagestyle Command \providepagestyle{hnamei}{hhead-definitioni}{hfoot-definitioni}
defines a new pagestyle, if it is realy new. If there is already a pagestyle
named name, it does nothing (but writing an info to the log file).
Otherwise it’s the same like \defpagestyle.
You may use the user-interface-macros \pagemark and \headmark, too.
1.4 Example
The pagestyles of this documentation was defined using:
\renewpagestyle{headings}{(\textwidth,1pt)%
{\headmark\hfill}{\hfill\headmark}{\hfill\headmark\hfill}%
(\textwidth,.4pt)}%
{(\textwidth,.4pt)%
{\pagemark\hfill%
Copyright \copyright\ Markus Kohm, 1994--2002}%
{Package \texttt{scrpage}\hfill\pagemark}%
{\rlap{Package \texttt{scrpage}}\hfill%
Copyright \copyright\ Markus Kohm, 1994--2002\hfill%
\llap\pagemark}%
(\textwidth,1pt)}
\renewpagestyle{plain}{(\textwidth,1pt)%
{\hfill}{\hfill}{\hfill}%
(\textwidth,.4pt)}%
{(\textwidth,.4pt)%
{\pagemark\hfill}%
{\hfill\pagemark}%
{\hfill\pagemark\hfill}%
(\textwidth,1pt)}
\pagestyle{headings} % activate new version
2 Implementation
5
1 h∗scrpagei
2.1 Options
headinclude scrpage knows some options. They are similar to the KOMA-script-classes.
headexclude To work with and without the KOMA-script-classes their definitions are not
footinclude quite simple.
footexclude 2 \DeclareOption{headinclude}{%
3 \PassOptionsToPackage{headinclude}{typearea}%
4 }
5 \DeclareOption{headexclude}{%
6 \PassOptionsToPackage{headexclude}{typearea}%
7}
8 \DeclareOption{footinclude}{%
9 \PassOptionsToPackage{footinclude}{typearea}%
10 }
11 \DeclareOption{footexclude}{%
12 \PassOptionsToPackage{footexclude}{typearea}%
13 }
6
28 \fi
29 \@tempa
2.3 Predefinitions
There are some commands, you can use at pagestyle-definition.
2.4 Expert-Pagestyle-Definition-Interface
The pagestyle-definition-interface for experts is not as easy as the simple
interface we’ll define later. But it’s more flexible. We’ll later use it to define
the pagestyle-definition-interface for users.
\@defpagestyle Now the we can define the head and the foot. Before version 2.5 we have
distinguished one- and two-side definitions while loading the package and
have had all the definitions of \@mkboth, \chaptermark, \sectionmark,
and \subsectionmark at the definition of the page style. This was a lot of
code:
36 \if@twoside
37 \def\@defpagestyle[#1]#2#3#4{%
38 \expandafter\def\csname ps@#2\endcsname{%
39 \def\@tempa{+}%
40 \def\@tempb{#1}%
41 \ifx\@tempa\@tempb
42 \let\@mkboth\markboth
43 \if@chapter
44 \def\chaptermark####1{%
45 \markboth {\ifnum \c@secnumdepth >\m@ne%
46 \if@mainmatter\chaptermarkformat\fi\fi ####1}{%
47 \ifnum \c@secnumdepth >\m@ne%
48 \if@mainmatter\chaptermarkformat\fi\fi ####1}}%
7
49 \def\sectionmark####1{%
50 \markright {\ifnum \c@secnumdepth >\z@%
51 \sectionmarkformat\fi ####1}}%
52 \else
53 \def\sectionmark####1{%
54 \markboth {\ifnum \c@secnumdepth >\z@%
55 \if@mainmatter\sectionmarkformat\fi\fi ####1}{%
56 \ifnum \c@secnumdepth >\z@%
57 \if@mainmatter\sectionmarkformat\fi\fi ####1}}%
58 \def\subsectionmark####1{%
59 \markright {\ifnum \c@secnumdepth >\@ne%
60 \subsectionmarkformat\fi ####1}}%
61 \fi
62 \else
63 \let\@mkboth\@gobbletwo
64 \if@chapter
65 \def\chaptermark####1{}%
66 \else
67 \def\subsectionmark####1{}%
68 \fi
69 \def\sectionmark####1{}%
70 \fi
71 \def@twosidehead#3
72 \def@twosidefoot#4
73 }
74 }
75 \else
76 \def\@defpagestyle[#1]#2#3#4{%
77 \expandafter\def\csname ps@#2\endcsname{%
78 \def\@tempa{+}%
79 \def\@tempb{#1}%
80 \ifx\@tempa\@tempb
81 \let\@mkboth\markboth
82 \if@chapter
83 \def\chaptermark####1{%
84 \markright {\ifnum \c@secnumdepth >\m@ne%
85 \if@mainmatter\chaptermarkformat\fi\fi ####1}}%
86 \def\sectionmark####1{}%
87 \else
88 \def\sectionmark####1{%
89 \markright{\ifnum \c@secnumdepth >\z@%
90 \if@mainmatter\sectionmarkformat\fi\fi ####1}}%
91 \def\subsectionmark####1{}%
92 \fi
93 \else
94 \let\@mkboth\@gobbletwo
95 \if@chapter
96 \def\chaptermark####1{}%
97 \else
8
98 \def\subsectionmark####1{}%
99 \fi
100 \def\sectionmark####1{}%
101 \fi
102 \def@onesidehead#3
103 \def@onesidefoot#4
104 }
105 }
106 \fi
\def@twosidehead
\def@@twosidehead 107 \def\def@twosidehead(#1,#2)#3#4#5(#6,#7){%
108 \def\@evenhead{\let\headmark\leftmark%
109 \hss\hskip\@evenheadshift\vbox{\hsize=\@headwidth\relax%
110 \hf@rule{#1}{#2}{\@headwidth}%
111 \vskip#2
112 \vskip\baselineskip
113 \hb@xt@\@headwidth{{%
114 \headfont\strut #3}}%
115 \hf@rule{#6}{#7}{\@headwidth}%
116 }\hskip\@oddheadshift\hss}%
117 \def\@oddhead{\let\headmark\rightmark
118 \hss\hskip\@oddheadshift\vbox{\hsize=\@headwidth\relax
119 \hf@rule{#1}{#2}{\@headwidth}%
120 \vskip#2%
121 \vskip\baselineskip
122 \hb@xt@\@headwidth{{%
123 \headfont\strut #4}}%
124 \hf@rule{#6}{#7}{\@headwidth}%
125 }\hskip\@evenheadshift\hss}%
126 }
127 % \end{macro}
128 % \end{macro}
129 % \begin{macro}{\def@onesidehead}
130 % \changes{v1.3}{2001/03/30}{Use of \cmd\@headwidth instead of
131 % \cs{textwidth}}
132 % \begin{macro}{\def@@onesidehead}
133 % \begin{macro}{\def@@@onesidehead}
134 % Next the onesided head:
135 % \begin{macrocode}
136 \def\def@onesidehead(#1,#2)#3#4#5(#6,#7){%
137 \def\@evenhead{}%
138 \def\@oddhead{\let\headmark\rightmark
139 \hss\hskip\@oddheadshift\vbox{\hsize=\@headwidth\relax
140 \hf@rule{#1}{#2}{\@headwidth}%
141 \vskip#2%
142 \vskip\baselineskip
143 \hb@xt@\@headwidth{{%
144 \headfont\strut #5}}%
9
145 \hf@rule{#6}{#7}{\@headwidth}%
146 }\hskip\@evenheadshift\hss}%
147 }
\def@onesidefoot
\def@@onesidefoot 160 \def\def@onesidefoot(#1,#2)#3#4#5(#6,#7){%
\def@@@onesidefoot 161 \def\@evenfoot{}%
162 \def\@oddfoot{\let\headmark\rightmark
163 \hss\hskip\@oddfootshift\vbox{\hsize=\@footwidth\relax
164 \topfoot@rule{#1}{#2}\hb@xt@\@footwidth{{%
165 \headfont\footfont\strut #5}}
166 \botfoot@rule{#6}{#7}}\hskip\@evenfootshift\hss}%
167 }
\botfoot@rule
173 \newcommand\botfoot@rule[2]{%
174 \@tempdima-\baselineskip\advance\@tempdima by .3\normalbaselineskip
175 \advance\@tempdima by #2
176 \vskip\@tempdima\hf@rule{#1}{#2}{\@footwidth}%
177 }
\hf@rule
178 \newcommand\hf@rule[3]{%
179 \setlength{\@tempdimb}{#1}%
180 \setlength{\@tempdimb}{.5\@tempdimb}%
181 \hb@xt@#3{%
10
182 \hfill%
183 \llap{\vrule\@depth#2\@height\z@\@width\@tempdimb}%
184 \rlap{\vrule\@depth#2\@height\z@\@width\@tempdimb}%
185 \hfill%
186 }%
187 }
11
214 {There is no pagestyle named ‘‘#1’’.\MessageBreak%
215 Use \protect\defpagestyle, \protect\newpagestyle or
216 \protect\providepagestyle.}%
217 \else
Then we can use the already defined \@defpagestyle.
218 \@defpagestyle[#1]{#2}{#3}{#4}%
219 \fi
220 }
2.5 User-Pagestyle-Definition-Interface
The pagestyle-definition-interface for users is much easier than the expert-
version. Using the expert-macros, the definition is easy, too.
12
or perhaps two optional arguments:
\@@deftripstyle
242 \def\@@deftripstyle[#1]#2[#3]{%
Ok, now we have the problem, that there can be only 9 arguments. So we
have to distinguish the star-versions by a macro:
243 \def\@tempa{#1}%
244 \@ifnextchar[%]
245 {\@@@deftripstyle#2[#3]}%
246 {\@@@deftripstyle#2[\z@][#3]}}
13
one macro and save them at macros. The set macros have an optional
argument: the shift.
For definition of symbolic length values there is the macro
\settowidthof. And to define a macro with this value, there is
\deftowidthof.
275 \newcommand*{\settowidthof}[2]{%
276 \edef\@tempa{#2}%
277 \edef\@tempb{paper}\ifx\@tempa\@tempb
278 \setlength{#1}{\paperwidth}%
279 \else\edef\@tempb{text}\ifx\@tempa\@tempb
280 \setlength{#1}{\textwidth}%
281 \else\edef\@tempb{textwithmarginpar}\ifx\@tempa\@tempb
282 \setlength{#1}{\textwidth}%
283 \addtolength{#1}{\marginparwidth}%
284 \addtolength{#1}{\marginparsep}%
285 \else\edef\@tempb{head}\ifx\@tempa\@tempb
286 \setlength{#1}{\@headwidth}%
287 \else\edef\@tempb{foot}\ifx\@tempa\@tempb
288 \setlength{#1}{\@footwidth}%
289 \else\edef\@tempb{headtopline}\ifx\@tempa\@tempb
290 \setlength{#1}{\scr@headabove@linelength}%
291 \else\edef\@tempb{headsepline}\ifx\@tempa\@tempb
292 \setlength{#1}{\scr@headbelow@linelength}%
293 \else\edef\@tempb{footsepline}\ifx\@tempa\@tempb
294 \setlength{#1}{\scr@footabove@linelength}%
295 \else\edef\@tempb{footbotline}\ifx\@tempa\@tempb
296 \setlength{#1}{\scr@footbelow@linelength}%
297 \else\edef\@tempb{page}\ifx\@tempa\@tempb
298 \setlength{#1}{\paperwidth}%
299 \begingroup\expandafter\expandafter\expandafter\endgroup
300 \expandafter\ifx\csname ta@bcor\endcsname\relax\else
301 \addtolength{#1}{-\ta@bcor}%
302 \fi
303 \else
304 \setlength{#1}{#2}%
305 \fi
306 \fi
307 \fi
308 \fi
309 \fi
310 \fi
311 \fi
312 \fi
313 \fi
314 \fi
315 }
316 \newcommand*{\deftowidthof}[2]{%
317 \edef\@tempa{#2}\edef\@tempb{autohead}\ifx\@tempa\@tempb
318 \expandafter\def\csname #1\endcsname{\@headwidth}%
14
319 \else\edef\@tempb{autofoot}\ifx\@tempa\@tempb
320 \expandafter\def\csname #1\endcsname{\@footwidth}%
321 \else
322 \settowidthof{\@tempdima}{#2}%
323 \expandafter\edef\csname #1\endcsname{\the\@tempdima}%
324 \fi
325 \fi
326 }
327 \newcommand*{\setheadwidth}[2][\@empty]{%
328 \set@hf@width{head}{#1}{#2} %
329 }
330 \newcommand*{\setfootwidth}[2][\@empty]{%
331 \set@hf@width{foot}{#1}{#2}%
332 }
333 \newcommand*{\set@hf@width}[3]{%
334 \settowidthof{\@tempdima}{#3}%
335 \ifdim\@tempdima>\paperwidth
336 \PackageWarning
337 {scrpage}%
338 {You’ve set width of #1 to a value\MessageBreak
339 greater than width of page!\MessageBreak%
340 I‘ll reduce width of #1 to width of page}%
341 \setlength{\@tempdima}{\paperwidth}%
342 \else
343 \ifdim\@tempdima<\z@
344 \PackageWarning
345 {scrpage}%
346 {You’ve set width of #1 to negative value!\MessageBreak%
347 I’ll set it to 0pt}%
348 \setlength{\@tempdima}{\z@}%
349 \fi
350 \fi
351 \expandafter\edef\csname @#1width\endcsname{\the\@tempdima}%
352 \edef\@tempa{#2}%
353 \setlength{\@tempdima}{\textwidth}%
354 \addtolength{\@tempdima}{-\csname @#1width\endcsname}%
355 \ifx\@tempa\@empty
356 \if@twoside
357 \setlength{\@tempdimb}{.3333333333\@tempdima}%
358 \else
359 \setlength{\@tempdimb}{.5\@tempdima}%
360 \fi
361 \else
362 \setlength{\@tempdimb}{#2}%
363 \fi
364 \addtolength{\@tempdima}{-\@tempdimb}%
365 \ifdim\@tempdimb<\z@
366 \setlength{\@tempdimb}{-\@tempdimb}%
367 \expandafter\edef\csname @odd#1shift\endcsname{-\the\@tempdimb}%
15
368 \else
369 \expandafter\edef\csname @odd#1shift\endcsname{\the\@tempdimb}%
370 \fi
371 \ifdim\@tempdima<\z@
372 \setlength{\@tempdima}{-\@tempdima}%
373 \expandafter\edef\csname @even#1shift\endcsname{-\the\@tempdima}%
374 \else
375 \expandafter\edef\csname @even#1shift\endcsname{\the\@tempdima}%
376 \fi
377 }
\@headwidth The values of width and shift of head and foot are saved at internal macros.
\@footwidth 378 \newcommand*{\@headwidth}{\textwidth}%
\@oddheadshift 379 \newcommand*{\@oddheadshift}{\z@}%
\@evenheadshift 380 \newcommand*{\@evenheadshift}{\z@}%
\@oddfootshift 381 \newcommand*{\@footwidth}{\textwidth}%
\@evenfootshift 382 \newcommand*{\@oddfootshift}{\z@}%
383 \newcommand*{\@evenfootshift}{\z@}%
2.7 Fonts
\pnumfont We have to define a macro defining the font, used by \pagemark. Because
of this macro may already be defined by a KOMA-script-class, we have to
do this, using \providecommand
384 \providecommand*{\pnumfont}{\normalfont}
16
2.9 Configurationfile
Not last and not least we include the local configuration-file scrpage.cfg,
if it exists.
395 \InputIfFileExists{scrpage.cfg}
396 {\typeout{*************************************^^J%
397 * Local config file scrpage.cfg used^^J%
398 *************************************}}
399 {}
2.10 End
\KOMAScript Das KOMA - Script-Logo wird in allen KOMA - Script-Paketen und -Klassen
definiert, falls es nicht bereits definiert ist. Dabei werden die Versalien
moderat gesperrt. Es wird jedoch darauf verzichtet, die Versalien etwa
einen Punkt kleiner zu setzen, da das Logo aktiv ausgezeichnet erscheinen
soll.
400 \@ifundefined{KOMAScript}{%
401 \DeclareRobustCommand{\KOMAScript}{\textsf{K\kern.05em O\kern.05em%
402 M\kern.05em A\kern.1em-\kern.1em Script}}}{}
403 h/scrpagei
Index
Numbers written in italic refer to the page where the corresponding entry
is described; numbers underlined refer to the code line of the definition;
numbers in roman refer to the code lines where the entry is used.
Symbols C
\@@@deftripstyle . . . . . . . . . . 247 \chaptermarkformat . . . . . . . . 387
\@@deftripstyle . . . . . . . . . . . 242
D
\@defpagestyle . . . . . . . . . . . . . 36
\def@@@onesidefoot . . . . . . . .
160
\@deftripstyle . . . . . . . . . . . . 238 \def@@@twosidefoot . . . . . . . .
148
\@evenfootshift . . . . . . . . . . . 378 \def@@onesidefoot . . . . . . . . .
160
\@evenheadshift . . . . . . . . . . . 378 \def@@twosidefoot . . . . . . . . .
148
\@footwidth . . . . . . . . . . . . . . 378 \def@@twosidehead . . . . . . . . .
107
\@headwidth . . . . . . . . . . . . . . 378 \def@onesidefoot . . . . . . . . . .
160
\@newpagestyle . . . . . . . . . . . . 192 \def@twosidefoot . . . . . . . . . .
148
\@oddfootshift . . . . . . . . . . . . 378 \def@twosidehead . . . . . . . . . .
107
\@oddheadshift . . . . . . . . . . . . 378 \defpagestyle . . . . . . . . . . . . 4, 32
\deftowidthof . . . . . . . . . . . .. 275
\@providepagestyle . . . . . . . . 225
\deftripstyle . . . . . . . . . . . 2, 234
\@renewpagestyle . . . . . . . . . . 208
\deftripstyle* . . . . . . . . . . .... 2
B F
\botfoot@rule . . . . . . . . . . . . . 173 footexclude (Option) ......... 2
17
\footfont . . . . . . . . . . . . . . . . . . 2 footinclude . . . . . . . . . . . . . . 2
footinclude (Option) . . . . . . . . . 2 headexclude . . . . . . . . . . . . . . 2
headinclude . . . . . . . . . . . . . . 2
H
headexclude (Option) . . . . . .... 2 P
\headfont . . . . . . . . .. . . . . 2, 385 \pagemark . . . . . . . . . . . . . . . 2, 31
headinclude (Option) . . . . . .... 2 \partmarkformat . . . . . . . . . . . 387
\headmark . . . . . . . . .. . . . . . 2, 30 \pnumfont . . . . . . . . . . . . . . 2, 384
\hf@rule . . . . . . . . . .. . . . . . . 178 \providepagestyle . . . . . . . 5, 221
I R
\if@chapter . . . . . . . . . . . . . . . 16 \renewpagestyle . . . . . . . . . 5, 204
\if@mainmatter . . . . . . . . . . . . . 23
S
K \sectionmarkformat . . . . . . . . 387
\KOMAScript . . . . . . . . . . . . . . 400 \set@hf@width . . . . . . . . . . . . . 275
\setfootwidth . . . . . . . . . . . . . 275
N \setheadwidth . . . . . . . . . . . . . 275
\newpagestyle . . . . . . . . . . . 5, 188 \settowidthof . . . . . . . . . . . . . 275
\subsectionmarkformat . . . . . . 387
O
Optionen: T
footexclude . . . . . . . . . . . . . . 2 \topfoot@rule . . . . . . . . . . . . . 168
Change History
2020/02/27 increased. . . . . . . . . . . . . . 16
General: comment and guide v1.2
changes only . . . . . . . . . . . . 1 \if@mainmatter: Definition
changed . . . . . . . . . . . . . . . 6
v1.0b v1.2a
\@defpagestyle: Dot deleted \@renewpagestyle: Avoid to
after number at chapter- and define pagestyle as \relax if
sectionmark . . . . . . . . . . . . 7 it wasn’t defined (Thanks to
Use CJK at \chaptermark, Bernd). . . . . . . . . . . . . . . 11
\sectionmark and v1.3
\subsectionmark . . . . . . . . 7 \@evenfootshift: New . . . . . 16
v1.1 \@evenheadshift: New . . . . . 16
General: \hbox to changed into \@footwidth: New . . . . . . . . . 16
\hb@xt@. . . . . . . . . . . . . . . 6 \@headwidth: New . . . . . . . . . 16
\chaptermarkformat: Space \@oddfootshift: New . . . . . . 16
after chapternumber \@oddheadshift: New . . . . . . 16
increased. . . . . . . . . . . . . . 16 \def@@twosidehead: Use of
\sectionmarkformat: Space \@headwidth instead of
after sectionnumber \textwidth . . . . . . . . . . . . 9
increased. . . . . . . . . . . . . . 16 \def@onesidefoot: Use of
\subsectionmarkformat: Space \@footwidth instead of
after subsectionnumber \textwidth . . . . . . . . . . . 10
18
\def@twosidefoot: Use of “paper”, “text”,
\@footwidth instead of ‘textwidthmarginpar” . . . . 13
\textwidth . . . . . . . . . . . 10
v1.3e
\hf@rule: New, third parameter
“boxwidth” . . . . . . . . . . . 10 \@defpagestyle: usage of
\set@hf@width: New . . . . . . . 13 \if@mainmatter fixed . . . . . 7
\setfootwidth: New . . . . . . . 13
General: removed from
\setheadwidth: New . . . . . . . 13
KOMA - Script . . . . . . . . . . . 6
v1.3a
\set@hf@width: symbolic values \partmarkformat: New . . . . . 16
19