Notes
Some comments on my approach and why I did things the way I did.
##It is very common to use \maketitle
. When you customize a title page, you redefine this. I personnally find that approach more difficult than necessary. If I were writing a document class (cls), sure I’d use that but for of my work, I just find that more work than necessary.
Instead I find it easier to include \begin{titlepage}....\end{titlepage}
directly and not use \maketitle
at all. Background: within the documentclass (required for a LaTeX document), there will be a definitian of \maketitle
, a shortcut for a \begin{title}....\end{title}
definition that specifies the look of the title page for that document class. Typically you’ll see this at the start of a LaTeX doc:
\begin{document}
\maketitle
To figure out what the \maketitle
code is, you have to dig into the document class. The document class is specified by a .cls
file which you might not have access to. For example, the srcbook.cls
document class used by Quarto is somewhere in the Quarto files. And in any case, document class files are hard to wade through. So instead one redefines \maketitle
in ones header (the part before \begin{document}
).
But for Quarto, the \maketitle
call is in the before-body.tex
partial. So I can just pass in my own before-body.tex
.