仅摘要第一页有编号

仅摘要第一页有编号

我有一份两页的摘要,但只有第一页有编号,这不符合我所在部门的指导方针。我花了几天时间试图解决这个问题,并反复联系我的部门,但他们坚持要求页面必须有编号,我无法修剪摘要。如果能得到任何帮助,我将不胜感激,谢谢!环境定义为:

\newenvironment{thesisabstract}
{ 
 \thispagestyle{plain}
 \pagenumbering{arabic}
 \newlength{\myName} % width of your name
 \newlength{\hangBox} % remaining space after your name
 \settowidth{\myName}{\thesisauthorLname , \thesisauthorFMname ,\ }%
 \setlength{\hangBox}{\textwidth}%
 \addtolength{\hangBox}{-1.0\myName}%
 \begin{spacing}{1.2} % increase a bit to accommodate the underline
 \noindent \thesisauthorLname , \thesisauthorFMname ,
 \parbox[t]{\hangBox}{
   \textit{\thesistitle},
   \thesisdegreeabbreviation , \thesisDeptName ,
   \thesismonth , \thesisyear .}
   \end{spacing}
   \bigskip\bigskip
}
{
\if@openright{\mbox{}\newpage}\else\fi
\thispagestyle{empty} \pagenumbering{roman} }

相关内容