我想使用\psaxes
但是\psgrid
它运行得不太好。
我到底做错什么了?
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-node}
\usepackage[utf8]{inputenc}
\usepackage{eurosym}
\begin{document}
\begin{pspicture}(-2,-2)(12,6) %\malla
% \psaxes{<->}(3,3)
% \psaxes[linewidth=1.2pt,labels=none,ticks=none]{<->}(2,1)(0,0)(4,3)
\rput(1,2){\circlenode{V}{\textcolor{blue}{Vigo}}}
\rput(1,5){\circlenode{C}{\textcolor{magenta}{Coru\~na}}}
\rput(3,2){\circlenode{S}{\textcolor{red}{Scq}}}
\rput(3,5){\circlenode{P}{\textcolor{green}{Po}}}
\ncarc[arcangle=33]{->}{V}{C}
\naput*{\small 45 \euro} % This line show error on compiling.
\ncarc[arcangle=11]{->}{S}{P}
\ncput*{\small 25 \euro }
\ncarc[arcangle=75]{->}{S}{P}
\ncput*{\small{\blue 15 \euro} }
\psbezier[linecolor=blue, linestyle=dashed]{*-*}(4,-0.5)(6,6)(8,-2)(10,2)
\rput(8,3){Esto é unha proba.}
\pscurve[linecolor=blue, linewidth=0.035]{o-o}(6,5)(7,4)(8,5.8)(9,5.8)(10,4)(11,6)
\psdots[dotsize=0.4](10,2)
\pscustom{
\pscurve(10,-2)(11,2)(11.5,1)
\psline(11.5,1)(11.5,-1)
\fill[fillstyle=solid,fillcolor=lightgray]
}
\end{pspicture}
\end{document}
答案1
解决了!
解决方案:您必须包含该行\usepackage{pst-plot}
。