使用 notitlepage 后,我的摘要格式丢失

使用 notitlepage 后,我的摘要格式丢失

我已经添加notitlepage不重置页面计数器的选项(根据建议:https://tex.stackexchange.com/a/44955/7128

但我的摘要丢失了格式!

现在它具有与文档其他部分一样的行距和边距。

notitlepage使用选项时如何实现摘要的默认外观?

\documentclass[pdftex,a4paper,12pt,twoside,openany]{report}
%\documentclass[pdftex,a4paper,12pt,twoside,openany,notitlepage]{report} % <--- switch to this to see difference
\usepackage{lipsum}
\begin{document}
\linespread{1.6} % interline 2.0
\begin{abstract}
\lipsum[1-3]
\end{abstract}
\chapter{CH}
\lipsum[1-8]
\end{document}

notitlepage如何使用该选项来实现与没有该选项时相同的摘要外观,同时保留文档其余部分的相同格式?

答案1

\renewenvironment{abstract}
  {\newpage\thispagestyle{plain}
   \null\vfil
   \begin{center}%
     \bfseries \abstractname
   \end{center}}
  {\par\vfil\null\cleardoublepage}

相关内容