summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-15 18:13:13 (GMT)
committerGitHub <noreply@github.com>2020-10-15 18:13:13 (GMT)
commitef6cc2b1b3b70fba03e994e7a61926c8e2958867 (patch)
tree883961ff17cec4a6058b6d46cc98fe3698fee80f /src
parentde56d1864473485861bac89436337e8114fb2f6b (diff)
parent89c4556edfc7ca5cac9c2e0171e3be9441990a91 (diff)
downloadDoxygen-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')
-rw-r--r--src/latexgen.cpp3
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())
{