diff --git a/docs/docs.pdf b/docs/docs.pdf index 8d711c1..fcda1a7 100644 Binary files a/docs/docs.pdf and b/docs/docs.pdf differ diff --git a/docs/parts/reference/loading.tex b/docs/parts/reference/loading.tex index 5ff60c8..2adf0ce 100644 --- a/docs/parts/reference/loading.tex +++ b/docs/parts/reference/loading.tex @@ -31,6 +31,7 @@ \item \verb|\setupCheatSheet|\{\textit{string}\} Prepare the document with smaller borders and no headers / footers. \textit{string} is the title \item \verb|\setupBarebones|\{\textit{string}\} Minimal setup, only borders and title set \item \verb|\startDocument| Initialize the document. Has to be called after \verb|\begin{document}| + \item \verb|\startDocumentNoTile| Initialize the document without printing the title. Has to be called after \verb|\begin{document}| \item \verb|\usetcolorboxes| Initialize tcolorboxes. In main body, if you want to use fancy boxes. (requires \texttt{most} or up) \item \verb|\translate|\{\textit{string}\}\{\textit{string}\} First \textit{string} is English, second \textit{string} is German. Switches automatically based on language selected \item \verb|\tr|\{\textit{string}\}\{\textit{string}\} Shorthand for \verb|\translate| diff --git a/main/core.tex b/main/core.tex index f8954be..aed9a27 100644 --- a/main/core.tex +++ b/main/core.tex @@ -104,6 +104,10 @@ % Start document command (required) \newcommand{\startDocument}{ \maketitle + \startDocumentNoTitle +} + +\newcommand{\startDocumentNoTitle}{ \pagestyle{fancy} \thispagestyle{fancy} }