Giter Site home page Giter Site logo

Comments (1)

TheNetAdmin avatar TheNetAdmin commented on July 3, 2024 1

页眉是使用 \fancyhead 设置的,例如这里

\ifthenelse{\equal{\Degree}{undergraduate}}
{
% Common header & footer
\newcommand{\commonhead}
{
\fancyhead{}
\fancyhead[EL]{\zihao{-5} \songti \TitleTypeName}
\fancyhead[OR]{\zihao{-5} \songti \Title}
\renewcommand{\headrulewidth}{0.6pt}
}
% Common page header & footer
\fancypagestyle{common}
{
\commonhead{}
\fancyfoot{}
\fancyfoot[C]{\zihao{-5} \thepage}
}
% Previous part header & footer
\fancypagestyle{previous}
{
\commonhead{}
\fancyfoot{}
\fancyfoot[C]{\zihao{-5}\thepage}
}
}

如果是简单的去除参考文献页眉的话,有两种选择

第一种是修改\inputbody{final/post}的位置,移动使其位于\poststyle之后

zjuthesis/zjuthesis.tex

Lines 82 to 85 in 9476151

\inputbody{final/post}
\poststyle
\inputpage{final}{post}

因为\poststyle已经定义页眉为空,只需移动 final/post 让它使用 \poststyle 即可

\newcommand{\poststyle}
{
\cleardoublepage{}
\ifthenelse{\equal{\Degree}{graduate}}
{
\assignpagestyle{\chapter}{common}
\thispagestyle{common}
\pagestyle{common}
}
{
\assignpagestyle{\chapter}{empty}
\thispagestyle{empty}
\pagestyle{empty}
}
}

第二种是在参考文献代码(如下)之前添加 \fancyhead{}

\begingroup
\linespreadsingle{}
\printbibliography[title={参考文献}]
\endgroup

from zjuthesis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.