KomaScript 书籍:如何将章节标题格式化为与文本一样?

KomaScript 书籍:如何将章节标题格式化为与文本一样?

这可能看起来很奇怪,但到目前为止,事实证明这超出了我的新手级 Latex 能力,而且我在这个网站上看到的相关文章似乎比我需要的要复杂一些。特别是,我正在写一篇论文,我的大学要求以下内容:

  1. 12pt Times New Roman
  2. 双倍行距
  3. 章节标题仅通过居中、使用全部大写字母(包括目录等标题)以及在 komascript 中使用相当于选项的内容来chapterprefix=on区分

komascript 手册非常清楚地说明了如何使标题居中。但是,我的标题默认格式为以下不需要的属性:

  1. 除了 Times New Roman 之外的一些字体
  2. 粗体
  3. 标题上方有大量空白(除了顶部边距,我不需要任何空间)

那么,我该如何告诉 komascript 稍微后退一点,并且不要将所有额外的格式添加到标题中?

这是我目前的工作模板:

\documentclass[12pt,letterpaper,oneside,chapterprefix=on]{scrbook}

%Margins
\usepackage[letterpaper,left=1.5in,top=1in,right=1in,bottom=1in]{geometry}

%Type
\usepackage{fontspec}
\setmainfont{Times New Roman}
\usepackage{unicode-math}
\setmathfont{xits-math.otf}
\usepackage[doublespacing]{setspace}
\setlength\parindent{0.5in}

%Other
\usepackage{microtype}
\usepackage{lipsum}

\setkomafont{chapter}{\centering}

\begin{document}

\frontmatter

%Flyleaf
\clearpage\thispagestyle{empty}\mbox{}\clearpage\setcounter{page}{1}

\chapter*{Abstract Title Page}
\chapter*{Abstract}
\chapter*{Copright Page}
\chapter*{Title Page}
\tableofcontents
\listoffigures

\mainmatter
\chapter{Introduction}
\lipsum
\appendix

\backmatter

\end{document}

答案1

章节、节等的设置komafont仅包含字体大小参数。您还需要更改底层格式元素disposition(也可用作sectioning)。此设置通常包含\normalcolor\sffamily\bfseries此处我们将其更改为\normalcolor\rmfamily

\setkomafont{disposition}{\normalcolor\rmfamily}

还有一个小标题的选项。

\documentclass[headings=small]{scrbook}

相关内容