Jean-François B.
Jean-François B.
Sorry for noise here. On reading more closely the very instructive [overleaf link](https://www.overleaf.com/learn/latex/Articles/An_overview_of_technologies_supporting_the_use_of_colour_emoji_fonts_in_LaTeX) provided by @n-peugnet, especially [XeTeX and OpenType color fonts](https://www.overleaf.com/learn/latex/Articles/An_overview_of_technologies_supporting_the_use_of_colour_emoji_fonts_in_LaTeX#XeTeX_and_OpenType_color_fonts), I realized that the method I indicated would...
B&W success using this set-up: ``` latex_engine = 'xelatex' latex_theme = 'howto' latex_elements = { "preamble": r""" \setmainfont{Latin Modern Roman}[SmallCapsFont={* Caps}] \setsansfont{Latin Modern Sans} \setmonofont{DejaVu Sans Mono}[Scale=0.8] \newfontfamily\FontOne{Symbola} \newfontfamily\FontTwo{DejaVuSans}[Extension=.ttf] \catcode`🚀\active\protected\def🚀{{\FontOne\string🚀}}...
I changed the type of this ticket to question because it does not seem to be related to a bug in Sphinx LaTeX support, except if one considers support for...
A possible fix could be ```diff diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index c24e87a13..3f71be9b0 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -446,6 +446,7 @@ def default_latex_documents(config: Config) -> List[Tuple[str, str, str, str, st...
I am really rusty on this. There is some sphinx.builders.latex.theming but I never looked at how it is supposed to be used. *And there is some sphinx.writers.latex.LaTeXWriter.docclasses which got removed...
You can put ``` def setup(app): app.connect("write-started", lambda *x: sys.exit(1)) ``` directly at end of conf.py. Same behavior as latex observed with texinfo, singlehtml and man builders.
Reading this discussion I discovered a mis-behavior of the "electric-mode" of Emacs in a buffer triggering the ReST major mode. After having typed: ```rest .. note:: hello .. note:: :name:...
Thanks @AA-Turner I was 2 seconds away from posting my already written ticket at the Docutils site... EDIT: I tested with latest version loaded, same behavior. I opened [a ticket...
Unrelated but the ``https://www.sphinx-doc.org/en/master/templating.html#last_updated`` link which is used on the README.md front page of this extension, also on PyPi, returns a 404. It seems one should use [this link](https://www.sphinx-doc.org/en/master/development/html_themes/templating.html#last_updated). Could...