大家晚上好。
我有一个大问题,为了简化我的学校报告,并且在复制粘贴一些公式时不要犯愚蠢的错误,我决定尝试SageTex
,并且我一直在努力使它作为自动编译工作。公平地说,由于硬盘问题,我不得不重新安装所有内容(MiKTeX 控制台和 texstudio 3.0.1,当然还有 SageMath9.1),并按照本指南一步一步进行操作。(帖子:texstudio 中的 sagetex:定义一个新的构建工具)
这是我的小实验例子。
\documentclass{article}
\usepackage{sagetex}
\begin{document}
Using Sage\TeX, one can use Sage to compute things and put them into
your \LaTeX{} document. For example, there are
$\sage{number_of_partitions(1269)}$ integer partitions of $1269$.
You don't need to compute the number yourself, or even cut and paste
it from somewhere.
Here's some Sage code:
\begin{sageblock}
f(x) = exp(x) * sin(2*x)
\end{sageblock}
The second derivative of $f$ is
\[
\frac{\mathrm{d}^{2}}{\mathrm{d}x^{2}} \sage{f(x)} =
\sage{diff(f, x, 2)(x)}.
\]
Here's a plot of $f$ from $-1$ to $1$:
\sageplot{plot(f, -1, 1)}
\end{document}
但你可能已经猜到了,它并没有起作用。我去工具>用户并选择圣人:圣人个人资料,我得到的只是这个 PDF
通过这条消息,
错误:无法运行命令:sage“Sage-example”.sagetex.sage
此外,我不知道如何在我的 SageMath 控制台中导航(不是壳或者笔记本) 到我的工作目录并filename.sagetex.sage
使用命令运行sage
,看起来更像是一个 UNIX 环境,我在其中找不到任何实际文件夹。当我尝试运行sage filename.sagetex.sage
Windows 提示时,它告诉我这是一个无法识别的命令。
知道可能是什么问题吗?
谢谢。