pandoc 在 .md 到 .html 转换过程中不会生成 latex 方程式

pandoc 在 .md 到 .html 转换过程中不会生成 latex 方程式

我正在使用 pandoc 将包含 latex 方程式的 .md 文件转换为 .html

pandoc sample_equations.md -o test_today.html 

这是一个这样的等式sample_equations.md

\begin{equation}
\frac{\partial u}{\partial t} = \nu \frac{\partial^2 u}{\partial t^2}
\end{equation}

问题是生成的文件test_today.html没有 latex 方程式和表格(在这种情况下输出只是文本)。但将同一个.md文件转换为.pdf我得到所有想要的方程式和表格。此外,如果我使用ReText并生成.html文件,一切都很好。

有人能指出 pandoc 的问题吗?谢谢

答案1

因此,我找到了.md将数学方程式.html转换为的解决方案pandoc

pandoc --toc --standalone --mathjax -t sample_equations.md -o test_today.html --metadata pagetitle="todaystest"

另外,这里解释一下:https://stackoverflow.com/a/55106932/8547163

相关内容