如何使用 scrpage2 删除标题中的章节标题

如何使用 scrpage2 删除标题中的章节标题

我想删除附录中的章节标题(页眉):

\documentclass[headsepline, open=right,twoside=true, numbers=noenddot]{scrreprt}

\usepackage[english]{babel}
\usepackage{scrpage2}
\usepackage{blindtext}

\clearscrheadfoot
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\automark[section]{chapter}
\pagestyle{scrheadings}
\renewcommand*{\chapterpagestyle}{empty}


\begin{document}

\begin{appendix}

    \chapter{Appendix}
    \section{Remove the section title}
    \blindtext[12]

\end{appendix}

\end{document}

我正在寻找类似的东西\renewcommand*{\sectionmarkformat}{},但我想保留号码并删除标题。

答案1

appendixprefix如果不使用KOMA-Script 选项:

\newcommand*{\appendixmore}{%
  \renewcommand\sectionmark[1]{%
    \markright{\ifnumbered{section}{\thesection\autodot}{}}%
}}

在此处输入图片描述

\ifnumbered如果存在未编号的部分,则使用可避免在标题中出现错误的编号。

注意\appendix不是环境。该包scrpage2已弃用。scrlayer-scrpage请使用。

\documentclass[headsepline,twoside, numbers=noenddot]{scrreprt}
\usepackage[english]{babel}
\usepackage{blindtext}

\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\automark[section]{chapter}
\renewcommand*{\chapterpagestyle}{empty}
\newcommand*{\appendixmore}{%
  \renewcommand\sectionmark[1]{%
    \markright{\ifnumbered{section}{\thesection\autodot}{}}%
}}

\begin{document}
\appendix
\chapter{Appendix}
\section{Remove the section title}
\blindtext[30]
\addsec{Unnumbered section}
\blindtext[12]
\end{document}

答案2

我还建议使用scrlayer-scrpage而不是scrpage2....

关于您的问题,您可以提出

\lohead{\thesection\autodot}

刚过

\chapter{Appendix}

得到你想要的。

平均能量损失

\documentclass[headsepline, open=right,twoside=true, numbers=noenddot]{scrreprt}
\usepackage[english]{babel}
\usepackage{blindtext}

\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\automark[section]{chapter}
\renewcommand*{\chapterpagestyle}{empty}

\begin{document}

\chapter{Test}
\section{Here I want the headers}
\blindtext[12]

\appendix

\chapter{Appendix}
\lohead{\thesection\autodot}

\section{Remove the section title}
\blindtext[12]


\end{document} 

输出

在此处输入图片描述

相关内容