使用Pandoc的Webtex URI实现更大的Latex方程

时间:2012-12-11 12:54:33

标签: google-visualization pandoc

我正在尝试通过使用Google Charts API在终端中使用以下命令来增加Pandoc输出的LaTeX方程的大小:

pandoc -s --webtex=http://chart.apis.google.com/chart?cht=tx&chs=500&chf=bg,s,FFFFFF00&chl= --self-contained test.Rmd -o test.html

但是,LaTeX代码的输出没有变化(它的大小没有增加),实际上当我查看渲染的html文件段(其中$\frac{1}{x}$是)图像源标签时我看是:

<img style="vertical-align:middle" src="http://chart.apis.google.com/chart?cht=tx%5Cfrac%7B1%7D%7Bx%7D" alt="\frac{1}{x}" title="\frac{1}{x}" />

我在哪里错误地使用--webtex[=URL]

1 个答案:

答案 0 :(得分:4)

我发现在命令行上我所要做的就是逃避&(&符号)符号。所以我要做的就是这个:

pandoc -s --webtex=http://chart.apis.google.com/chart?cht=tx\&chs=500\&chf=bg,s,FFFFFF00\&chl= --self-contained test.Rmd -o test.html