.tex
您可以使用包将 jupyter 笔记本文件转换为文件,同样nbconvert
,我想知道是否存在等效的方法来执行相同的操作,但使用.py
脚本文件作为输入。
行为将会如下:
程序以
.py
文件作为输入。程序返回一个
.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
文件转换为.ipynb
p2j,然后.tex
使用nbconvert
的功能jupyter
。