latex中文件转html的方法-mile米乐体育
web技术
2021年02月22日 07:35
0
这篇文章主要介绍latex中文件转html的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
latex中文件转html的方法:首先安装texlive,并安装ghostscript;然后设置环境变量;最后执行转换命令,代码为【make4ht main.tex -d html】。
latex中文件转html的方法:
步骤1:安装 texlive
wgethttp://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz tar-zxvfinstall-tl-unx.tar.gz cdinstall-tl-20200522 ./install-tl
步骤2:安装 ghostscript
yuminstallghostscript
步骤3:设置环境变量
path=/usr/local/texlive/2020/bin/x86_64-linux:$path;exportpath manpath=/usr/local/texlive/2020/texmf-dist/doc/man:$manpath;exportmanpath infopath=/usr/local/texlive/2020/texmf-dist/doc/info:$infopath;exportinfopath
步骤4:执行转换命令
假设 latex 文件为 main.tex,则执行以下命令可以在当前目录下创建一个名为 html 的目录,其中包括相应的输出文件 html, css, img 等等
make4htmain.tex-dhtml
以上是“latex中文件转html的方法”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注恰卡编程网行业资讯频道!
展开全文