在使用 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}
输出结果如下:
以下是使用平衡包的输出(不理想但更好):
答案1
错误修复 flushed.sty,v3.1 2015/04/14,软件包版本有一些额外的改进。
现在的输出如下:
要更正最后一行的缩进,请使用包选项keeplastbox
:
为了抑制右柱上多余的胶水扩散,另外使用包装选项nospread
:
为了使右列更短使用\atColsEnd{\vskip10pt}
:
为了使右列更长,使用\atColsEnd{\vskip-20pt}
: