Pandoc:从markdown输入生成一个html嵌入Latex方程

时间:2016-12-14 10:58:27

标签: html latex markdown pandoc

我正在尝试使用pandoc将包含Latex方程的markdown文件转换为Html文件。

我在文件test.md中尝试了以下synthax:

$$ \frac{1}{2} = 0.5 \neq \sqrt{2} $$

我使用

调用了pandoc
pandoc test.md -o test.html --mathjax
似乎在this answer中指出了

。生成的test.html文件包含单行

<p><span class="math">\[ \frac{1}{2} = 0.5 \neq \sqrt{2} \]</span></p>

当使用网络浏览器打开test.html时,屏幕上的输出是

\[ \frac{1}{2} = 0.5 \neq \sqrt{2} \]

而不是一个很好的&#34;乳胶编译&#34;方程。

我错过了什么?

P.S。我正在使用pandoc 1.12.2.1

1 个答案:

答案 0 :(得分:3)

生成的test.html文件并非“完整”,因为只生成了html的主体,而不是标题。但是,mathjax必须在标题中链接才能很好地显示方程式。

要生成包含<html> <head><body>标记的“完整”html文件,必须使用pandoc的--standalone(又名-s)选项< / p>

pandoc --standalone test.md -o test.html --mathjax

更多细节

使用调用

pandoc --standalone test.md -o test.html --mathjax

生成以下test.html文件

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <meta name="generator" content="pandoc" />
    <title></title>
    <style type="text/css">code{white-space: pre;}</style>
    <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
</head>
<body>
<p><span class="math">\[ \frac{1}{2} = 0.5 \neq \sqrt{2} \]</span></p>
</body>
</html>

(请注意<script>部分中链接到mathjax的<head>标记 而调用

pandoc test.md -o test.html --mathjax

生成一个仅包含单行

的文件
<p><span class="math">\[ \frac{1}{2} = 0.5 \neq \sqrt{2} \]</span></p>