我如何在后记中创建非标准部分?

我如何在后记中创建非标准部分?

我有一本使用该scrbook课程的书。

我需要添加一个章节,其中列出图片来源(图片、拍摄地点、许可证等),该章节应该是参考书目/索引之后的后记中的最后一“章节”。

我使用 创建了一个新页面\pagestyle{empty}并写入{\usekomafont{chapter}List of Sources},但标题设置为 Computer Modern,而不是所有章节标题中使用的字体。

是否有一种更少手动、更直接/更符合 KOMA-Script 的方法来创建这样的附加部分?

答案1

如果普通文本要使用与章节标题相同的字体,则必须使用\usekomafont{disposition}\usekomafont{chapter}。默认情况下,元素disposition使用\normalcolor\sffamily\bfseries和元素chapter使用\huge(带选项headings=big,默认),\LARGE(带选项 headlines= normal)或\large(带选项headings=small)。

例子:

\documentclass{scrbook}

\begin{document}
\chapter{First chapter}
Some Text.

\noindent{\usekomafont{disposition}\usekomafont{chapter}Some text with chapter font.\par}

\noindent Some Text.
\end{document}

结果:

在此处输入图片描述

但是对于特殊章节,我会使用\addchap{List of Sources}(未编号但在目录和页眉中有条目)或\addchap*{List of Sources}(未编号但在目录和页眉中没有条目)。

例子:

\documentclass{scrbook}
\usepackage{blindtext}

\begin{document}
\blinddocument
\addchap*{Special chapter}
\Blindtext
\addchap{Another special chapter}
\Blindtext
\end{document}

\DeclareNewSectionCommand如果有其他特殊要求,也可以使用声明新的分段命令。

相关内容