如何在列模式 ieeeconf latex 之间切换

如何在列模式 ieeeconf latex 之间切换

我正在使用模板在 Latex 上撰写论文ieeeconf.cls,但我不知道如何从twocolumn模式切换到onecolumn附录模式。

我的main.tex样子如下:

\input{sect/01-introduction.tex}
\input{sect/02-analysis.tex}
\input{sect/03-features.tex}
\input{sect/04-more-analysis.tex}
\input{sect/05-conclusion.tex}

\appendix
\input{sect/appendix.tex}

附录文件如下所示。

\newpage % I want to push the appendix to a new page after conclusion
\onecolumn % This kinda works, but leaves one page blank for no reason
\section{Appendix} \label{appendix}

\begin{figure}[htb!]
\includegraphics[width = \columnwidth, height = 5cm]{images/density/density_0.png}
\caption{Digit '0'}
\label{fig:digit_0_density}
\end{figure}

答案1

由于\onecolumn确实发出了 a,\clearpage它本身就已经开始了一个新页面。您会得到一个额外的空白页,因为您正在使用\newpage它之前的内容。如果您忽略它\newpage,您的附录将以单列模式从新页面开始,正如您所希望的那样。因此您的文件应如下所示:

\onecolumn
\section{Appendix}\label{appendix}

\begin{figure}[htb!]
\includegraphics[width = \columnwidth, height = 5cm]{images/density/density_0.png}
\caption{Digit '0'}
\label{fig:digit_0_density}
\end{figure}

相关内容