我正在使用scrbook
文档类,但想将默认字体更改为 Times。但是当我添加:
\usepackage{times}
序言,它不会改变字体的章节,部分或者目录,但只有文本。我是否遗漏了什么?
答案1
默认情况下,这些KOMA-Script
类将以无衬线字体(和粗体\sffamily\bfseries
)排版章节标题,因此将衬线字体更改为 Times 不会影响这些标题。要将标题切换为衬线字体,请使用\setkomafont{disposition}{\bfseries}
。您还应该将过时的包替换times
为mathptmx
。
\documentclass{scrbook}
\usepackage{mathptmx}
\setkomafont{disposition}{\bfseries}
\usepackage{lipsum}
\begin{document}
\chapter{foo}
\lipsum[1]
\end{document}
答案2
字体系列设置\sffamily
为分段标题。您可以\sectfont
对此进行修改:
\documentclass{scrbook}% http://ctan.org/pkg/koma-script
\usepackage{times}% http://ctan.org/pkg/times
\renewcommand*\sectfont{\normalcolor\bfseries}% removed \sffamily
\begin{document}
\chapter{Chapter title}
\end{document}
但是,那times
包裹被取代mathptmx
也为 Times 提供数学支持。Lockstep 的答案可能更像 Koma-Script。