摘要配置在论文章节中,与章节标题和目录在同一页

摘要配置在论文章节中,与章节标题和目录在同一页

我想制作如下形式的摘要。

在此处输入图片描述

有关详细信息,我需要具有这种顶部和底部规则的摘要。

有人能帮帮我吗?非常感谢。

答案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}

在此处输入图片描述

注意:这个非常简单的定义仅适用于一列,并且不能防止不必要的分页符。

相关内容