gpt4 book ai didi

sublimetext2 - 相当于Bash : `latexmk file.tex && latexmk -c file.tex` 的Python

转载 作者:行者123 更新时间:2023-12-03 13:37:11 26 4
gpt4 key购买 nike

在Xymostech的帮助下,已解决了将Bash中的&&转换为Python的问题,非常感谢其帮助-谢谢!

有争议的命令行(来自Bash终端)是:latexmk file.tex && latexmk -c file.tex

如果有人感兴趣,这是插件:

https://github.com/lawlist/ST2-plugin-latexmk-save-build-clean

最佳答案

&&是bash支持的功能。但是,您可以使用subprocesscheck_call在python中执行相同的操作:

import subprocess

try:
subprocess.check_call(["latexmk", "file.tex"])
except subprocess.CalledProcessError:
print "Failed making"
else:
subprocess.call(["latexmk", "-c", "file.tex"])

关于sublimetext2 - 相当于Bash : `latexmk file.tex && latexmk -c file.tex` 的Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15715557/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com