答案1
chapterapstract
您可以为此定义一个新环境:
\documentclass{book}
\usepackage{mwe}
\newenvironment{chapterabstract}{%
\par\nobreak\noindent
\textbf{\textit{Abstract}\hrulefill}\par\nobreak
\small
\noindent\ignorespaces
}{%
\par\nobreak\normalsize
\vskip-\ht\strutbox\noindent
\textbf{\hrulefill}%
}
\begin{document}
\chapter{Example Chapter}
\begin{chapterabstract}
\lipsum[1]
\end{chapterabstract}
\section{Example Section}
\lipsum
\end{document}
注意:这个非常简单的定义仅适用于一列,并且不能防止不必要的分页符。