Page Layout ⇒ Change of float placement after upgrading
Change of float placement after upgrading
https://bioinfo.se/wp-content/uploads/2 ... sFold2.pdf
https://bioinfo.se/wp-content/uploads/2 ... 1.40.3.pdf
Any ideas ?
Yours
ARne
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Change of float placement after upgrading
There is nothing much to do here, but to amend your document.
Change of float placement after upgrading
The template has not changed since 2003 and is the official template from Oxford University Press, I tried to figure out what was the problem (played with the parameters below but nothing really helped). Unfortunately my tex knowledge is not good enough to try to figure out what the problem is. Thanks for any help.
Code: Select all
% The total number of floats that can be allowed on a page.
\setcounter{totalnumber}{20}
% The maximum number of floats at the top and bottom of a page.
\setcounter{topnumber}{10}
\setcounter{bottomnumber}{10}
% The maximum part of the top or bottom of a text page that can be
% occupied by floats. This is set so that at least four lines of text
% fit on the page.
\renewcommand\topfraction{.9}
\renewcommand\bottomfraction{.9}
% The minimum amount of a text page that must be occupied by text.
% This should accomodate four lines of text.
\renewcommand\textfraction{.06}
% The minimum amount of a float page that must be occupied by floats.
\renewcommand\floatpagefraction{.94}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Change of float placement after upgrading
welcome to the forum!
Could you perhaps post a sample document, that shows the problem? A reduced example of your code with images. Or without images, using the demo option of the graphicx package, either via
\usepackage[demo]{graphicx}
or using demo
as document class option at the beginning of the document. With a 
Stefan