latexalpha2 包错误

latexalpha2 包错误

这是一个简单的 MWE 包含latexalpha2包。我在电脑上安装了 Wolfram Engine,并将 WolframScript 添加到路径中。

\documentclass{article}
\usepackage{latexalpha2}
\usepackage{amsmath}
\begin{document}
\[  \wolfram{Solve[x+1==0,x]} \]
\end{document}

我收到以下错误:

包 latexalpha2 错误:找不到使用 latexalpha2 所需的 WolframScript。\begin{document}


编辑

输出正确但错误仍然存​​在。 在此处输入图片描述


编辑2

我尝试生成一个 3D 图,但编译需要一段时间。在编译过程中,我在出现错误之前收到了以下消息

‘命令’不被识别为内部或外部命令、可运行程序或批处理文件。

‘rm’ 不被识别为内部或外部命令、可运行程序或批处理文件。

答案1

可以得到这个结果 C

运行此代码(已使用 Windowspdflatex和测试lualatex

\documentclass[12pt,a4paper]{article}
\RequirePackage{float}% 
\RequirePackage{booktabs}%

\RequirePackage[nocache]{latexalpha2wlua} % option cache (faster the second run) or nocache (recalculate always)

\begin{document}

\begin{figure}[H]
    \wolframgraphics{Plot3D[Sin[x]Cos[y],{x,-2Pi,2Pi},{y,-2Pi,2Pi}]}{Plot3Db}
    \includegraphics{Plot3Db.pdf}
    \caption{Plot 3D of $f(x,y)=\sin(x)\cos(y)$}
    \centering
\end{figure}

Laplace Transform of $t^4 sin(t)$

$$ \wolfram{LaplaceTransform[t^4 Sin[t],t,s]} $$

Generates a power series expansion

$$ \wolfram{Series[Exp[x],{x,0,5}]} $$

\bigskip    

Compton scattering for electron \bigskip

$\wolframalpha{Compton scattering for electron}$

\bigskip    

Solve the equation  $a x^2+b x+c=0$ and display the corresponding results

\wolframsolve{a x^2+b x+c==0}{x}

\newpage
\begin{table}[H]
    \centering
    \begin{tabular}{ccc}
    \toprule
    \wolframtable{Join[{{x,x^2,x^3}}, Table[{i,i^2,i^3},{i,5}]]}
    \bottomrule
    \end{tabular}
    \caption{Generate a table of $x$, $x^2$, $x^2$}
\end{table} 

\bigskip

The population of Shanghai is $\wolframalpha{Shanghai population}$, which
is $\wolframalpha{ratio of Shanghai population and NYC population}$ times the
population of New York City.

\bigskip

Solve differential equations $y'(x) + y(x) = a *sin(x)*y(x)*x $

\wolframdsolve{y'[x]+y[x]==a Sin[x]}{y[x]}{x}

\end{document}

该包的代码latexalpha2wlua和一些注释可以在以下位置找到:

https://tex.stackexchange.com/a/579254/161015

相关内容