summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2017-12-07 20:54:25 +0200
committerMarius Gedminas <marius@gedmin.as>2017-12-07 20:54:25 +0200
commit8d1aa0d9eaf4323670748c12e680ac50f92fc8dd (patch)
treecaaf636c659756f46f266f61947f411f2d4eff9b
parentbc32f13a9e66dcde43ff381013a971d1605235d5 (diff)
downloadzope-interface-fix-latex-docs.tar.gz
Use LuaLaTeXfix-latex-docs
See http://www.sphinx-doc.org/en/stable/config.html#confval-latex_engine Ought to fix #111, provided that ReadTheDocs supports LuaLaTeX.
-rw-r--r--docs/conf.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 2ba173b..b3fa2a8 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -188,6 +188,10 @@ latex_elements = {
#'preamble': '',
}
+# pdflatex can't handle Cyrillic out of the box, but xetext/lualatex should be
+# able to cope
+latex_engine = 'lualatex'
+
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
@@ -251,4 +255,4 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
+intersphinx_mapping = {'https://docs.python.org/': None}