Closed Daniele-Damiano closed 6 years ago
i found the error, when you write \
for give a white space in the document, fopub do not map \
to <mml:mo> </mml:mo>
in the xml file.
I'm insert <mml:mo> </mml:mo>
this string manually in the xml file generated from fopub and work well.
This appears to be a shortcoming with the asciimath gem. I'll report it there and close this one.
Hi i have problem whit fopub and asciimath. Work all good but when i try to add white space between word, is not rendered in pdf:
Example: I have this file:
= Insiemi Equivalenze Logiche e Definizioni
:stem:
|===
|Insieme |Definizione
| stem:[A nn B]
| stem:[{ x \ : \ x in A ^^ x in B }]
| stem:[A - B]
| stem:[{ x \ : \ x in A ^^ x !in B }]
| stem:[bar A]
| stem:[{x \ : \ x in bbb"U" ^^ x !in A}]
|===
When i preview this code on Mozilla the
\
render a white space correctly between semicolon and x:But when i use fopub for render the pdf
\
not work, render this:Command i use for for convert to docbook xml is this:
asciidoctor -b docbook -a stem insiemi_equivalenze_logiche.adoc
and later execute fopub like this:
fopub insiemi_equivalenze_logiche.xml
How can add white space in pdf usig fopub?
Thanks.