对fancyhdr感到沮丧

时间:2010-06-13 16:23:30

标签: latex tex

我有以下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页的情况一样?

由于

1 个答案:

答案 0 :(得分:7)

你快到了!

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

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

务必将其移至 \pagestyle{fancy}之后的位置。另外,请务必删除自定义\subsectionmark,除非您想在标题中使用某些小节信息。