English 中文(简体)
How to manually equalize columns in an IEEE paper if using BibTex?
原标题:

IEEE conference publications in two-column format require authors to manually equalize the lengths of the columns on the last page of the final submission. I have typically done this by inserting a ewpage where necessary -- which usually ends up being somewhere amidst my (manually entered) references.

However, I have recently begun using BibTeX to manage references, and have now run into a problem: my last page contains only a few (generated) references, and I can t figure out how to manually equalize the columns.

The last page is the tail end of what is generated by:

ibliographystyle{IEEEtran}
ibliography{IEEEabrv,library}

Any ideas on how I can equalize the columns while continuing to use BibTeX?

最佳回答

I went back to RTFM again, and it turns out this is addressed right in "How to Use the IEEEtran LaTeX Class" by Michael Shell (maintainer). Section XIV notes that IEEEtran helpfully provides the IEEEtriggeratref{} command for just this purpose. By default, it fires a ewpage at the given BibTeX reference number. You can even change the command to fire with IEEEtriggercmd{}.

问题回答

I have submitted to both ACM and IEEE conferences and the easiest thing for me has been using:

usepackage{flushend}

I ve heard it doesn t always work well, but it s been great for me

http://www.ctan.org/pkg/flushend

It can also be done by using the balance package. You simply include the balance package in the preamble (usepackage{balance}) and insert alance some place on the last page of your document (for instance right in front of the references). However, I m not sure if it s working if the last page (both columns) is completely full of references...

IEEE requires authors to equalize the lengths of the columns on the last page.

ACM makes us do this too. I just wind up inserting vfillreak by hand either in the main text or somewhere in the .bbl file, wherever it makes the columns balance. By the time camera-ready copy goes to ACM, they want the .bbl file inlined by hand anyway, so tinkering by hand does not present an additional hardship.

The reference-number trick might be nice except I never use numbered references :-)

The multicols environment works only if you re luck and your last page comes out exactly as bibliography.

It would be extremely good (and not so difficult) if some enterprising hacker would build the "balance the two columns in the last page" functionality straight into LateX s output routine. The flexibility is there in the underlying engine, and it would make a lot of people happy.

Not sure if multicol conflicts with bibtex at all, and I don t have time to check, sorry. But try this:

use the multicol package:

usepackage{multicol} in your preamble, then:

egin{multicols}{2}
ibliographystyle{IEEEtran}
ibliography{IEEEabrv,library}
end{multicols}

Multicol automatically balances columns. I would recomend using it through out your document, instead of using the .cls or .sty s twocolumn option.





相关问题
Effective Version Control for Slides

I have to maintain a huge set of training material in forms of slides. At a first glance, I ve noticed there s no support for version control in OpenOffice OOImpress (but I might be wrong on this). ...

Maths in LaTex table of contents

I am trying to add a table of contents for my LaTex document. The issue I am having is that this line: subsubsection{The expectation of (X^2)} Causes an error in the file that contains the ...

Using vim s `gqap sometimes indents unusually

For the life of me, I cannot figure out the cause of this: when writing in LaTeX documents, I like to keep my line width to maximum of 80 characters. As such, I will execute the vim command gqap and ...

aligning math equations in Latex

I am trying to align the following equations around the equal sign. What can I do? Thanks! I am using the AMSMath package $$mddot{x}_{1}-K(x_{2}+x_{12})+C(dot{x}_{12}+dot{x}_{2})+2Cdot{x}_{1} ...

LaTeX output does not update

I have just begun using LaTeX. I am working in Windows and am using TeXnicCenter as my editor. When I build and output, having the following code: documentclass{article} egin{document} This is a ...

How to put line break in a math

I d like to express the following sentence (source_location is also italic, it s not correctly rendered): Each entry has a list of tuple: < source_location, R/W, trip_counter, occurrence, killed ...

热门标签