从任意列切换到单列

从任意列切换到单列

我正在写一篇 IEEE 会议论文。论文的格式是,\documentclass[conference]{IEEEtran}为了插入宽图像,我使用图像切换到一列,\onecolumn该图像占据了我页面的一半。之后,当我再次发出命令时,\twocolumn它导致分页,此后的两列内容出现在下一页。有人能帮我看看我该怎么做才能防止分页吗?

答案1

您可以在页面顶部放置一张横跨两列的宽图像,方法是使用两列浮点数(figure*),也可以使用可选参数\twocolumn指定要放在两列上的跨越文本,因此

在此处输入图片描述

\documentclass[conference]{IEEEtran}
\usepackage{graphicx}
\begin{document}

\twocolumn[%
{\includegraphics[width=\textwidth]{example-image}}%
]

\loop
\stepcounter{enumi}
\ifnum\value{enumi}<1000
\roman{enumi}
\repeat



\end{document}

答案2

从任意列切换到单列

\begin{multicols}{1}[{
\begin{table*}[!htbp]
    \caption{<table caption>}
    \centering
    <Your Table Contents>
\end{table*}
}]
\end{multicols}

从任意列切换到双列

\begin{multicols}{2}[{
\begin{table*}[!htbp]
    \caption{<table caption>}
    \centering
    <Your Table Contents>
\end{table*}
}]
\end{multicols}

相关内容