3

我有以下 tex 文件:

\documentclass[a4paper,11pt,oneside]{book}
\usepackage[usenames,dvipsnames]{color}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{lipsum}
\usepackage[left=2cm,top=3cm,right=1.5cm,bottom=2cm]{geometry}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
\renewcommand{\subsectionmark}[1]{\markright{\thesubsection}{}}

\usepackage[Lenny]{fncychap}
\usepackage{thumbpdf}
\usepackage[colorlinks]{hyperref}
\setlength\marginparwidth{1cm}
\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhead[LO,L]{Book template}
\fancyhead[RO,R]{\rightmark}
\fancyfoot[CO,C] {\thepage}

\begin{document}
\chapter{Chapter Intro}
\lipsum
\chapter{Chapter with subsections}
\section{section foo}
\lipsum
\subsection{subsection bar}
\lipsum
\end{document}

样本可在http://www.mediafire.com/?0m5mnka32kj查看

在右上角:

  • 如果没有部分,如何使其显示章节标题,如第 2 页所示?
  • 如果有活动部分,如何使它显示部分标题,而只显示部分标题(没有数字,没有小节,小节等),就像第 4 页上的情况一样?

谢谢

4

1 回答 1

10

你快到了!

以下两个标记应该可以解决问题:

\renewcommand{\chaptermark}[1]{\markright{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}

请务必将它们移动到之后 \pagestyle{fancy}的位置。还要确保删除 custom \subsectionmark,除非您想在标题中使用某些小节信息。

于 2010-06-13T16:41:21.730 回答