每章开头都有一个“摘要”?

每章开头都有一个“摘要”?

我正在使用书籍文档类,我想做的是在每个章节的开头添加一个类似摘要的文本(用较小的字体概述章节中将发生什么,等等)。如果有帮助的话,我很乐意改用 amsbook。

例子:http://www.amazon.com/Classical-Introduction-Modern-Graduate-Mathematics/dp/038797329X

答案1

下面是使用 KOMA-Script 类之一实现类似效果的示例:

\documentclass[pagesize=auto, version=last, chapterprefix=true]{scrbook}

\usepackage{amsmath}
\usepackage{amsfonts}

\renewcommand*{\thesection}{\S\enspace\arabic{section}}
\renewcommand*{\dictumwidth}{0.7\textwidth}
\renewcommand*{\raggeddictum}{\raggedright}
\renewcommand*{\raggeddictumtext}{}

\addtokomafont{disposition}{\rmfamily\mdseries}
\addtokomafont{chapterprefix}{\large}
\setkomafont{dictumtext}{\normalfont\normalcolor\itshape\setlength{\parindent}{1em}\noindent}


\begin{document}


\setchapterpreamble{%
  \dictum{%
    The notion of prime number is fundamental in number theory.
    The first part of this chapter is devoted to proving that every integer can be written as a product of primes in an essentially unique way.

    After that, we shall prove an analogous theorem in the ring of polynomials over a field.%
  }%
  \vspace{24pt}%
}

\chapter{Unique Factorization}

\section{Unique Factorization in $\mathbb Z$}


\end{document}

答案2

我只是用

\begin{quote}
{\small ...}
\end{quote} 

答案3

您可以使用以下方式定义与您的示例类似的抽象环境

\newenvironment{abstract}{\rightskip1in\itshape}{}

\begin{abstract}...\end{abstract}只需在你的之后使用\chapter,然后\section在之后开始即可。

答案4

输出

章节开头的摘要可以使用“引用环境“。为了避免重复每章开头的命令,创建了一个“\newcommand”环境作为序言。在这里,我创建了一个名为“\chapterabstract”的新命令。对于上面和下面的几行,已经使用了抽象的“\rule”命令,以避免白色空间在使用抽象的“\vskip”命令的底行之后。 \lipsum 环境用于虚拟文本。

%===============Chapter abs by Chas============
\documentclass[a4paper,11pt]{report}
\usepackage{times,lipsum}
\usepackage[margin=1in]{geometry}
\usepackage[onehalfspacing]{setspace}

\newcommand{\chapabstract}[1]{
    \begin{quote}
        \singlespacing\small
        \rule{14cm}{1pt}
        #1
        \vskip-4mm
        \rule{14cm}{1pt}
\end{quote}}

\begin{document}

\chapter{An Abstract at the Start of Each Chapter}
\chapabstract{\lipsum[2]}

\lipsum[2-3]
 
\chapter{Introduction}
\chapabstract{\lipsum[1]}

\lipsum[1]
\end{document}

参考:https://www.youtube.com/watch?v=dF2lCIFoRlI

相关内容