diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-10-15 18:13:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 18:13:13 (GMT) |
commit | ef6cc2b1b3b70fba03e994e7a61926c8e2958867 (patch) | |
tree | 883961ff17cec4a6058b6d46cc98fe3698fee80f /src/latexgen.cpp | |
parent | de56d1864473485861bac89436337e8114fb2f6b (diff) | |
parent | 89c4556edfc7ca5cac9c2e0171e3be9441990a91 (diff) | |
download | Doxygen-ef6cc2b1b3b70fba03e994e7a61926c8e2958867.zip Doxygen-ef6cc2b1b3b70fba03e994e7a61926c8e2958867.tar.gz Doxygen-ef6cc2b1b3b70fba03e994e7a61926c8e2958867.tar.bz2 |
Merge pull request #8100 from albert-github/feature/bug_latex_fig_space
Space around images in LaTeX output is sometimes a bit large
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 1d55dd6..418afa7 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -774,7 +774,8 @@ static void writeDefaultHeaderPart1(FTextStream &t) // End of preamble, now comes the document contents t << "%===== C O N T E N T S =====\n" "\n" - "\\begin{document}\n"; + "\\begin{document}\n" + "\\raggedbottom\n"; QCString documentPre = theTranslator->latexDocumentPre(); if (!documentPre.isEmpty()) { |