General ⇒ problem with title in a two-column article
problem with title in a two-column article
I haven't find a thread that deals with problem..., apologies if it already exists.
I'm trying to produce an article with 2 columns. However, I want the title and abstract to span the whole text width, and I want the thanks footnote to appear below the first column. I want the text to follow immediately after the title. I'm attaching a pdf file that shows the look I'm shooting for.
I tried to create a separate title page, but then I get the title in a separate page from the rest of the text.
Using a minipage for the title and abstract didn't work either. I got the abstract all mixed up with the regular text.
thanks for your help!
Ale
- Attachments
-
- titlepage_2c.pdf
- (131.55 KiB) Downloaded 838 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
problem with title in a two-column article
[1] The TeX Catalogue Online, Topic Index - Science
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
problem with title in a two-column article
Code: Select all
\documentclass[twocolumn,a4paper]{article}
\usepackage{lipsum}
\begin{document}
\twocolumn[%
% Title and authors
\begin{center}
{\huge\sffamily Understanding European Real Exchange Rates}\\
\vspace{2ex}
By \textsc{Mario J. Crucini, Chris I. Telmer, and
Marios Zachariadis\footnotemark[1]}
\end{center}
% Abstract
\begin{quotation}
\small
We study good-by-good deviations from the Law-of-One-Price for over 1800
retail good and services between all European Union (EU) for the years
1975, 1980, 1985 and 1990. We find that for each of these years\ldots
\end{quotation}
\vspace{2ex}%
]
\footnotetext[1]{This paper has been written\ldots}
% Article body
\lipsum[1-10]
\end{document}
Re: problem with title in a two-column article
Re: problem with title in a two-column article
So far, so good.
