LaTeX Creating a title in Latex while using two columns

  • Thread starter Thread starter Shukie
  • Start date Start date
  • Tags Tags
    Columns Latex
AI Thread Summary
To create a title that spans the entire width of the page while having the text in two columns, using the LaTeX document class `\documentclass[twocolumn]{article}` is not suitable, as it places the title in the left column. Instead, the `\maketitle` command should be utilized correctly to achieve the desired layout. For a format similar to the referenced paper, using the revtex4 class is recommended, despite its designation as "obsolete" in some repositories. Users can download the source files from arXiv for examples and guidance. The revtex4 class allows for a proper title layout while maintaining a two-column format for the body text.
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.
 

Similar threads

Back
Top