在 amsbook 中重命名摘要

在 amsbook 中重命名摘要

我正在撰写论文并且正在使用这个课程amsbook

我正在使用abstract每章开头的环境对本章本身进行简短总结。(我想这不太好,对吧?但我喜欢它。如果印刷上不推荐这样做,您有什么建议吗?)

无论如何,我想知道如何重命名环境,以便它看起来不是“摘要”,而是“章节摘要”之类的东西。

我一直在尝试使用命令

\renewcommand{\abstractname}{Summary of the chapter} 

但它不起作用。输出始终为“Abstract”。

编辑:这是一个工作代码的示例。

\documentclass[a4paper, 10pt, twoside, reqno]{amsbook}
\usepackage[english]{babel}
\usepackage{lipsum}
\title{Thesis} 
\author{me}

\begin{document} 
\maketitle

\chapter{Chapter 1}
\begin{abstract}
   Abstract of the first chapter.
   \lipsum[1-2]

\end{abstract}

   \lipsum[1-2] 
\end{document}

产生(标题页的一部分) 在此处输入图片描述

答案1

环境abstract只是偶然起作用。

我建议定义您自己的环境,这里与相同abstract,但可定制。

\documentclass[a4paper, 10pt, twoside, reqno]{amsbook}
\usepackage[english]{babel}
\usepackage{lipsum}

\makeatletter
\newenvironment{chaptersummary}{%
  \normalfont\Small
  \list{}{%
    \labelwidth\z@
    \leftmargin3pc
    \rightmargin\leftmargin
    \listparindent\normalparindent
    \itemindent\z@
    \parsep\z@ \@plus\p@
    \let\fullwidthdisplay\relax
  }%
  \item[\hskip\labelsep\scshape\chaptersummaryname.]%
}{%
  \endlist
}
\makeatother

\providecommand{\chaptersummaryname}{Summary of the chapter}
\addto\captionsenglish{\renewcommand{\chaptersummaryname}{Summary of the chapter}}
% maybe also \addto\captionsitalian{...}

\begin{document} 

\chapter{Chapter 1}

\begin{chaptersummary}
Abstract of the first chapter.
\lipsum[1-2]
\end{chaptersummary}

\lipsum[1-2] 

\end{document}

在此处输入图片描述

答案2

您可以定义自己的summary环境,并使用quoting包/环境对其进行格式化:

\documentclass{amsbook}
\usepackage{lipsum}
\usepackage{quoting}
\newenvironment{summary}{%
\quotingsetup{font=small, leftmargin=2em, rightmargin=0pt, vskip=3ex } \centering{\bfseries Chapter summary}\vspace{-2ex}\quoting}{\endquoting}

\begin{document}

\chapter{A Test Chapter}
\begin{summary}
\lipsum[1]
\end{summary}

\lipsum
\end{document} 

在此处输入图片描述

答案3

%Simple just use this!

\begin{center}
\textbf{Summary}\\
\vspace{0.2cm}
     This report will go over the functions blocks used in the Delta V Control Studio along with their mneumonics and short descriptions
\end{center}

相关内容