与 flushend 相关的问题(最后一次引用被剪切,等等)

与 flushend 相关的问题(最后一次引用被剪切,等等)

在使用 flushend 包平衡最后一页的列时,我遇到了一些问题。我主要用它来平衡参考书目。Flushend 倾向于 (1) 删除最后的引用,(2) 导致间距不均匀,和/或 (3) 在第一列末尾重复引用。这似乎与安装有关,因为我的同事没有遇到这些问题。我在 Windows 上的 TexLive 2013(完整安装)中使用 pdflatex。

以下是出现问题 (1) 和 (2) 的 MWE:

\documentclass[conference, 9pt]{IEEEtran}
\usepackage{flushend}
% \usepackage{balance}

\begin{document}
\nocite{*}
% \balance

\begin{thebibliography}{1}

\bibitem{test1}
J.~Doe and J.~Doe, ``This is a paper title, this is a paper title, this is a
  paper title, this is a paper title,'' in \emph{Some Proceedings}, Somewhere,
  Somewhere, 2014.

\bibitem{test2}
------, ``This is a paper title, this is a paper title, this is a paper title,
  this is a paper title,'' in \emph{Some Proceedings}, Somewhere, Somewhere,
  2014.

\bibitem{test3}
------, ``This is a paper title, this is a paper title, this is a paper title,
  this is a paper title,'' in \emph{Some Proceedings}, Somewhere, Somewhere,
  2014.

\bibitem{test4}
------, ``This is a paper title, this is a paper title, this is a paper title,
  this is a paper title,'' in \emph{Some Proceedings}, Somewhere, Somewhere,
  2014.

\bibitem{test5}
------, ``This is a paper title, this is a paper title, this is a paper title,
  this is a paper title,'' in \emph{Some Proceedings}, Somewhere, Somewhere,
  2014.

\bibitem{test6}
------, ``This is a paper title, this is a paper title, this is a paper title,
  this is a paper title,'' in \emph{Some Proceedings}, Somewhere, Somewhere,
  2014.

\end{thebibliography}

\end{document}

输出结果如下: flushend 输出

以下是使用平衡包的输出(不理想但更好): 平衡输出

答案1

错误修复 flushed.sty,v3.1 2015/04/14,软件包版本有一些额外的改进。

现在的输出如下: 没有选项的 flushend

要更正最后一行的缩进,请使用包选项keeplastbox使用选项 keeplastbox 刷新

为了抑制右柱上多余的胶水扩散,另外使用包装选项nospread

使用选项 keeplastbox 和 nosread 进行 flushend

为了使右列更短使用\atColsEnd{\vskip10pt}

flushend atColsEnd 正

为了使右列更长,使用\atColsEnd{\vskip-20pt}

flushend atColsEnd 负数

相关内容