Avoid having pages with only the figures

This commit is contained in:
Thomas Dehaeze 2025-04-15 12:12:44 +02:00
parent 7ce1daafbe
commit ddd4022ed5

View File

@ -302,12 +302,17 @@ And then use quotes as:
Note that org-ref links won't work here because the attr latex will be pasted as-is in the .tex file. Note that org-ref links won't work here because the attr latex will be pasted as-is in the .tex file.
** Setspace for controlling line spacing ** Setspace for controlling line spacing
#+begin_src latex #+begin_src latex
\usepackage{setspace} \usepackage{setspace}
\setstretch{1.25} \setstretch{1.25}
#+end_src #+end_src
** Avoid page with only figure
#+begin_src latex
\renewcommand{\topfraction}{.8}
\renewcommand{\floatpagefraction}{.8}
#+end_src
** Parskip ** Parskip
Fine tuning of spacing between paragraphs. See [[https://tex.stackexchange.com/questions/161254/smaller-parskip-than-half-for-koma-script][thread here]]. Fine tuning of spacing between paragraphs. See [[https://tex.stackexchange.com/questions/161254/smaller-parskip-than-half-for-koma-script][thread here]].