nudt_thesis
nudt_thesis copied to clipboard
目录部分的空白页没有页眉页脚
问题:目录部分的空白页没有页眉页脚,会被学校打回。
解决方案:
将thesis.tex
的81-98行,也就是下面这段代码挪到\frontmatter
后面
\renewcommand\UrlFont{\timesnr}
\makeatletter
\newcounter{blankpages}
\def\cleardoublepage{%
\clearpage
\if@twoside
\ifodd\c@page
\else
\hbox{}\newpage\stepcounter{blankpages}%
\thispagestyle{empty}%
\if@twocolumn\hbox{}\newpage\fi
\fi
\fi
}
\newcommand{\@romannoblank}[1]{%
\@roman{\numexpr#1-\value{blankpages}\relax}%
}
\makeatother