页眉中不需要的斜体(classicthesis)

页眉中不需要的斜体(classicthesis)

在我的章节标题中,有时我必须使用斜体字母来表示目录中的条目。不幸的是,这会导致页眉中出现斜体字母。我该如何避免这种情况?页眉应该看起来像章节标题。

\documentclass[twoside,openright,titlepage,numbers=noenddot,headinclude,
        footinclude=true,cleardoublepage=empty,
        BCOR=5mm,paper=a4,fontsize=10pt]{scrbook}
\usepackage{lipsum}

\usepackage[parts,beramono,eulerchapternumbers,%
    listings,manychapters,%
    floatperchapter]{classicthesis} 

\begin{document}
\tableofcontents
\pagestyle{scrheadings}
\chapter{First chapter}
\section{First section}
\lipsum[1-18]
\section[\textit{Second} section]{Second section}
\lipsum[1-12]
\end{document}

答案1

如果您为章节或节定义了一个短标题,classicthesis格式也会将其作为标题文本。使用命令\sectionmark{}(以及类似的命令\chaptermark{}),您可以定义标题的自定义标题版本。在这种情况下,您必须使用它来恢复原始标题书写。

% arara: pdflatex
% arara: pdflatex

\documentclass[twoside,openright,titlepage,numbers=noenddot,headinclude,
        footinclude=true,cleardoublepage=empty,
        BCOR=5mm,paper=a4,fontsize=10pt]{scrbook}
\usepackage{lipsum}

\usepackage[parts,beramono,eulerchapternumbers,%
    listings,manychapters,%
    floatperchapter]{classicthesis} 

\begin{document}
\tableofcontents
\pagestyle{scrheadings}
\chapter{First chapter}
\section{First section}
\lipsum[1-18]
\section[\textit{Second} section]{Second section}
\sectionmark{Second section}
\lipsum[1-12]
\end{document}

相关内容