如何更改章节格式?

如何更改章节格式?

我希望名称“章节 [编号]”位于顶部,实际的下方\chapter

在此处输入图片描述<- 我想要这样的。

在此处输入图片描述<- 但它目前看起来像这样。

我想要的格式是1但不是字体的大小;字体就像2

\documentclass[egregdoesnotlikesansseriftitles,headings=optiontoheadandtoc]{scrreprt}
\usepackage{newtxtext}
\setkomafont{chapter}{\rmfamily \LARGE}
\addtokomafont{subsection}{\normalfont \itshape }

%code below here does not seem to work
\renewcommand*{\raggedchapter}{\centering} %chapter in toc and on page (numbering)
\renewcommand*{\chaptermarkformat}{\chapappifchapterprefix{\nobreakspace}\thechapter\autodot:\enskip}
\let\originaladdchaptertocentry\addchaptertocentry
\renewcommand*{\addchaptertocentry}[2]{%
  \IfArgIsEmpty{#1}
    {\originaladdchaptertocentry{#1}{#2}}
    {\originaladdchaptertocentry{\chapappifchapterprefix{\nobreakspace}#1\autodot}{#2}}%
}
\RedeclareSectionCommand[
  tocentrynumberformat={\def\autodot{:}},
  tocdynnumwidth
]{chapter}

\let\originalappendix\appendix
\renewcommand*{\appendix}{%
  \originalappendix
  %\renewcommand*\chapterformat{}% remove the chapter number  from chapter heading
  %\renewcommand*\chaptermarkformat{}% remove the chapter number from header entry
  \renewcommand*{\addchaptertocentry}[2]{% remove the chapter number from ToC entry
    \originaladdchaptertocentry{}{##2}%
  }%
}

答案1

为此调用了 KOMA-Script 选项chapterprefix(可以在 KOMA Script 手册的“3.16. 文档结构”部分找到)。

\documentclass[
    egregdoesnotlikesansseriftitles,
    headings=optiontoheadandtoc,
    chapterprefix=true
    ]{scrreprt}

\usepackage{newtxtext}
\addtokomafont{chapter}{\LARGE}
\addtokomafont{subsection}{\normalfont \itshape}

\begin{document}
\chapter{First Chapter}
\end{document}

在此处输入图片描述

相关内容