0

I have a two-column article with many figures, which work out to a little less than 1 figure per column over all pages. In the text, some of the figures are mentioned in bunches, so that a naive placement ends up having pages with any number of figures in each column.

Is it possible to constrain the layout such that at most one figure is allowed at the top of each column?

I do not care where a given figure ends up being placed.

I am currently distributing the figures by hand, but that is very fragile. In fact, I already need to maintain two placement schemes for slightly different typesetting.

I cannot put two figures each in a full-width minipage, since graphics and captions can have ungainly differences in height.

ntessore
  • 103

1 Answers1

1

If you set

\setcounter{topnumber}{1}

Only one float will appear at the top of a column.

You can set the other values to 0 such as

\setcounter{bottomnumber}{0}

or set \def\fps@figure{t}so only top floats are considered for \begin{figure} unless other areas added by the optional argument such as [p]

David Carlisle
  • 757,742