about summary refs log tree commit diff stats
path: root/templates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-03 16:01:24 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-03 16:01:24 +0200
commit9e6405921d97b227df00cfabcbd52368110ff9e5 (patch)
tree48a8ff5934b9652c7ca18f1ce8acdeb8909d859c /templates
parentfix(common/flake/latex): Remove unneeded import follow (diff)
downloadflake-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.
Diffstat (limited to 'templates')
-rw-r--r--templates/latex/academia/%INIT_APPLICATION_NAME.tex4
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}