GeneralCommands like \backmatter

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Commands like \backmatter

Post by latexforever »

Hello everyone,

I simply want to know if there is an equivalent to

Code: Select all

abstract
environment in \LaTeX when using a book template.

Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Commands like \backmatter

Post by phi »

Usually there is no abstract in books. Sometimes special summary chapters are used for the same purpose. The standard classes simply use a quotation environment to implement the abstract environment. If you really want a similar abstract environment, you can do the same (here for single-column documents):

Code: Select all

\newcommand*{\abstractname}{Abstract}
  \newenvironment{abstract}{%
        \small
        \begin{center}%
          {\bfseries \abstractname\vspace{-.5em}\vspace{0pt}}%
        \end{center}%
        \quotation
      }%
      {\endquotation}
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Re: Commands like \backmatter

Post by latexforever »

Thanks, it works very well.

I really like this one.

Thanks you.
Post Reply