stone-zeng / fduthesis

LaTeX thesis template for Fudan University
LaTeX Project Public License v1.3c
820 stars 207 forks source link

摘要和目录部分不需要页眉 #188

Closed plong511 closed 3 years ago

plong511 commented 3 years ago

摘要和目录部分不需要页眉,请问该如何设置?

stone-zeng commented 3 years ago

修改成这样:

...

\frontmatter

\begingroup

  % 只保留页码
  \pagestyle{plain}

  \tableofcontents

  \begin{abstract}
  ...
  \end{abstract}

  \begin{abstract*}
  ...
  \end{abstract*}

  % 手动分页,否则最后一页的页眉仍会显示
  \cleardoublepage

\endgroup

\mainmatter

...