可以htlatex in silencemode
像 那样运行pdflatex
。
pdflatex --draftmode --interaction=nonstopmode foo.tex > tmp.txt
我只发现了nonstopmode/batchmode in htlatex
。
htlatex 源.tex "3" "" "" "--interaction==nonstopmode"。 有任何想法吗?
答案1
> <file>
通过添加到命令行可以获得输出重定向。
所以
htlatex "other options..." "--interaction=nonstopmode" > filename
将在 中记录会话filename
。这适用于 Unix shell 以及 Windows 命令行界面。
如果不需要记录,则使用
> /dev/null
而不是> filename
在 Unix 系统上
> NUL
在 Windows 上(参见https://stackoverflow.com/questions/313111/dev-null-in-windows)。请注意,filename
是一个任意文件名,可能包含路径,但当然用户应该能够在指向的目录中写入。
根据系统设置,> filename
如果文件已存在,可能会拒绝执行。使用 Bash shell,>| filename
用于覆盖选项noclobber
;其他命令 shell 可能有不同的解决方法。