在《指南:Koma Script [2015-1-14]》第 87 页的“文档结构”部分下,指南列出了许多用于更改分节默认输出的“选项” \chapter
,例如headings=big
和headings=openany
。整个文档中列出了许多用于各种事物的选项,我不知道在 LaTeX 标记中在哪里实现它们。(我想将章节标题从“大”缩小到“大”,并让它在任何页面上打开新章节,而不仅仅是右侧页面)
我尝试在序言中使用,但失败了,我也尝试了其他选项,\chapter[headings=openany, headings=big]{The Big Vacation}
但那只是用 Koma Script 中的目录可选标题替换了章节标题。
Koma Script 文档中列出的选项和值在 LaTeX 标记中属于哪里?顺便说一下,我使用的是 LyX。
答案1
我不知道如何在 LyX 中做到这一点,但这些是传递给文档类的选项。
梅威瑟:
\documentclass[headings=openany,headings=big]{scrbook}
\begin{document}
\chapter{First chapter}
\chapter{The Big Vacation}
\end{document}
输出:
顺便说一句:如果您想减少标题的大小,您必须使用headings=normal
而不是headings=big
默认的。
如果您希望在序言中声明它们,则可以使用\KOMAoptions
:
\documentclass{scrbook}
\KOMAoptions{headings=openany,headings=big}
\begin{document}
\chapter{First chapter}
\chapter{The Big Vacation}
\end{document}