Document ClassesHelp with class IEEEtran - how to leave a blank line

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
apleto
Posts: 6
Joined: Wed Feb 04, 2009 10:24 pm

Help with class IEEEtran - how to leave a blank line

Post by apleto »

I am using class IEEEtran for a conference paper:

Code: Select all

\documentclass[conference]{IEEEtran}
However, when I insert keywords, using:

Code: Select all

\begin{IEEEkeywords}...\end{IEEEkeywords}
the keywords appear just under the abstract, without a blank line between them.

Is there anything simple that I can do in order to have a blank line between the abstract and the keywords, without modifying the class itself?

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Help with class IEEEtran - how to leave a blank line

Post by Stefan Kottwitz »

Hi Apleto,

you could use a skip or \vspace before the IEEEkeywords environment, for example:

Code: Select all

...
\end{abstract}
\bigskip
\begin{IEEEkeywords}...
Stefan
LaTeX.org admin
apleto
Posts: 6
Joined: Wed Feb 04, 2009 10:24 pm

Re: Help with class IEEEtran - how to leave a blank line

Post by apleto »

Thanks!
Post Reply