如何在 \inputpygments 引用的 python 文件中应用更改?

如何在 \inputpygments 引用的 python 文件中应用更改?

我有一个 LaTeX 文档,其中包含一些使用pythontex和的 Python 代码\inputpygments。如果我更改了 包含的 Python 文件中的某些内容\inputpygments,则更改不会显示在文档中。即使我运行:

$ pythontex --rerun always example.tex

平均能量损失

例子.tex

\documentclass[11pt]{article}

\usepackage{pythontex}

\begin{document}

\inputpygments{python}{demo.py}

\end{document}

演示文件

print("Hello World")

将当前内容demo.py放入文档的唯一解决方法是删除该pythontex-files-example文件夹。

相关内容