General ⇒ "abstract" and "resumé" environments
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
"abstract" and "resumé" environments
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é}?
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
"abstract" and "resumé" environments
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}
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}