summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-08-24 17:42:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-08-24 17:42:36 (GMT)
commit626c0aabe8f6d33b6af9e180277c3c3e95433fdb (patch)
tree0ba2c80660ed7e18d54ea1c113726ffbce1deb22
parent7543997d74785910d80e96491f7ff052c5056515 (diff)
downloadcpython-626c0aabe8f6d33b6af9e180277c3c3e95433fdb.zip
cpython-626c0aabe8f6d33b6af9e180277c3c3e95433fdb.tar.gz
cpython-626c0aabe8f6d33b6af9e180277c3c3e95433fdb.tar.bz2
fix pdf building by teaching latex the right encoding package
-rw-r--r--Doc/conf.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index 1bb8e50..a84f9c3 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -148,6 +148,9 @@ latex_preamble = r'''
# Documents to append as an appendix to all manuals.
latex_appendices = ['glossary', 'about', 'license', 'copyright']
+# Get LaTeX to handle Unicode correctly
+latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}'}
+
# Options for the coverage checker
# --------------------------------