如何刪除每頁出現的日期

如何刪除每頁出現的日期

我正在使用一個網站的模板,月份/年份出現在我論文正文的每一頁。我似乎找不到打開此功能的行,請幫幫我。

答案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

相關內容