如何将标题放在两列页面的上方

如何将标题放在两列页面的上方

我只想要一个标准标题,然后开始一个 2 列页面 - 但是当我使用此代码时,它会将所有内容放在下一页(因为它会插入一个新页面)。我如何取消插入新页面或以其他方式插入标题。

 \documentclass[11pt,twoside,a4paper,twocolumn]{article}
 \begin{document}.


\twocolumn[{%
 \centering
 \LARGE The Title \\[1.5em]
 \large Author: Anton van der Vegt\\[1em]
 \normalsize
}]`enter code here`

答案1

我不知道有什么问题

\documentclass[11pt,twoside,a4paper,twocolumn]{article}

\usepackage{lipsum}

\begin{document}

\title{The Title}
\author{Anton van der Vegt}
\date{}
\maketitle

\lipsum

\end{document}

在此处输入图片描述

如果你确实想以不同的格式设置标题,它也可以毫无问题地工作:

\documentclass[11pt,twoside,a4paper,twocolumn]{article}

\usepackage{lipsum}

\begin{document}

\twocolumn[{%
 \centering
 \LARGE The Title\\[1.5em]
 \large Author: Anton van der Vegt\\[1em]
}]

\lipsum

\end{document}

在此处输入图片描述

答案2

strip使用包中的环境很容易cuted

\documentclass[11pt, twoside, a4paper, twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage{cuted}
\usepackage{lipsum}

 \begin{document}.

\begin{strip}%
 \centering
 \LARGE The Title \\[1.5em]
 \large Author: Anton van der Vegt\\[1em]
 \normalsize
\end{strip}

\lipsum[1-6]

\end{document} 

在此处输入图片描述

相关内容