From 626c0aabe8f6d33b6af9e180277c3c3e95433fdb Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 24 Aug 2009 17:42:36 +0000 Subject: [PATCH] fix pdf building by teaching latex the right encoding package --- Doc/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/conf.py b/Doc/conf.py index 1bb8e508232..a84f9c3e172 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 # --------------------------------