在双栏文章开始前提出一个定理

在双栏文章开始前提出一个定理

我正在写一篇关于定理的文章,我希望我的文章有两列。我正在使用

\documentclass[a4paper,12pt,twocolumn]{article} 

我想写出这个定理的陈述

\begin{theorem}
statement
\end{theorem}

在双栏文档开始之前。更准确地说,定理的陈述应该在一栏中,然后文章的其余部分应该以双栏格式从下一行开始。

也许有办法将其包含在标题中?有人能帮我吗?谢谢!

答案1

作为后续,这里有一个示例代码:

\documentclass[a4paper,12pt,twocolumn]{article}

\usepackage{cuted}
\usepackage[standard]{ntheorem}
\usepackage{lipsum}

\begin{document}

\begin{strip}
\begin{theorem}[Faustroll]
God is the shortest path from $0$ to $\infty$.
\end{theorem}
\end{strip}

\lipsum

\end{document} 

在此处输入图片描述

相关内容