Update manual on how math is rendered in LaTeX.

This commit is contained in:
John MacFarlane 2018-06-24 13:03:01 +02:00
parent adbaaeaf9b
commit ee84687d25

View file

@ -3292,8 +3292,13 @@ them and they won't be treated as math delimiters.
TeX math will be printed in all output formats. How it is rendered TeX math will be printed in all output formats. How it is rendered
depends on the output format: depends on the output format:
LaTeX
~ It will appear verbatim surrounded by `\(...\)` (for inline
math) or `\[...\]` (for display math).
Markdown, LaTeX, Emacs Org mode, ConTeXt, ZimWiki Markdown, LaTeX, Emacs Org mode, ConTeXt, ZimWiki
~ It will appear verbatim between `$` characters. ~ It will appear verbatim surrounded by `$...$` (for inline
math) or `$$...$$` (for display math).
reStructuredText reStructuredText
~ It will be rendered using an [interpreted text role `:math:`]. ~ It will be rendered using an [interpreted text role `:math:`].