18 lines
353 B
Nix
18 lines
353 B
Nix
{ core, ... }:
|
|
let
|
|
inherit(core) indentation;
|
|
in
|
|
{ ... }:
|
|
mainmatter:
|
|
(
|
|
[
|
|
"{" indentation.more
|
|
"\\cleardoublepage"
|
|
"\\renewcommand*\\chapterpagestyle{scrheadings}"
|
|
"\\pagestyle{scrheadings}"
|
|
"\\pagenumbering{arabic}"
|
|
]
|
|
++ mainmatter
|
|
++ [ indentation.less "}" ]
|
|
)
|