如何删除每页上显示的日期

如何删除每页上显示的日期

我正在使用来自网站的模板,并且月份/年份出现在我论文正文的每一页上。我似乎找不到启用此功能的行,请帮帮我。

答案1

format.tex文件中,以下元素设置论文的页眉/页脚:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%                      Your fancy heading                       %%%%%%
%%%%% For the final copy you need to remove '\bfseries\today' below %%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markright{\chaptername\ \thechapter.\ #1}}
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}{}}
\lhead[\fancyplain{}{}]%
      {\fancyplain{}{\bfseries\rightmark}}
\chead[\fancyplain{}{}]%
      {\fancyplain{}{}}
\rhead[\fancyplain{}{}]%
      {\fancyplain{}{\bfseries\thepage}}
\lfoot[\fancyplain{}{}]%
      {\fancyplain{}{}}
\cfoot[\fancyplain{}{}]%
      {\fancyplain{}{}}
\rfoot[\fancyplain{}{}]%
      {\fancyplain{}{\bfseries\today}}

\bfseries\today描述中提到,如果要删除日期,则需要删除。或者,在 内thesis.tex使用

\input{format}
\rfoot[\fancyplain{}{}]%
      {\fancyplain{}{}}

在使用空页脚\rfoot创建后,它将被覆盖。format.tex

相关内容