与How to convert HTML with mathjax into latex using pandoc?有些相似,但在某种意义上则相反。
如果我使用Pandoc使用LaTeX创建MD文件,甚至只使用MD文件,我如何使用Pandoc将这些文件转换为HTML,并使用正确的\(\)
,\[\]
标记数学?
答案 0 :(得分:3)
您想要使用mathjax支持从markdown转换为html吗?
var state = $injector.get($state);
state.go('desiredstate');
答案 1 :(得分:1)
假设Windows为平台,以下.CMD
代码段应进行转换:
set PATH=%ProgramFiles%\pandoc;%PATH%
set CDN=http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
set IN=%~s1
if [%2]==[] (
set OUT=%~sdp1%~n1.html
) else (
set OUT=%~s2
)
echo Converting markdown to html ...
pandoc.exe -s --mathjax=%CDN% --from=markdown+pipe_tables --to=html --output="%OUT%" %IN%
咨询pandoc help以调整命令行参数。
答案 2 :(得分:0)
我刚刚发现mathjax-node-page(从html到html),它们确实是独立的。从我的Makefile中:
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:<PORT-GOES-HERE>"
}