在 IEEEtran 中保持文本高度一致

在 IEEEtran 中保持文本高度一致

在 latex 中编译以下代码时:

\documentclass[conference]{IEEEtran}
\usepackage{graphicx}
\usepackage{lipsum}  

\begin{document}

\begin{figure}
    \centering
    \includegraphics[width=\linewidth]{example-image-a}
    \caption{Caption}
    \label{fig:enter-label}
\end{figure}

\lipsum[1-8]

\end{document}

生成以下输出: 在此处输入图片描述

列之间没有对齐,但这是我需要提交的会议的要求。Latex 有办法自动修复这个问题吗?还是需要在每个图后手动添加 \vspace{}?

答案1

如果这是会议要求,他们应该\textfloatsep解决它。

\documentclass[conference]{IEEEtran}
\usepackage{graphicx}
\usepackage{lipsum}  

\advance\textfloatsep by \fill

\begin{document}

\begin{figure}
    \centering
    \includegraphics[width=\linewidth]{example-image-a}
    \caption{Caption}
    \label{fig:enter-label}
\end{figure}

\lipsum[1-9]

\end{document}

相关内容