How to convert HTML with mathjax into Latex using Pandoc?(如何使用 Pandoc 将带有 mathjax 的 HTML 转换为 Latex?)
问题描述
我有一些带有 MathJax 方程的 HTML 文档,我想将它们转换为 Latex,然后再转换为 pdf.我想使用 Pandoc.
I have some HTML documents with MathJax equations, and I want to convert them to Latex, and then to pdf. I'd like to use Pandoc.
但是,Pandoc 将 $
替换为 $
并将公式中的 替换为
extbackslash{}
.
However, Pandoc replaces $
with $
and it replaces in formulas with
extbackslash{}
.
是否可以让 Pandoc 将 MathJax 公式从 HTML 直接传递到 Latex?
Is it possible to get Pandoc to pass MathJax formulas literally from HTML to Latex?
推荐答案
使用最新版本的pandoc(1.12.2),你可以这样做:
With the latest version of pandoc (1.12.2), you can do this:
pandoc -f html+tex_math_dollars+tex_math_single_backslash -t latex
好多了!如果您不想转换由 (
和 )
分隔的数学,只需执行
Much nicer! If you don't want to convert math delimited by (
and )
, just do
pandoc -f html+tex_math_dollars -t latex
这篇关于如何使用 Pandoc 将带有 mathjax 的 HTML 转换为 Latex?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Pandoc 将带有 mathjax 的 HTML 转换为 Latex?
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01