diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-04 12:27:10 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-04 12:27:10 +0200 |
commit | 7e6381e49ba28f557093bbe4134f6c452a9a7927 (patch) | |
tree | 8bd26c1fc705ab18d85096ab739627488a5d9401 | |
parent | feat(templates/latex/presentation): Init (diff) | |
download | flake-templates-7e6381e49ba28f557093bbe4134f6c452a9a7927.tar.gz flake-templates-7e6381e49ba28f557093bbe4134f6c452a9a7927.zip |
fix(templates/latex/academia/main.tex): Default to `draft` mode
-rw-r--r-- | templates/latex/academia/%INIT_APPLICATION_NAME.tex | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/latex/academia/%INIT_APPLICATION_NAME.tex b/templates/latex/academia/%INIT_APPLICATION_NAME.tex index 2fc420d..72db095 100644 --- a/templates/latex/academia/%INIT_APPLICATION_NAME.tex +++ b/templates/latex/academia/%INIT_APPLICATION_NAME.tex @@ -1,7 +1,10 @@ % LTeX: language=%INIT_LANGUAGE -%\documentclass[a4paper, 12pt, nosolutions]{report} -% \documentclass[a4paper, 12pt, onecolumn]{scrreprt} -\documentclass[a4paper, 12pt, twocolumn]{report} +\documentclass[ + a4paper, 12pt, twocolumn, + % nosolutions, + draft, + % final, +]{report} \input{headers/preamble.tex} \input{headers/preamble_local.tex} |