I am using Pandoc to convert from Latex to Html with Mathjax, i.e.,
pandoc --mathjax -s -f latex input.tex -t html -o output.html.
The only issue is that \begin{equation} ... \end{equation} is translated to \[ ... \]. Is there any way to suppress this behavior?
pandoc. BTW next time, might be an idea to provide a sampleinput.texas well. Then those who know a little about pandoc can actually test your code. – daleif Feb 14 '20 at 15:11\begin{equation}...\end{equation}block kept that you want to use the MathJax capability to number equations? If so, some alternative solutions can be found https://tex.stackexchange.com/questions/111868/pandoc-how-can-i-get-numbered-latex-equations-to-show-up-in-both-pdf-and-html-o – Willie Wong Feb 14 '20 at 15:52\(...\)for inline and\[...\]for display math are hardcoded inText/Pandoc/Writers/HTML.hs. – Henri Menke Mar 12 '20 at 00:45