\part 标题页上的题词,无需修改题词包

\part 标题页上的题词,无需修改题词包

我知道已经有一些关于此的主题,但它们要么不太适用,要么没有按要求工作,因此对于打开另一个主题表示歉意。

我正在使用 KOMA 脚本编写一本书,并且希望能够在每个“部分”页面上添加美观的题词。

不能但是,使用其他线程中建议的 epigraph 包的一些简单修改,因为我将 epigraph 用于章节,并且所有更改都适用于整个 \epigraph 包。

\documentclass[
    12pt, 
    a4paper,
    DIV=8, 
    oneside, 
]{scrbook}

\begin{document}
\part{Title of Part I}
% Nicely formatted quote to go below the title of the part
\end{document}

一如往常,感谢您的所有帮助:)

答案1

您只需使用 KOMA-Script 内置命令\setpartpreamble即可\dictum添加格式良好的引文

\documentclass[
    12pt, 
    a4paper,
    DIV=8, 
    oneside, 
]{scrbook}

\begin{document}
\setpartpreamble{%
  \dictum[Sokrates]{The good success is nothing small, 
    but it starts with small things.}%
}
\part{Title of Part I}
% Nicely formatted quote to go below the title of the part
\end{document}

有多个命令可以更改格言的格式。请参阅“3.17 格言”KOMA-Script 手册了解更多信息。

答案2

该手册描述了如何执行此操作。texdoc epigraph第 2.5 节“题词”部分页面上。也许当前的软件包维护者可以考虑改进软件包,特别是如果,不是我,问他。

相关内容