我可以从 AUCTeX 中将 .tex 编译为 .html 吗?有哪些键绑定?
谢谢!
答案1
好吧,您可以直接从执行emacs
此操作,而不必使用 AUCTeX:,M-x compile
然后将 更改Compile command:
为适当的latex2html
命令。如果您要大量进行 .html 渲染,则可以将以下代码添加到 .tex 文件的末尾:
% Local Variables:
% compile-command: "latex2html yourfile.tex"
从那时起,无论何时加载 .tex 文件,命令M-x compile
都会默认为正确的latex2html
命令。
您可以通过在 .emacs 文件中M-x compile
添加类似内容来绑定到键盘快捷键。(global-set-key "\C-xc" 'compile)