General"abstract" and "resumé" environments

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
nounouuuuu201186
Posts: 36
Joined: Sun May 20, 2012 6:28 am

"abstract" and "resumé" environments

Post by nounouuuuu201186 »

Hi all,
I want to use \begin{abstract} and \end{abstract} for for the abstract in English. And \begin{resumé} and \end{resumé} for the abstract in French.
I want to know how can I define the environment {abstract} and {resumé}?

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

"abstract" and "resumé" environments

Post by cgnieder »

Hi. The abstract environment already exists:

Code: Select all

% arara: pdflatex
\documentclass{article}
\usepackage{lipsum}% for dummy text

\begin{document}
\begin{abstract}
 \lipsum[1]
\end{abstract}
\lipsum

\end{document}
It also works in French:

Code: Select all

% arara: pdflatex
\documentclass{article}
\usepackage[frenchb]{babel}
\usepackage{lipsum}% for dummy text

\begin{document}
\begin{abstract}
 \lipsum[1]
\end{abstract}
\lipsum

\end{document}
resume.png
resume.png (74.7 KiB) Viewed 4032 times
Regards
site moderator & package author
Post Reply