Bruce Eckel schrieb:
> Clarification: we should use \and in the sphinx sources?

I'm speaking of the latex_documents setting, which looks like this:

latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation',
                    'Georg Brandl', 'manual', 1)]

For more than one author, it could look like this:

latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation',
                    'Georg Brandl \\and Someone Else', 'manual', 1)]

If you want to keep the ampersand, you have to write:

latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation',
                    'Georg Brandl \\& Someone Else', 'manual', 1)]

But this is *only* relevant for this config value. Everywhere else,
a simple & is fine.

Georg

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to