标题上的章节和节交替出现

标题上的章节和节交替出现

我使用代码尝试让标题交替显示章节和部分

\pagestyle{fancy}
\renewcommand{\chaptermark}[1]%
{\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
\renewcommand{\sectionmark}[1]%
{\markright{\MakeUppercase{\thesection.\ #1}}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancyhf{}
\fancyhead[R]{\fontsize{10}{11}\selectfont \thepage}
\fancyhead[L]{\ifthenelse{\isodd{\value{page}}}{\leftmark}{\rightmark}}

但我不想根据页面的值显示页眉,而是希望页眉在每个新章节之后的页眉上首先显示部分

我的模板来自http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/ThesisStyle/

我该怎么做?如能提供任何代码,我将不胜感激

相关内容