Am 23.06.2011 21:59, schrieb yoraxe:
Am 23.06.2011 18:30, schrieb Aditya Mahajan:
On Thu, 23 Jun 2011, yoraxe wrote:
How can I use math-mode in such a table? Using $a_b$ it just prints $a_b$ instead of identifying this as a math-input.
I'm using pandoc 1.8.1.1 and context 2011.06.19.
Can you give a complete minimal example?
Find all files attached. I see, it is the line
\NC \$a\letterunderscore{}b\$
that is not correctly translated. What do I have to type instead of _?
Maybe this could be helpful: http://hackage.haskell.org/packages/archive/pandoc/1.8.1.1/doc/html/src/Text... Does someone know what all this means? I guess especially interesting are the following lines: inlineToConTeXt (Math InlineMath str) = return $ char '$' <> text str <> char '$' inlineToConTeXt (Math DisplayMath str) = return $ text "\\startformula " <> text str <> text " \\stopformula"