From 2342e9da01c3d86683d1f1989f1dc218e53934a2 Mon Sep 17 00:00:00 2001 From: infisxc <78548451+infisxc@users.noreply.github.com> Date: Thu, 4 Feb 2021 15:40:40 +0100 Subject: [PATCH] Adding an option to make the title on 1st page The options available with respect to showing title/author are the following: - either no title ; - or nice title page of its own. However, especially for small documents, it could make sense to make the title appear on top of the first page. This commit adds the option maketitle to display the title on first page rather than having a title page or no title at all. In spirit it just performs a \maketitle. However, I found the the \maketitle command of scrartcl.cls was taking much room for nothing and was not fitting that well with the overall template. So I made it more compact. --- eisvogel.tex | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/eisvogel.tex b/eisvogel.tex index f6daa7a..03d63df 100644 --- a/eisvogel.tex +++ b/eisvogel.tex @@ -954,6 +954,16 @@ $endif$ \end{flushleft} \end{titlepage} \restoregeometry +$else$ +$if(maketitle)$ +\vspace*{-3\baselineskip} +\begin{center} + {\LARGE \thetitle}\\ + \vspace{0.7\baselineskip} + {\large \theauthor} +\end{center} +\thispagestyle{plain} +$endif$ $endif$ $endif$