diff options
author | Jonas Smedegaard <dr@jones.dk> | 2015-01-02 01:46:35 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2015-01-02 01:46:35 +0100 |
commit | dfc7304e48e6df9053d1861fd67559c3751c5a33 (patch) | |
tree | 413fda5f9fb0535be0488dd3e355df9c8e0378c7 | |
parent | cd8aa3a1b95f3dd0d3e2cb3dfe9214ccda2e6e82 (diff) |
Set pagestyle=plain.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | template.tex | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -31,7 +31,7 @@ args_meta += -V date="" args_latex += --template=template.tex --latex-engine=xelatex args_latex += -H header.tex -B before.tex -A after.tex args_latex += -V mainfont="Lora" -V sansfont="Quattrocento Sans" -V monofont="Inconsolata" -args_latex += -V documentclass=memoir -V headstyles=komalike -V chapterstyle=ell +args_latex += -V documentclass=memoir -V pagestyle=plain -V headstyles=komalike -V chapterstyle=ell args_latex += -V classoption=titlepage -V classoption=$(if $(final),final,draft) flavors = a4 book ebook args_a4 = -V papersize=a4paper -V fontsize=10pt -V classoption=oneside diff --git a/template.tex b/template.tex index 5bd5de7..43aaaf3 100644 --- a/template.tex +++ b/template.tex @@ -162,6 +162,9 @@ $header-includes$ $endfor$ \begin{document} +$if(pagestyle)$ % for documentclass memoir page header/footer styling +\pagestyle{$pagestyle$} +$endif$ $if(headstyles)$ % for documentclass memoir headline styling \headstyles{$headstyles$} $endif$ |