diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-03 16:01:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-03 16:01:24 +0200 |
commit | 9e6405921d97b227df00cfabcbd52368110ff9e5 (patch) | |
tree | 48a8ff5934b9652c7ca18f1ce8acdeb8909d859c | |
parent | fix(common/flake/latex): Remove unneeded import follow (diff) | |
download | flake-templates-9e6405921d97b227df00cfabcbd52368110ff9e5.tar.gz flake-templates-9e6405921d97b227df00cfabcbd52368110ff9e5.zip |
fix(template/latex/academia): Default to `report` document class
The current `lpm.toml` also generates `\chapter`s, which don't work with the article class. Thus switch to the `report` document class.
-rw-r--r-- | templates/latex/academia/%INIT_APPLICATION_NAME.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/latex/academia/%INIT_APPLICATION_NAME.tex b/templates/latex/academia/%INIT_APPLICATION_NAME.tex index a5fe645..2fc420d 100644 --- a/templates/latex/academia/%INIT_APPLICATION_NAME.tex +++ b/templates/latex/academia/%INIT_APPLICATION_NAME.tex @@ -1,7 +1,7 @@ % LTeX: language=%INIT_LANGUAGE %\documentclass[a4paper, 12pt, nosolutions]{report} -% \documentclass[a4paper, 12pt, onecolumn]{report} -\documentclass[a4paper, 12pt, twocolumn]{scrartcl} +% \documentclass[a4paper, 12pt, onecolumn]{scrreprt} +\documentclass[a4paper, 12pt, twocolumn]{report} \input{headers/preamble.tex} \input{headers/preamble_local.tex} |