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?
基础教程推荐
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01