我正在使用一个使用几何的类文件(WileyNJD-v2.cls)在期刊上撰写一篇文章,但我想在一列上有一个枚举列表,该列表从两列的位置开始(漂亮之后),然后继续两页,然后切换回两列。
我有以下示例:
\documentclass[twocolumn]{article}
\usepackage{xcolor}
\usepackage{blindtext}
\begin{document}
\blindtext
\noindent\parbox{\textwidth}{
\begin{enumerate}
\item
\textcolor{orange!50!black}\blindtext[1]
\item \textcolor{blue!50!black}\blindtext[2]
\item \textcolor{green!50!black}\blindtext[3]
\item
\textcolor{orange!50!black}\blindtext[4]
\item \textcolor{blue!50!black}\blindtext[5]
\item \textcolor{green!50!black}\blindtext[6]
\item
\textcolor{orange!50!black}\blindtext[7]
\item \textcolor{blue!50!black}\blindtext[8]
\item \textcolor{green!50!black}\blindtext[9]
\end{enumerate}
}
\blindtext[10]
\end{document}
我得到的是附件 pdf(三个 png),如下所示:
请注意,png 可能看起来不太清楚,但基本上就是这样。双列文本结束该列,然后转到下一列并跨越页面上的第一列。它超出页面范围(因为要放在一列中的文本也很长),然后返回到下一页的一列。我怎样才能让双列首先调整并跨越两列,然后开始跨越两列的单列文本并继续到下一页?非常感谢您的帮助,如果需要进一步说明,请告诉我。
答案1
感谢@Bernard,解决方案如下:
\documentclass[twocolumn]{article}
\usepackage{xcolor,cuted}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{strip}
\begin{enumerate}
\item
\textcolor{orange!50!black}\blindtext[1]
\item \textcolor{blue!50!black}\blindtext[2]
\item \textcolor{green!50!black}\blindtext[3]
\item
\textcolor{orange!50!black}\blindtext[4]
\item \textcolor{blue!50!black}\blindtext[5]
\end{enumerate}
\end{strip}
\blindtext[10]
\end{document}