tags:

views:

68

answers:

4

Hello,

I'm writing a scientific paper in latex. In this section:

\begin{abstract}
This is the paper's abstract \ldots
\end{abstract}

How can i make so that the Abstract text (before the text This is the paper's..) apper in italic? What should i change?

Thanks!

+1  A: 

This is probably the naive way to do it.

\begin{abstract}
\emph{Your text here}
\end{abstract}
Tom
+5  A: 

Sort of a hack, but try this:

\renewcommand\abstractname{\textit{Abstract}}
David Zaslavsky
It worked, thanks!
qwerty
+3  A: 

Try \def\abstractname{{\it Abstract}}.

lhf
A: 

That should probably go in your .sty document. This is often times provided by whomever you are submitting to so the format is all the same. \it{...} is the mark-up you are looking for though.

plor
The correct prefix form is \textit. Otherwise it's {\it ...} because in \it{...} the italics is *not* restricted to the block.
lhf