Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

20 lines
420 B
Nix

{ context, core, ... }:
let
inherit(core) indentation;
debug = core.debug ( context ++ [ "mainMatter" ] );
in
{ ... }:
mainmatter:
(
[
"{" indentation.more
"\\cleardoublepage"
"\\renewcommand*\\chapterpagestyle{scrheadings}"
"\\pagestyle{scrheadings}"
"\\pagenumbering{arabic}"
]
++ mainmatter
++ [ indentation.less "}" ]
)