From 9e6405921d97b227df00cfabcbd52368110ff9e5 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 3 Oct 2024 16:01:24 +0200 Subject: 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. --- templates/latex/academia/%INIT_APPLICATION_NAME.tex | 4 ++-- 1 file 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} -- cgit 1.4.1