모든 페이지에 나타나는 날짜를 제거하는 방법

모든 페이지에 나타나는 날짜를 제거하는 방법

나는웹사이트의 템플릿, 그리고 내 논문 본문의 모든 페이지에 월/년이 표시됩니다. 이 기능이 켜져 있는 회선을 찾을 수 없는 것 같습니다. 도와주세요.

답변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

관련 정보