将 Lua 函数与 mplib 和 mpgraph 结合使用

将 Lua 函数与 mplib 和 mpgraph 结合使用

这个问题与问题有关Lua、Luamplib 和 Mpgraph 错误 我正在尝试在 mplib 中使用 lua 函数。详细代码在这里。

\documentclass{article}
\usepackage{luacode}
\usepackage{luamplib}
\begin{document}
\begin{luacode}
  require("math")
   local sin=math.sin;
\end{luacode}
\def\plot{%
  \directlua{
luamplib.process_mplibcode([[
    input graph ;
    beginfig(0)
    draw begingraph(5cm,3cm)
       gdraw (0,sin(0)) for x = 1 upto 3: .. (x, sin(x)) endfor ;
    endgraph ;
    endfig ;
  ]])}%
}
\plot
\end{document}

lua 和 mplib 的混合似乎存在一些问题。问题出在哪里以及如何纠正?

答案1

您可以使用该函数从 mplib 内部访问 Lua runscript

\documentclass{article}
\usepackage{luamplib}
\begin{document}
\def\plot{%
  \directlua{luamplib.process_mplibcode([[
    vardef sin primary x =
        runscript("mp.print(math.sin(" & decimal x & "))")
    enddef ;
    input graph ;
    beginfig(0)
    draw begingraph(5cm,3cm)
       gdraw (0,sin(0)) for x = 1 upto 3: .. (x, sin(x)) endfor ;
    endgraph ;
    endfig ;
  ]])}%
}
\plot
\end{document}

在此处输入图片描述

相关内容