diff options
Diffstat (limited to 'headers/preamble_local.tex')
-rw-r--r-- | headers/preamble_local.tex | 14 |
1 files changed, 11 insertions, 3 deletions
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 + |