我从 python 调用 pdflatex 使用
executeCode = 'pdflatex -shell-escape "' + packageName + '.tex"'
result = os.system(executeCode)
然而,LaTeX 文档可能有错误,在这种情况下 pdflatex 要求键盘输入。对于 python,这与无限循环相同。在 PyScripter 中,我什至无法停止 python。我必须杀死pdflatex。
现在我需要两件事 1. 我想查看 pdflatex 的输出 2. 我需要在控制台上与 pdflatex 交互
我怎样才能做到这一点?