
답변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}
참고: 이 매우 간단한 정의는 하나의 열에만 작동하며 원치 않는 페이지 나누기를 방지하지 않습니다.