diff options
author | Jean-François B <jfbu@free.fr> | 2019-02-04 12:23:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-04 12:23:14 +0100 |
commit | b68d1d10667fc462da9bc78bbd2dd2272ecaa15c (patch) | |
tree | 4b436a8bfda76d26b77faca61eeddf8eb142efb1 | |
parent | 4367e20ab436c734aad0169c87b2cf6811073bb4 (diff) | |
parent | decca71ef7ca9b7e6e352724a267afa6ba7f3948 (diff) | |
download | sphinx-git-b68d1d10667fc462da9bc78bbd2dd2272ecaa15c.tar.gz |
Merge pull request #6005 from jfbu/latex_space_after_author
LaTeX: remove extra space after author on title page in PDF
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | sphinx/texinputs/sphinxhowto.cls | 2 | ||||
-rw-r--r-- | sphinx/texinputs/sphinxmanual.cls | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* LaTeX: Remove extraneous space after author names on PDF title page (refs: #6004) + Testing -------- diff --git a/sphinx/texinputs/sphinxhowto.cls b/sphinx/texinputs/sphinxhowto.cls index 6e4858567..d4a38d4f5 100644 --- a/sphinx/texinputs/sphinxhowto.cls +++ b/sphinx/texinputs/sphinxhowto.cls @@ -46,7 +46,7 @@ {\Large \begin{tabular}[t]{c} \@author - \end{tabular}}\par + \end{tabular}\kern-\tabcolsep}\par \vspace{25pt} \@date \par \py@authoraddress \par diff --git a/sphinx/texinputs/sphinxmanual.cls b/sphinx/texinputs/sphinxmanual.cls index 1ab80d264..864fce080 100644 --- a/sphinx/texinputs/sphinxmanual.cls +++ b/sphinx/texinputs/sphinxmanual.cls @@ -55,7 +55,7 @@ {\LARGE \begin{tabular}[t]{c} \@author - \end{tabular} + \end{tabular}\kern-\tabcolsep \par} \vfill\vfill {\large |