在 scrbook 中将自定义标题页与 \extratitle 结合起来

在 scrbook 中将自定义标题页与 \extratitle 结合起来

我正在使用 scrbook,但遇到了以下问题:我需要在第 3 页添加一个标题页,并在第 1 页添加一个额外的标题页(一个混蛋标题/Schmutztitel)。以下示例几乎满足了我的要求:

\documentclass[twoside, a5paper]{scrbook}
\usepackage[utf8]{inputenc}


\begin{document}
\author{The Author}
\title{Book Title}
\extratitle{The Author\\ Book Title
}
\lowertitleback{ISBN XXX}
\maketitle
\tableofcontents
\section{First section}
some text
\end{document}

现在我的问题是我想要作者多于标题(以及标题页底部的日期)。所以我可能必须用

\begin{titlepage} ... \end{titlepage}

环境。但是,如果我尝试包含这个而不是\maketitle,第 1 页上的混蛋标题就会消失:

\documentclass[twoside, a5paper]{scrbook}
\usepackage[utf8]{inputenc}


\begin{document}
\author{The Author}
\title{Book Title}
\extratitle{The Author\\ Book Title
}
\lowertitleback{ISBN XXX}
\begin{titlepage}
bla
\end{titlepage}
\tableofcontents
\section{First section}
some text
\end{document}

答案1

使用另一个titlepage环境来获得混蛋称号:

\documentclass[twoside, a5paper]{scrbook}
\usepackage[utf8]{inputenc}

\begin{document}

\begin{titlepage}
  \raggedright
  The Author\\ Book Title
\end{titlepage}

\begin{titlepage}
bla
\end{titlepage}

\thispagestyle{empty}
\null\vfill
{\raggedright
  ISBN XXX
}

\tableofcontents
\section{First section}
some text
\end{document}

相关内容