From ee84687d25a0d6cabc932660cf4a094693b289b7 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 24 Jun 2018 13:03:01 +0200 Subject: [PATCH] Update manual on how math is rendered in LaTeX. --- MANUAL.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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:`].