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

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

User avatar
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 4122 times
Regards
site moderator & package author
Post Reply