nudt_thesis icon indicating copy to clipboard operation
nudt_thesis copied to clipboard

目录部分的空白页没有页眉页脚

Open hccz95 opened this issue 1 year ago • 0 comments

问题:目录部分的空白页没有页眉页脚,会被学校打回。

解决方案:

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

hccz95 avatar Nov 29 '23 01:11 hccz95