From 5c83eae33a8f497b0521e8b008542e6cd60451e0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 14 Jul 2024 16:09:58 +0200 Subject: fix(content/vorwort): Remove from the TOC --- content/01_vorwort/chapter.tex | 2 +- headers/preamble_local.tex | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/content/01_vorwort/chapter.tex b/content/01_vorwort/chapter.tex index 5eb00bf..827233b 100644 --- a/content/01_vorwort/chapter.tex +++ b/content/01_vorwort/chapter.tex @@ -1,6 +1,6 @@ %! TEX root = ../../satzung.tex % LTeX: language=de-DE -\sectionc{Präambel} +\sectionc*{Präambel} Gründe, warum wir diesen Verein gründen. \sils{Ist das vollständig?} diff --git a/headers/preamble_local.tex b/headers/preamble_local.tex index 220d15d..9091e3b 100644 --- a/headers/preamble_local.tex +++ b/headers/preamble_local.tex @@ -33,9 +33,17 @@ \paragraph{(\arabic{para})} } -\NewDocumentCommand{\sectionc}{m}{ - \section{#1} - \setcounter{para}{0} +\NewDocumentCommand{\sectionc}{sm}{ + \IfBooleanTF#1 + { + \section*{#2} + \setcounter{para}{0} + } + { + \section{#2} + \setcounter{para}{0} + } } \usepackage{enumitem} % For the enumerations with letters + -- cgit 1.4.1