Replies: 4 comments
-
I'm not sure what conversions you're talking about, exactly. For example, going markdown -> latex does not mess with these characters:
Neither does latex -> markdown. |
Beta Was this translation helpful? Give feedback.
-
It's my fault not to say converting from A.docx. |
Beta Was this translation helpful? Give feedback.
-
Adding an option to prefer the Unicode characters to the TeX commands in TeX output would require:
It's a fair amount of work for a gain that's only aesthetic. In addition, keep in mind that pandoc strives to produce TeX output that can be processed by either pdflatex or lualatex/xelatex; using Unicode characters would make compiling with pdflatex impossible, I think. |
Beta Was this translation helpful? Give feedback.
-
You have a point. I close it. |
Beta Was this translation helpful? Give feedback.
-
With the popularity of Unicode, more and more languages support native Unicode-math characters, without the need for conversion.
For LaTeX, the following code is OK,
without the need for converting
α → ∞
to\alpha \rightarrow \infty
.For Typst,
$α → ∞$
is also OK, without the need for converting to$alpha arrow.r oo$
.For Markdown,
$α → ∞$
is also OK.I suggest adding an option to leave the Unicode-math characters as they are.
Beta Was this translation helpful? Give feedback.
All reactions