我正在翻译王老师的《MAPLE 物理学》这本书。它当然包含了一些 Maple 的代码和输出。
我想知道我们是否也有适用于 Maple 的软件包,例如 mcode 或 matlab-to-tikz(MATLAB)?
当我在一个框中输入公式 + 代码时,就会出现实际问题,我必须将环境从逐字或列表更改为数学环境,或者反复使用某些特定命令,这有时会让人筋疲力尽。此外,我喜欢拥有高质量的图表,当我更改代码并运行程序时,这些图表会发生变化,就像在 matlab-to-tikz 中一样。
这是一个盒子的最基本的样本。
答案1
您可以使用该maple2e
包来包含枫树图。
以下是一个示例:
\documentclass{article}
\usepackage{maple2e}
\DefineParaStyle{Maple Plot}
\begin{document}
\begin{maplegroup}
\begin{mapleinput}
\mapleinline{active}{1d}%
{plot3d(sin(x)*cos(y),x=-3..3,y=-3..3,axes=`normal`);}{}
\end{mapleinput}
\mapleresult
\begin{center}
\mapleplot{test101.eps}
\end{center}
\end{maplegroup}
\end{document}
来源:http://people.oregonstate.edu/~peterseb/tex/samples/maple-images.html