如何删除插入以填充页面的空格

如何删除插入以填充页面的空格

我正在使用 IEEEtran 模板进行期刊交易。我需要在末尾插入作者简介。但是当我插入它们时,它们并没有并排出现。相反,它们之间插入了一个很大的空格。如何删除这个空格?

\documentclass[journal,comsoc]{IEEEtran}
\usepackage[T1]{fontenc} %optional
\usepackage{amsmath}
\usepackage[cmintegrals]{newtxmath}
\usepackage{bm} % optional

\begin{document}
    \title{{Paper}}

    \author{Author}

    \maketitle

    \section{Section} 

%bios
\begin{IEEEbiography}{First Author} Some text here.\end{IEEEbiography}

\begin{IEEEbiography}{Second Author} some text here.
\end{IEEEbiography} 
\end{document}

答案1

我能找到的最简单的解决方案是在序言中添加以下内容:

\usepackage{flushend}

答案2

\vskip 0pt plus -1fil只需在环境之间给出IEEEbiography。如果您希望它们太接近,请将 0pt 调整为-2\baselineskip

在此处输入图片描述

\begin{IEEEbiography}{First Author} Some text here. \end{IEEEbiography}
\vskip 0pt plus -1fil

\begin{IEEEbiography}{Second Author} Some text here. 
\end{IEEEbiography}

相关内容