使用 python 脚本编译 Latex 文件

2022-01-24 00:00:00 python subprocess latex pdf

问题描述

我可以使用 python 脚本创建一个 LaTeX 文件,但我想获取该文件并对其进行编译,因此它使用 python 脚本创建了一个 pdf.看到过一些使用os和subprocess的东西,但是实在看不懂.

I am able to use python script to create a LaTeX file, but I want to take that file and compile it, so it creates a pdf by using a python script. I have seen some things using os and subprocess but I really don't understand it.


解决方案

试试这个.

  import os  
  os.system("pdflatex mylatex.tex")

相关文章