标题中没有编号、没有数字(节、章、小节等)?

标题中没有编号、没有数字(节、章、小节等)?

我正在使用scrpage2,但scrbook.不想在页眉中显示数字或部分、章节等的编号。我该如何实现?

我有以下示例:

\documentclass[12pt, draft]{scrbook}
\usepackage[automark]{scrpage2}   
\renewcommand*{\headfont}{% 
\normalfont\scshape} 

\begin{document}
\pagestyle{scrheadings}

%Formatting
\ohead{\pagemark} 
\cehead{\leftmark}
\cohead{\leftmark}
\ofoot[]{} 

\chapter{Intro}
\automark[chapter]{chapter} 

\chapter{Chapter 1}
\cehead{\leftmark} 
\cohead{\rightmark} 
\automark[subsection]{chapter}

\chapter{Chapter 2}
\automark[section]{chapter}

\chapter{Final Chapter}
\cehead{\leftmark} 
\cohead{\leftmark} 

\end{document}

答案1

假设你想关闭编号仅有的在标题中:当您使用KOMA-Script类时,只需重新定义\chaptermarkformat\sectionmarkformat(和,如果适用的话,\subsectionmarkformat)即可不执行任何操作。

\documentclass{scrbook}

\usepackage[automark]{scrpage2}
\pagestyle{scrheadings}

\renewcommand*{\chaptermarkformat}{}
\renewcommand*{\sectionmarkformat}{}

\usepackage{lipsum}

\begin{document}

\chapter{foo}

\section{foobar}

\lipsum[1-12]

\end{document}

相关内容