diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-06-24 13:03:01 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-06-24 13:03:01 +0200 |
commit | ee84687d25a0d6cabc932660cf4a094693b289b7 (patch) | |
tree | a86ea5185f57dfdf584dc7b8d9a4c8fb9558e9c2 | |
parent | adbaaeaf9b8153568de3d9426e3bce968b583235 (diff) | |
download | pandoc-ee84687d25a0d6cabc932660cf4a094693b289b7.tar.gz |
Update manual on how math is rendered in LaTeX.
-rw-r--r-- | MANUAL.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MANUAL.txt b/MANUAL.txt index 85e93c4fb..e9fda9ace 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -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 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 - ~ It will appear verbatim between `$` characters. + ~ It will appear verbatim surrounded by `$...$` (for inline + math) or `$$...$$` (for display math). reStructuredText ~ It will be rendered using an [interpreted text role `:math:`]. |