我想在 phd-thesis-template/PhDThesisPSnPDF.cls 中选择 pageStyleII。我不知道该怎么做。
\RequirePackage{fancyhdr} % Define custom header
% Set Fancy Header Command is defined to Load FancyHdr after Geometry is defined
\newcommand{\setFancyHdr}{
\pagestyle{fancy}
\ifPHD@pageStyleI
% Style 1: Sets Page Number at the Top and Chapter/Section Name on LE/RO
\renewcommand{\chaptermark}[1]{\markboth{##1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1\ }}
\fancyhf{}
\fancyhead[RO]{\nouppercase \rightmark\hspace{0.25em} |
\hspace{0.25em} \bfseries{\thepage}}
\fancyhead[LE]{ {\bfseries\thepage} \hspace{0.25em} |
\hspace{0.25em} \nouppercase \leftmark}
\else
\ifPHD@pageStyleII
% Style 2: Sets Page Number at the Bottom with Chapter/Section Name on LO/RE
\renewcommand{\chaptermark}[1]{\markboth{##1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}}
\fancyhf{}
\fancyhead[RO]{\bfseries\nouppercase \rightmark}
\fancyhead[LE]{\bfseries \nouppercase \leftmark}
\fancyfoot[C]{\thepage}
你能帮助我解决这个问题吗?
此致,
答案1
该模板最近已更新。引自自述。
PhDThesisPSnPDF
定义 3 种不同的页面样式(页眉和页脚)。以下定义用于twoside
布局。要选择页面样式,请将其包含在documentclass
选项中: 。或者,也可以通过在 中添加或\documentclass[PageStyleI]{Classes/PhDThesisPSnPDF}
来更改页面样式。注意:使用命令在全局使用时将覆盖选项。\pagestyle{PageStyleI}
\pagestyle{PageStyleII}
thesis.tex
\pagestyle
documentclass
随着最近的变化,把东西放在哪里应该更加清楚。
非常感谢维护人员的快速修复。