使用 Plain Tex 中的 pgfplots>polaraxis 进行极坐标图

使用 Plain Tex 中的 pgfplots>polaraxis 进行极坐标图

我在 pgfplots 包中经常使用 polaraxis。它在 LaTex 中运行良好。然而,在 Plain Tex 中我得到了如下错误:

! Undefined control sequence. \pgfplots@environment@polaraxis@
[#1]->\begin 
            {axis}[#1,data cs=polar,axis t... l.10 ylabel = Permeability]

我在网上搜索了好多遍也没能解决这个问题。似乎没有多少人同时使用 Plain Tex 和 polaraxis。任何帮助或建议都将不胜感激!

\input miniltx
\input graphicx.sty
\input tikz
\input pgfplots
\usepgfplotslibrary{polar}

\tikzpicture
\polaraxis
[xlabel=Angle from RD ($^\circ$), 
ylabel = Permeability]

\addplot+ [domain=0:3] (360*x,x); % (angle,radius)
\endpolaraxis
\endtikzpicture

答案1

这似乎已在当前版本中得到修复,如果我\bye使用 texlive 2020 pdftex 添加到发布的代码中,我会得到

在此处输入图片描述

相关内容