\title 和 \section 有不同的字体

\title 和 \section 有不同的字体

如果我编译命令的字体\title,并且\section命令有某种不同。为什么命令中使用了另一种字体?我希望所有命令都\section使用字体。 \title\section

\documentclass[twocolumn]{scrartcl}
\usepackage{scrlayer-scrpage}
\usepackage[UKenglish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{amsmath,amsfonts,amssymb,amsthm,amsopn}
\usepackage{blindtext}


\title{Doppler-free Saturation Absorption Spectroscopy of Caesium}
\author{Example Name, Other Example, Another E.}

\setkomafont{title}{\bfseries}

\begin{document}
\maketitle
---
\section{Introduction}
\blindtext[10]
\end{document}

答案1

如果您使用 KOMA-Script,标题的字体通常由\usekomafont{title}和设定\huge。字体元素的默认设置title\usekomafont{disposition}

disposition所有分段命令也使用此元素(位于其自己的字体元素之前)。其默认设置为\normalcolor\sffamily\bfseries

因此,\setkomafont{title}{\normalcolor\bfseries}您只需更改标题的设置即可。但是,如果您将其替换为

\setkomafont{disposition}{\normalcolor\bfseries}

它也影响所有的切片命令。

相关内容