mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
LaTeX: prevent LuaLaTeX from applying TeX ligatures (>>, <<,...)
Closes: #5179
This commit is contained in:
parent
415ebc15c5
commit
b99c2f8a9d
2
CHANGES
2
CHANGES
@ -108,6 +108,8 @@ Bugs fixed
|
||||
* #5248: LaTeX: Greek letters in section titles disappear from PDF bookmarks
|
||||
* #5772: LaTeX: should the Bjarne style of fncychap be used for English also
|
||||
if passed as language option?
|
||||
* #5179: LaTex: (lualatex only) escaping of ``>`` by ``\textgreater{}`` is not
|
||||
enough, ``\textgreater{}\textgreater{}`` applies TeX-ligature
|
||||
|
||||
Testing
|
||||
--------
|
||||
|
@ -207,7 +207,8 @@ ADDITIONAL_SETTINGS = {
|
||||
'latex_engine': 'lualatex',
|
||||
'polyglossia': '\\usepackage{polyglossia}',
|
||||
'babel': '',
|
||||
'fontenc': '\\usepackage{fontspec}',
|
||||
'fontenc': ('\\usepackage{fontspec}\n'
|
||||
'\\defaultfontfeatures[\rmfamily,\sffamily]{}'),
|
||||
'fontpkg': LUALATEX_DEFAULT_FONTPKG,
|
||||
'textgreek': '',
|
||||
'utf8extra': ('\\catcode`^^^^00a0\\active\\protected\\def^^^^00a0'
|
||||
|
Loading…
Reference in New Issue
Block a user