如何在不使用 \maketitle 的情况下使用 \lowertitleback 但使用 titlepage

如何在不使用 \maketitle 的情况下使用 \lowertitleback 但使用 titlepage

我正在使用 KOMA 类scrbook,我想使用\uppertitleback\lowertitleback尽管我不想使用,\maketitle但还是使用我自己的titlepage。如果我正确理解了 KOMA 文档,\uppertitleback是在\maketitle调用时排版的,因此,下面的示例在排版后将不会在标题页的背面包含任何标题,正如预期的那样。

\documentclass{scrbook}
\begin{document}
\begin{titlepage}
My Title Page
\end{titlepage}
\uppertitleback{Lorem}
\lowertitleback{Ipsum}
\end{document}

有没有一个优雅的解决方案来解决这个问题,或者我必须采取类似下面的方法?

\thispagestyle{empty}
Text at the top of the page
\vfill
Text at the bottom

答案1

如果您不想要预定义的标题,则必须手动执行。一切都是如此。所以没有优雅的方法,您可以决定东西放在哪里以及它是什么样子。

\documentclass{scrbook}
\begin{document}
\begin{titlepage}
    \vspace*{.3\textheight}
    \centering
    {\Huge\sffamily Platypus X\par}
    \vspace{.1\textheight}
    {\Large\scshape Papa Patata\par}
\end{titlepage}
\thispagestyle{empty}
Lorem

\vfill
Ipsum
\clearpage
\end{document}

相关内容