为什么我的章节标题的字体与文本不同?

为什么我的章节标题的字体与文本不同?

这是我的代码。我不知道为什么,但我的章节标题和文本的字体不同。我该怎么办?如果有人能帮忙,我将不胜感激

\documentclass[parskip=half, 12pt]{scrreprt} 
%******************************************Seitenränder**********************************************
\usepackage[left=25mm,right=25mm,top=25mm,bottom=20mm]{geometry}
\usepackage[headsepline=1pt]{scrlayer-scrpage} 
\clearpairofpagestyles
\ohead{Name}
\cfoot{\pagemark}
\setkomafont{pagehead}{\normalfont}
\RedeclareSectionCommand[
    beforeskip=0pt,
    afterskip=1\baselineskip plus .1\baselineskip minus .1\baselineskip
  ]{chapter}
\RedeclareSectionCommands[
    beforeskip=-12pt,
    afterskip=.125pt
  ]{section,subsection}
\RedeclareSectionCommand[
    beforeskip=-10pt,
    afterskip=.125pt
  ]{subsubsection}
%******************************************Textformat*****************************************
\usepackage[ngerman]{babel}
\usepackage{microtype}
\usepackage[T1]{fontenc} %schrift

\usepackage{setspace}
\setstretch{1.5} 

%*********************************************other************************************************
\renewcommand{\thesection}{\arabic{section}} 
\usepackage{graphicx}
\usepackage{amsmath} 
\normalfont
%*********************************************Title************************************************
\title{Paper}
\author{My Name}
\date{October 2022}
%*********************************************Dokument************************************************

\begin{document}

\maketitle

\section{title}
Text

\end{document}

答案1

章节标题使用无衬线字体系列。这是该类的默认字体。

如果要对章节和小节使用与文本相同的字体,请使用

\RedeclareSectionCommands[
beforeskip=-12pt,
afterskip=.125pt,
font=\normalfont\Large\bfseries
]{section,subsection}

要一次性将所有部分级别设置为不再使用无衬线字体,请使用

\setkomafont{disposition}{\normalcolor\bfseries}

答案2

将第一行改为

\documentclass[
  parskip=half,
  12pt,
  egregdoesnotlikesansseriftitles,
]{scrreprt}

有史以来最好的选择名称。

在此处输入图片描述

相关内容