删除标题中的章节编号

删除标题中的章节编号

我希望标题中当前部分居中,但没有部分编号。在下面的示例中,标题看起来像“1 示例”,但我希望标题为“示例”。

\documentclass[headsepline, footsepline]{scrartcl}
\usepackage{scrpage2}
\begin{document}
\clearscrheadfoot
\pagestyle{scrheadings}
\automark[section]{section}
\ihead[University]{University}
\chead[\rightmark]{\rightmark}
\ohead[Author]{Author}
\ifoot[\today]{\today}
\ofoot{\thepage}
\section{Example}
Text
\end{document}

这到底可能吗?

答案1

使用在章节标题无编号,解决你的问题的方法是插入

\renewcommand*{\sectionmarkformat}{}

在序言中(例如 之后\usepackage{scrpage2})。这将删除标题中的数字。

相关内容