我用 pst-func 绘制隐函数。我选择虚线线条样式,但输出并未显示我所期望的内容。
我的错误在哪里?
(顺便说一句,我只找到了线条样式的dotted
选项dashed
,但我需要更多选项。)
最小示例:
\documentclass[pstricks,border=14pt,14pt]{standalone}
\usepackage{pst-func}
\def\tt{1}
\begin{document}
\begin{psgraph}[Dx=1,Dy=1](0,0)(-2,-2)(2,2){4cm}{4cm}
\psplotImp[algebraic,linestyle=dotted,linecolor=red,stepFactor=.3](-1.5,-1.5)(1.5,1.5)
{(abs(x)+abs(y))-\tt}
\end{psgraph}
\end{document}
答案1
尝试一下stepFactor
\documentclass[pstricks,border=14pt,14pt]{standalone}
\usepackage{pst-func,pstricks-add}
\def\tt{1}
\begin{document}
\begin{psgraph}[Dx=1,Dy=1](0,0)(-2,-2)(2,2){4cm}{4cm}
\psplotImp[algebraic,linestyle=dotted,linecolor=red,stepFactor=0.97](-1.5,-1.5)(1.5,1.5)
{(abs(x)+abs(y))-\tt}
\end{psgraph}
\begin{pspicture}(-2,-2)(2,2)
\psaxes{->}(0,0)(-2,-2)(2,2)[$x$,0][$y$,90]
\pspolygon[linecolor=red,linestyle=dotted](0,-1)(1,0)(0,1)(-1,0)
\end{pspicture}
\end{document}
对于这个简单的例子,我建议\pspolygon
看第二张图片。