mirror of
https://github.com/nextcloud/documentation.git
synced 2025-08-10 01:29:02 +00:00
Fix latexpdf generation for developer_manual
PDF creation of developer_manual via 'latexpdf' target fails because uses a unicode character (U+274C) which pdflatex does not recognize. Add Declaration of this character to Preamble via conf.py
This commit is contained in:
@ -183,7 +183,7 @@ latex_elements = {
|
||||
#'pointsize': '10pt',
|
||||
|
||||
# Additional stuff for the LaTeX preamble.
|
||||
'preamble': '\extrafloats{100}\maxdeadcycles=500',
|
||||
'preamble': '\extrafloats{100}\maxdeadcycles=500\DeclareUnicodeCharacter{274C}{\sffamily X}',
|
||||
}
|
||||
|
||||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
|
Reference in New Issue
Block a user