Add option to skip numbering for titlepage (#13)

* Add option to skip numbering for titlepage

* Add skipfirstpage to README.md

Co-authored-by: Sebastian / sebbo <sebastian@1337lounge.de>
main
aslmx 3 years ago committed by GitHub
parent 85f47fc004
commit 3bf33a5343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,7 @@ aufgabe:
date: 08.06.2017 date: 08.06.2017
lang: de lang: de
toc: t toc: t
skipfirstpage: 1 % set any value, to skip the counting for Titlepage, so TOC will start with Page 1
... ...
# Einführungauthor # Einführungauthor

@ -88,6 +88,7 @@ Im Folgenden sind die einzelnen Variablen und Schalter erläutert. Alle Optional
| abk | Abkürzungsverzeichnis | ja | true /false | | abk | Abkürzungsverzeichnis | ja | true /false |
| lot | Verzeichnis der Tabellen | ja | true / false | | lot | Verzeichnis der Tabellen | ja | true / false |
| lof | Liste der Figuren/Abbildungen | ja | true / false | | lof | Liste der Figuren/Abbildungen | ja | true / false |
| skipfirstpage | Zählt die Titleseite nicht mit | ja | true |
## ToDo ## ToDo

@ -288,7 +288,7 @@ $endif$
\textbf{$studium.fach$}\\ \textbf{$studium.fach$}\\
$endif$ $endif$
\vspace*{1cm} \vspace*{1cm}
\vfill \vfill
\normalsize \normalsize
\newcolumntype{x}[1]{>{\raggedleft\arraybackslash\hspace{0pt}}p{#1}} \newcolumntype{x}[1]{>{\raggedleft\arraybackslash\hspace{0pt}}p{#1}}
@ -320,6 +320,11 @@ $endif$
\end{center} \end{center}
\pagebreak \pagebreak
$if(skipfirstpage)$ % Skip first page count, if skipfirstpage = 1
\clearpage
\setcounter{page}{1}
$endif$
$if(abstract)$ $if(abstract)$
% ---------------------------------------------------------------------------------------------------------- % ----------------------------------------------------------------------------------------------------------
% Abstract % Abstract

Loading…
Cancel
Save