documentclass scrartcl 使用什么部分字体以及如何在整个标题页中使用它?

documentclass scrartcl 使用什么部分字体以及如何在整个标题页中使用它?

我希望在中titlepage使用相同的 koma 字体section,或者换句话说:documentclass scrartcl 使用什么部分字体,以及如何在整个标题页中使用它?

我所指的最小工作示例:

\documentclass{scrartcl}
\begin{document}
\begin{titlepage}
    \begin{center}
        {\Huge \textbf{AAAA}\par} % this font ...
        {AAAAAA\par}              % ... and this font is different to ...
    \end{center}
\end{titlepage}
\section{AAAAA}                   % ... this font
    AAAAAA
\end{document}

答案1

使用 KOMA-Script 类\section使用字体元素dispositionsection。默认情况下,字体元素disposition导致\normalcolor\sffamily\bfseries并且字体元素section设置为\Large

您可以使用\usekomafont{disposition}

\documentclass{scrartcl}
\begin{document}
\begin{titlepage}
  \usekomafont{disposition}% <- added
  \begin{center}
    {\Huge AAAA\par}% <- changed
    {\mdseries AAAAAA\par}% <- changed
  \end{center}
\end{titlepage}
\section{AAAAA}
  AAAAAA
\end{document}

或者使用以下方法切换到无衬线字体\sffamily

\documentclass{scrartcl}
\begin{document}
\begin{titlepage}
  \usekomafont{disposition}% <- added
  \begin{center}
    {\Huge AAAA\par}% <- changed
    {\mdseries AAAAAA\par}% <- changed
  \end{center}
\end{titlepage}
\section{AAAAA}
  AAAAAA
\end{document}

两个版本都导致

在此处输入图片描述

相关内容