有没有办法将.py 脚本文件(在 Python 上)转换为 LaTeX 代码?

有没有办法将.py 脚本文件(在 Python 上)转换为 LaTeX 代码?

.tex您可以使用包将 jupyter 笔记本文件转换为文件,同样nbconvert,我想知道是否存在等效的方法来执行相同的操作,但使用.py脚本文件作为输入。

行为将会如下:

  1. 程序以.py文件作为输入。

  2. 程序返回一个.tex文件作为输出(带有其突出显示、缩进、颜色等)。

答案1

不确定我是否明白你所要求的。

您可以使用包inputminted的命令minted来生成PDF 文件(不是 .tex)来自 Python 脚本。

例如,如果您的主 LaTeX 文件是:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{minted}
\begin{document}
\inputminted{python}{script.py}
\end{document}

您的script.py文件是:

# Python program to find the factorial of a number provided by the user.
# change the value for a different result
num = 7
# To take input from the user
#num = int(input("Enter a number: "))
factorial = 1
# check if the number is negative, positive or zero
if num < 0:
   print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
   print("The factorial of 0 is 1")
else:
   for i in range(1,num + 1):
       factorial = factorial*i
   print("The factorial of",num,"is",factorial)

你可以得到以下PDF:

在此处输入图片描述


更新

刚刚读了你对 Teepeemm 的评论。你可以使用类似下面的命令将.py文件转换为.ipynbp2j,然后.tex使用nbconvert的功能jupyter

相关内容