我正在使用 pst-magneticfield 绘制螺线管的磁场线。如下所示:
\documentclass[pstricks,border=0pt]{standalone}
\usepackage{pst-magneticfield}
\usepackage[]{xcolor}
\begin{document}
\begin{pspicture*}(-2.65,-3)(2.65,3)
\psmagneticfield[linecolor=brown,R=0.5,N=16, L=2, nS=0, nL=8](-2.65,-3)(2.65,3)
\end{pspicture*}
\end{document}
我想从该图中去除螺线管和箭头,这样就只剩下场线(这是用于考试的图形)。
我不熟悉 PStricks(我使用 tikz),所以我真的不知道从哪里开始。我阅读了该软件包的手册,但没有进一步了解。
有什么建议么?
谢谢!
答案1
\documentclass[pstricks,border=0pt]{standalone}
\usepackage{pst-magneticfield}
\begin{document}
\begin{pspicture*}(-2.65,-3)(2.65,3)
\pstVerb{tx@MFieldDict begin /fleche {} def end }% redefine arrow
\psmagneticfield[drawSelf=false,
linecolor=brown,R=0.5,N=16, L=2, nS=0, nL=8](-2.65,-3)(2.65,3)
\end{pspicture*}
\end{document}