scrbook 中的标题页和献词之间的版权页

scrbook 中的标题页和献词之间的版权页

如何在标题页之后、献词页之前添加版权页?

答案1

使用\uppertitleback\lowertitleback和。\dedication\maketitle

答案2

参见第 3.7 节“文件标题”和“Dokumenttitel”KOMA 脚本手册中说明,\maketitle不仅scrbook限于文档的主标题页,还提供了许多常用的书籍标题页。内容使用几个命令定义:

  • \extratitle{…}
    书内第一个标题页是模拟标题(又称活页标题或半标题)。它位于封面下方和书芯第一页的正下方。论点是自由的,也可以包含段落。它从上到下打印在右页(奇数页)上。

  • \frontispiece{…}
    模拟标题页的背面。早期通常是一种装饰性图片页。同时,它通常是空白的或用于简短的版权说明。论点是自由的,也可以包含段落。它是从上往下打印的。

  • \titlehead{…}\subject{…},,,,,,,这些 用于构建主标题页。每个元素都有自己的字体,可以使用 / 进行更改。但是,某些元素的大小\title{…}会被硬编码大小覆盖。有关更多信息,请参阅手册。\subtitle{…}\author{…}\date{…}\publisher{…}
    \setkomafont\addtokomafont

  • \uppertitleback{…}\lowertitleback{…}
    这些用于构建主标题页的背面。的参数\uppertitleback打印顶部对齐,的参数\lowertitleback打印底部对齐。注意:目前,如果两者的高度都大于\textheight,的参数\lowertitleback将移动到下一页,通常会导致 \vbox 未满警告。

  • \dedication{…} 参数打印在额外的右侧(奇数)页上。字体也由相应元素定义,可以使用\setkomafont/进行更改\addtokomafont

笔记:

  • \extratitle{…}\frontispiece{…}是一种配对。如果两者都未使用,即为空,\maketitle也不会为它们输出空白页。因此,如果您想要一个空白的模拟标题页,请使用类似 的内容\extratitle{\mbox{}}

  • \maketitle 总是打印主标题,即使未定义任何元素。其中一些元素有默认值,如果未使用,则会导致警告消息。一些元素有其他默认值。

  • 如果未使用相应命令,则模拟标题和双面模式(默认为 )中的主标题的背面scrbook始终为空白页。它们不依赖于选项open(或相应的兼容性选项)。

  • 献词页的背面始终是空白的。据我所知,没有命令可以更改这一点。

KOMA-Script 手册还在 的文档中展示了一个包含几乎所有标题的示例\dedication。在下面的副本中,我刚刚添加了一个示例\frontispiece{…}

% Example from the English KOMA-Script manual scrguide-en.pdf
\documentclass{scrbook}
\usepackage[english]{babel}
\begin{document}
\extratitle{\textbf{\Huge In Love}}
\frontispiece{\vspace*{\fill}\par Copyright \textcopyright{} 2024 Me}% added (can also be used for other content like an image)
\title{In Love}
\author{Prince Ironheart}
\date{1412}
\lowertitleback{This poem book was set with%
the help of {\KOMAScript} and {\LaTeX}}% Feel free to add the copyright here.
\uppertitleback{Self-mockery Publishers}% Feel free to add the copyright here.
\dedication{To my treasured hazel-hen\\
in eternal love\\
from your dormouse.}
\maketitle
\end{document}

该示例产生以下六个页面:

模拟标题

卷首插图和主标题

主标题回归和奉献

空白页

因此,要在献词页之前填充主标题页的背面,只需使用\uppertitleback{…}或 ,\lowertitleback{…}如示例中所示。是的,您可以\frontispiece{…}在将版权说明移至 或 后\uppertitleback{…}删除该命令\lowertitleback{…}

如果你需要在主标题和献词之间留一个右页(奇数页),则不应将其用于\dedication{…}献词,而应同时定义附加页和献词,自由使用\maketitle,例如:

% Addaption of the example above with extra odd page before the dedication
\documentclass{scrbook}
\usepackage[english]{babel}
\begin{document}
\extratitle{\textbf{\Huge In Love}}
\frontispiece{\vspace*{\fill}\par Copyright \textcopyright{} 2024 Me}
\title{In Love}
\author{Prince Ironheart}
\date{1412}
\maketitle
\begin{titlepage}% Generate a new title page (odd page, empty style)
This poem book was set with
the help of {\KOMAScript} and {\LaTeX}

\vfill

Self-mockery Publishers
\end{titlepage}
\begin{titlepage}% Generate a new title page (odd page, empty style)
  \centering
  \usekomafont{dedication}{%
    To my treasured hazel-hen\\
    in eternal love\\
    from your dormouse.\par}
\end{titlepage}
Test
\end{document}

不用说:如果您没有使用\maketitle任何标题页,您也可以简单地在自由定义的主标题和自由定义的献词之间添加额外的代码。所以这个答案专注于使用\maketitle

相关内容