Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

29 lines
725 B
Nix

{ context, core, thesis, ... }:
let
inherit(core) indentation;
in
{ configuration, ... }:
backmatter:
(
[
"{" indentation.more
]
++ [
"\\renewcommand*\\chapterpagestyle{empty}"
"\\pagestyle{empty}"
"\\renewcommand*\\thechapter{}"
"\\renewcommand*\\thesection{}"
"\\renewcommand*\\thesubsection{}"
"\\renewcommand*\\thesubsubsection{}"
]
++ (
if configuration.concise or false
then
[ ]
else
[ "\\newpage\\unrotatePages\\thispagestyle{empty}\\mbox{}" ]
)
++ backmatter
++ [ indentation.less "}" ]
)