各ページに表示される日付を削除する方法

各ページに表示される日付を削除する方法

私はウェブサイトのテンプレート、月/年が論文本文の各ページに表示されます。この機能がオンになっている行が見つからないので、助けてください。

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

関連情報