diff options
-rw-r--r-- | _report.yml | 1 | ||||
-rw-r--r-- | _templates/doc-class.tex | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/_report.yml b/_report.yml index 391f970..0797f3a 100644 --- a/_report.yml +++ b/_report.yml @@ -12,6 +12,7 @@ format: csquotes: true papersize: a4 template-partials: + - ../_templates/doc-class.tex - ../_templates/title.tex include-in-header: diff --git a/_templates/doc-class.tex b/_templates/doc-class.tex new file mode 100644 index 0000000..b276cee --- /dev/null +++ b/_templates/doc-class.tex @@ -0,0 +1,20 @@ +\documentclass[ +$if(fontsize)$ + $fontsize$, +$endif$ +$if(papersize)$ + $papersize$paper, +$endif$ +$if(beamer)$ + ignorenonframetext, +$if(handout)$ + handout, +$endif$ +$if(aspectratio)$ + aspectratio=$aspectratio$, +$endif$ +$endif$ +$for(classoption)$ + $classoption$$sep$, +$endfor$ +]{$documentclass$}
\ No newline at end of file |