Frequently, when using revtex4 or revtex4.1, in two column format, one wants to typeset a long equation. The standard way to do this is by using the widetext environment (see this question).
Similar to revtex4, there is a style class called pnastwo, which is a two-column style class. However, unlike revtex4, pnastwo has no support for the widetext environment.
How does one typeset a long equation in single-column mode when using the documentclass pnastwo?
Here is a minimal example that compiles.
\documentclass{pnastwo}
\usepackage[pdftex]{graphicx, color}
\DeclareGraphicsRule{.pdftex}{pdf}{.pdftex}{}
\usepackage{amsmath,amssymb,latexsym}
\usepackage[english]{babel}
\usepackage{lipsum}
\contributor{Submitted to Proceedings
of the National Academy of Sciences of the United States of America}
\url{www.pnas.org/cgi/doi/10.1073/pnas.0709640104}
\copyrightyear{2008}
\issuedate{Issue Date}
\volume{Volume}
\issuenumber{Issue Number}
\begin{document}
\title{Title Goes Here.}
\author{First{1}{University of Cambridge, Cambridge,
United Kingdom},
Second{2}{Universidad de Murcia, Bioquimica y Biologia
Molecular, Murcia, Spain}, \and Third\affil{2}{}}
\contributor{Submitted to Proceedings of the National Academy of Sciences
of the United States of America}
\maketitle
\begin{article}
\begin{abstract}
\lipsum[1]
\end{abstract}
\keywords{\LaTeX | problems}
\noindent{\bf Significance:} Why?
\vspace{5mm}
\dropcap{T}his is some sample text that I want. \lipsum[3]
% this is the wide equation I want to type
\begin{equation}
Lots of math goes here. Lots of math goes here. Lots of math goes here. Lots of math goes here. Lots of math goes here. Lots of math goes here.
\end{equation}
\lipsum[3]
\end{article}
\end{document}
