Creating a title in Latex while using two columns

  • Context: LaTeX 
  • Thread starter Thread starter Shukie
  • Start date Start date
  • Tags Tags
    Columns Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 12K views
Shukie
Messages
91
Reaction score
0
I want to create a title that spans the entire width of the page and then below the title, I want the actual text to be in two columns. I am currently using \documentclass[twocolumn]{article}, which puts the entire document into two columns, including the title, which is now in the left column. I want it like this:

http://arxiv.org/PS_cache/arxiv/pdf/1003/1003.1113v2.pdf

Anyone know how to do this? I don't want to use the multicol package, because I'll have to redo the entire layout.
 
Last edited by a moderator:
Physics news on Phys.org
The title shouldn't be in the left column. Are you using the \maketitle command properly?

By the way, in order to get a paper that looks like the one you quote, you should look at revtex (http://authors.aps.org/revtex4/).
 
Q: When I look for revtex in the ubuntu repositories, it is described as "obsolete":
revtex - LaTeX documentstyle from the American Physical Society (obsolete)
Any idea why that might be or what (if anything) is supposed to replace it?
 
Well, the article in question is in revtex4, you can download its source if you need an example. (from the arxiv, this articles "source" should be renamed to a .gz, which is a zip and then extracted. its some eps figures and the tex.)

They're just using
\documentclass[twocolumn,preprintnumbers,amsmath,amssymb]{revtex4}
\title{
On the use of X-ray telescopes for identifying the origin of electrons
and positrons observed by Fermi and PAMELA}

basically.
 
cristo said:
The title shouldn't be in the left column. Are you using the \maketitle command properly?

By the way, in order to get a paper that looks like the one you quote, you should look at revtex (http://authors.aps.org/revtex4/).

I wasn't using \maketitle at all, but it works now that I added it. Cheers.