From 5b4dfa183a5b8742d36d54b9f8c61ddfb7b070a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B?= <2589111+jfbu@users.noreply.github.com> Date: Sun, 17 Nov 2024 09:22:52 +0100 Subject: [PATCH 1/2] Close #13130 (LaTeX docs about index creation) --- CHANGES.rst | 4 ++++ doc/usage/configuration.rst | 3 +++ 2 files changed, 7 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index ca123d89f43..974a9e7de93 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -24,5 +24,9 @@ Bugs fixed * #13060: HTML Search: use ``Map`` to store per-file term scores. Patch by James Addison +* #13130: LaTeX docs: ``pdflatex`` index creation may fail for index entries + in French. See :confval:`latex_use_xindy`. + Patch by Jean-François B. + Testing ------- diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index 40fe5931250..b65b9b79f79 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -3157,6 +3157,9 @@ These options influence LaTeX output. * The default is :code-py:`False` for :code-py:`'pdflatex'`, but :code-py:`True` is recommended for non-English documents as soon as some indexed terms use non-ASCII characters from the language script. + Attempting to index a term whose first character is non-ASCII + will break the build, if :confval:`latex_use_xindy` is left to its + default :code-py:`False`. Sphinx adds some dedicated support to the :program:`xindy` base distribution for using :code-py:`'pdflatex'` engine with Cyrillic scripts. From 0e87bfe01bbc351c783d8116d8868daf024ed289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20B=2E?= <2589111+jfbu@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:09:39 +0100 Subject: [PATCH 2/2] Remove stray empty line in CHANGES.rst --- CHANGES.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 974a9e7de93..d356064fb8e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -23,7 +23,6 @@ Bugs fixed * #13060: HTML Search: use ``Map`` to store per-file term scores. Patch by James Addison - * #13130: LaTeX docs: ``pdflatex`` index creation may fail for index entries in French. See :confval:`latex_use_xindy`. Patch by Jean-François B.