scrheadings 禁用标题中的倾斜文本

scrheadings 禁用标题中的倾斜文本

我通常使用包scrheadings中的 pagestylescrpage2来自定义页眉/页脚。但它默认使用倾斜形状。我如何切换该行为以使用正常字体形状?MWE 可能是:

\documentclass[oneside,12pt,pointednumbers]{scrartcl}
\usepackage{scrpage2} %Kopf- und Fußzeilen

\pagestyle{scrheadings}

\cohead{Das ist ein Test.}

\begin{document}
Lorem Ipsum.
\end{document}

答案1

您应该使用包scrlayer-scrpage。以下是如何更改标题字体:

\documentclass[oneside,12pt,numbers=endperiod]{scrartcl}
\usepackage{scrlayer-scrpage}
\usepackage{lipsum}
\pagestyle{scrheadings}
\setkomafont{pagehead}{\sffamily\upshape}
\cohead{Das ist ein Test.}

\begin{document}

\section{A test section}

\lipsum[11]

\end{document} 

在此处输入图片描述

相关内容