From: Benjamin Peterson Date: Mon, 24 Aug 2009 17:42:36 +0000 (+0000) Subject: fix pdf building by teaching latex the right encoding package X-Git-Tag: v2.7a1~622 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=626c0aabe8f6d33b6af9e180277c3c3e95433fdb;p=thirdparty%2FPython%2Fcpython.git fix pdf building by teaching latex the right encoding package --- diff --git a/Doc/conf.py b/Doc/conf.py index 1bb8e508232a..a84f9c3e172e 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 # --------------------------------