Page Layout ⇒ Add a new Abstract field
Add a new Abstract field
I'm using IEEETran to write and article.
The problem is that in my country as many others we have to make 2 abstracts, one in our language and other in english.
I just wanna know how to add a new field do write the 2 abstracts.
I've tryed edit unsucessfuly the class file of IEEETran.
Does anybody have and awnser for that?
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Add a new Abstract field
Code: Select all
\documentclass{IEEEtran}
\begin{document}
\begin{abstract}
First abstract
\end{abstract}
\renewcommand{\abstractname}{Abstractorama}
\begin{abstract}
Second abstract
\end{abstract}
\end{document}