Sagetex:避免打印代码

Sagetex:避免打印代码

我尝试使用下面的 Sagetex 代码。但是当我在 latex 中生成图表时,我想避免在图表之前打印出代码。我该怎么做?

\begin{sageblock}
f = open("DATA", "r").readlines()
f = [i.strip() for i in f]
f = map(int, f)
g = [i+1 for i in f]
aes = f
rsa = f
vals = [1,2,3,4,5,6,7,8,9,10,11]
p = list_plot(zip(vals, aes), color='red', plotjoined=True) + list_plot(zip(vals, rsa), plotjoined=True)
p.axes_labels(['foo','bar'])
\end{sageblock}
\sageplot[width=.80\textwidth]{p}

答案1

对于您不想在文档中打印的部分,您可以使用sagesilent环境而不是环境。sageblock

相关内容