Re: [sphinx-users] One author per line in latex output?

2020-03-08 Thread Stefano David
Hi, On Monday, 2 March 2020 16:10:56 UTC+1, Angel de Vicente wrote: > > Assume in conf.py I have: > >author = 'John Smith \\ Michael Jackson' > As Jean-Francois already wrote, it should suffice to write author = 'John Smith \\and Michael Jackson \\and Angel de Vicente' to have the result

Re: [sphinx-users] One author per line in latex output?

2020-03-05 Thread Komiya Takeshi
Hi, How about using `latex_document`? It accepts LaTeX macros for authors. https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-latex_documents Thanks, Takeshi KOMIYA 2020年3月2日(月) 23:58 Angel de Vicente : > > Hi, > > I would like to give in author variable (conf.py) a list of

Re: [sphinx-users] One author per line in latex output?

2020-03-02 Thread Angel de Vicente
Assume in conf.py I have: author = 'John Smith \\ Michael Jackson' After generating the latex output, and running latex to get the PDF file, I would just like that Jonh Smith and Michael Jackson are in different lines (right now all authors end up in just a single line in the PDF file, so

Re: [sphinx-users] One author per line in latex output?

2020-03-02 Thread Monir Bouhmidi
What do you mean? man. 2. mar. 2020, 15:58 skrev Angel de Vicente : > Hi, > > I would like to give in author variable (conf.py) a list of authors, so > that in the LaTeX output, each author is printed in a different line. I > tried to Google for this and tried to put \\ etc. in the author

[sphinx-users] One author per line in latex output?

2020-03-02 Thread Angel de Vicente
Hi, I would like to give in author variable (conf.py) a list of authors, so that in the LaTeX output, each author is printed in a different line. I tried to Google for this and tried to put \\ etc. in the author string, but so far without any luck. Is there any way to get this behaviour?