[Python-checkins] r66595 - in doctools/trunk/doc: concepts.rst conf.py

georg.brandl python-checkins at python.org
Wed Sep 24 18:18:45 CEST 2008


Author: georg.brandl
Date: Wed Sep 24 18:18:45 2008
New Revision: 66595

Log:
Use palatino for the Sphinx docs.


Modified:
   doctools/trunk/doc/concepts.rst
   doctools/trunk/doc/conf.py

Modified: doctools/trunk/doc/concepts.rst
==============================================================================
--- doctools/trunk/doc/concepts.rst	(original)
+++ doctools/trunk/doc/concepts.rst	Wed Sep 24 18:18:45 2008
@@ -129,11 +129,6 @@
   documents or document-containing directories with such names.  (Using ``_`` as
   a prefix for a custom template directory is fine.)
 
-.. toctree::
-
-   x
-
-note [#]_.
 
 .. rubric:: Footnotes
 
@@ -147,5 +142,3 @@
        constructs ``*``, ``?``, ``[...]`` and ``[!...]`` with the feature that
        these all don't match slashes.  A double star ``**`` can be used to match
        any sequence of characters *including* slashes.
-
-.. [#] 3rd note.

Modified: doctools/trunk/doc/conf.py
==============================================================================
--- doctools/trunk/doc/conf.py	(original)
+++ doctools/trunk/doc/conf.py	Wed Sep 24 18:18:45 2008
@@ -126,7 +126,9 @@
 #latex_use_parts = True
 
 # Additional stuff for the LaTeX preamble.
-#latex_preamble = ''
+latex_elements = {
+    'fontpkg': '\\usepackage{palatino}'
+}
 
 # Documents to append as an appendix to all manuals.
 #latex_appendices = []


More information about the Python-checkins mailing list