Hi Stefano
when testing this you may also need to add the following definition of \and
latex_elements['preamble'] = r"""
% One line per author on title page
\DeclareRobustCommand{\and}%
{\end{tabular}\kern-\tabcolsep\\\begin{tabular}[t]{c}}%
"""
(this is the content of my matplotlib PR I linked to)
If not using this, then \and simply separates horizontally: this is
hard-coded in LaTeX source code for title page mark-up.
Using however the above redefinition I get a nice
John Smith
Michael Jackson
Angel de Vicente
in output on frontpage.
With LaTeX's \\ as in
'John Smith \\\\ Michael Jackson \\\\ Angel de Vicente',
or
r'John Smith \\ Michael Jackson \\ Angel de Vicente',
the names are centered around identical vertical
axis, it gives a bad ragged look, like this
John Smith
Michael Jackson
Angel de Vicente
And as Takeshi pointed out one should use the latex_documents config variable
latex_documents = [
('index',
'foo.tex',
'Test',
'John Smith \\and Michael Jackson \\and Angel de Vicente',
'manual')
]
Cheers,
Jean-François