居中 Fancyhdr 左标记和右标记

居中 Fancyhdr 左标记和右标记

我想知道这是怎么可能的中心章节和节标记(我不知道他们是否这么称呼)使用此(MWE)代码

 \documentclass[10pt,twoside]{book}

 \usepackage{lipsum}

 \usepackage{fancyhdr}

 \fancyhf{}

 \fancyhead[RE]{\leftmark}

  \fancyhead[LO]{\rightmark}

  \fancyhead[LE,RO]{\thepage}

  \renewcommand\headrulewidth{0pt}

  \renewcommand\chaptermark[1]{\markboth{\scshape#1}{}} 

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

\begin{document}


 \chapter{chapter} % Even page header
 \lipsum[1]
 \section{section} % odd page header
  \lipsum[1-5]


  \end{document}

答案1

这是代码。您忘记将页面样式声明为“fancy”:

 \documentclass[10pt,twoside]{book}

 \usepackage{lipsum}
 \usepackage{fancyhdr}

 \fancyhf{}
 \fancyhead[CE]{\leftmark}
  \fancyhead[CO]{\rightmark}
  \fancyhead[LE,RO]{\thepage}
  \renewcommand\headrulewidth{0pt}

  \renewcommand\chaptermark[1]{\markboth{\scshape#1}{}}

  \renewcommand\sectionmark[1]{\markright{\scshape #1}}
  \pagestyle{fancy}

    \begin{document}

     \chapter{A First Chapter} % Even page header
     \lipsum
     \section{A section} % odd page header
      \lipsum[1-10]

  \end{document} 

在此处输入图片描述

编辑:如果您只想在标题中包含标题,则使用以下方法更简单titleps

 \documentclass[10pt,twoside]{book}

 \usepackage{lipsum}
 \usepackage{titleps}


  \newpagestyle{mine}[\scshape]{%
  \sethead[\thepage][\chaptertitle][]{}{\sectiontitle}{\thepage}
   }
   \pagestyle{mine}
    \begin{document}

     \chapter{A First Chapter} % Even page header
     \lipsum
     \section{A section} % odd page header
      \lipsum[1-10]

  \end{document} 

在此处输入图片描述

相关内容