假设我有一些生成图像的 Python 代码。
例如
import matplotlib.pyplot as plt
import numpy as np
# Data for plotting
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
fig, ax = plt.subplots()
ax.plot(t, s)
ax.set(xlabel='time (s)', ylabel='voltage (mV)',
title='About as simple as it gets, folks')
ax.grid()
fig.savefig("test.png")
plt.show()
并且我想将此代码生成的图像自动添加到我的 LaTeX 文档中,这样如果我更改代码,再次编译文档时图像就会更改。
答案1
你可以用鼠尾草包:在文档中对代码进行更改,然后重建它。
\documentclass{article}
\usepackage{sagetex}
\usepackage{graphicx}
\pagestyle{empty}
\begin{document}
\begin{sagesilent}
import matplotlib.pyplot as plt
import numpy as np
#### Data for plotting
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
fig, ax = plt.subplots()
ax.plot(t, s)
ax.set(xlabel='time (s)',ylabel='voltage (mV)',title='About as simple as it gets, folks')
ax.grid()
fig.savefig("test.png")
\end{sagesilent}
Sagetex let's you put Python code into your \LaTeX \,document.
\begin{center}
\includegraphics[width=5in,height=4in]{test.png}
\end{center}
\end{document}
由于sagetex
它不是 LaTeX 发行版的一部分,因此最简单的尝试方法是使用免费的可钙帐户。大约 5-10 分钟后,您就可以开始使用。只需将代码复制/粘贴到新的 LaTeX 文档中即可。