如何在 EB Garamond 中设置章节标题?

如何在 EB Garamond 中设置章节标题?

我使用的是 EB Garamond 字体,但无法正确设置章节和节标题。该软件包ebgaramond没有我想要的所有功能,当使用 fontspec 查找字体时,似乎会采用真类型版本。这就是为什么我必须明确定义字体的路径。

目前,我使用以下 MWE:

% arara: lualatex: { shell: yes, options: -synctex=-1 }

\documentclass{scrreprt}
\usepackage{luatextra}
\usepackage{fontspec}
\defaultfontfeatures{%
    ,RawFeature={+dlig, +calt, +cv11, +ss05}
    ,Ligatures={TeX}
}
\setmainfont[%
    ,Path = C:/WINDOWS/Fonts/
    ,Extension = .otf
    ,UprightFont = *12-Regular
    ,ItalicFont  = *12-Italic
    ,BoldFont = *08-Regular
]{EB Garamond}

\begin{document}

\chapter{Test}
Test
\section{Test}
%\textin{T}est % This does not work eather.

\end{document}

我不知道发生了什么,并且想在所有地方使用这种字体。

答案1

Koma-Script 类的标准是使用无衬线字体打印章节标题。添加

\addtokomafont{disposition}{\rmfamily}

你的序言就足够了。

请不要使用 Bold Garamond:这就像古罗马电影中的演员戴着手表一样。

相关内容