From 083f5922584755c057b5802098007118d84f8963 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Mon, 15 Feb 2021 14:28:32 +1300 Subject: [PATCH] A few PDF improvements (#1527) Ref: #1342 1. Use the `oneside` option of the memoir class, which is better for reading on a screen and anything that isn't a bound book. 2. For now hardcode ToC depth to section. 3. Clear page after the title. (cherry picked from commit f7c79297b4d850bc8ec2f2b6eea8fbc941013b4c) --- CHANGELOG.md | 4 ++++ src/Writers/LaTeXWriter.jl | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b259623c..fdf07c7203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ * ![Enhancement][badge-enhancement] `doctest()` no longer throws an error if cleaning up the temporary directory fails for some reason. ([#1513][github-1513], [#1526][github-1526]) +* ![Enhancement][badge-enhancement] Cosmetic improvements to the PDF output. ([#1342][github-1342], [#1527][github-1527]) + * ![Bugfix][badge-bugfix] Script-type doctests that have an empty output section no longer crash Documenter. ([#1510][github-1510]) * ![Bugfix][badge-bugfix] When checking for authentication keys when deploying, Documenter now more appropriately checks if the environment variables are non-empty, rather than just whether they are defined. ([#1511][github-1511]) @@ -694,6 +696,7 @@ [github-1337]: https://github.com/JuliaDocs/Documenter.jl/issues/1337 [github-1338]: https://github.com/JuliaDocs/Documenter.jl/issues/1338 [github-1339]: https://github.com/JuliaDocs/Documenter.jl/pull/1339 +[github-1342]: https://github.com/JuliaDocs/Documenter.jl/issues/1342 [github-1344]: https://github.com/JuliaDocs/Documenter.jl/issues/1344 [github-1345]: https://github.com/JuliaDocs/Documenter.jl/pull/1345 [github-1349]: https://github.com/JuliaDocs/Documenter.jl/pull/1349 @@ -742,6 +745,7 @@ [github-1519]: https://github.com/JuliaDocs/Documenter.jl/pull/1519 [github-1520]: https://github.com/JuliaDocs/Documenter.jl/pull/1520 [github-1526]: https://github.com/JuliaDocs/Documenter.jl/pull/1526 +[github-1527]: https://github.com/JuliaDocs/Documenter.jl/pull/1527 [julia-38079]: https://github.com/JuliaLang/julia/issues/38079 diff --git a/src/Writers/LaTeXWriter.jl b/src/Writers/LaTeXWriter.jl index ed6f3a2b26..03fe3d495e 100644 --- a/src/Writers/LaTeXWriter.jl +++ b/src/Writers/LaTeXWriter.jl @@ -214,11 +214,13 @@ function writeheader(io::IO, doc::Documents.Document) isfile(custom) ? cp(custom, "custom.sty"; force = true) : touch("custom.sty") preamble = """ - \\documentclass{memoir} + \\documentclass[oneside]{memoir} \\usepackage{./documenter} \\usepackage{./custom} + \\settocdepth{section} + \\title{ {\\HUGE $(doc.user.sitename)}\\\\ {\\Large $(get(ENV, "TRAVIS_TAG", ""))} @@ -229,6 +231,7 @@ function writeheader(io::IO, doc::Documents.Document) \\frontmatter \\maketitle + \\clearpage \\tableofcontents \\mainmatter