diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex')
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex b/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex index 7876b6b93fd..2edbf3c1156 100644 --- a/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex +++ b/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex @@ -1,4 +1,4 @@ -% $Id: pst-plot-doc.tex 303 2016-05-12 20:44:22Z herbert $ +% $Id: pst-plot-doc.tex 393 2017-03-20 08:00:05Z herbert $ \documentclass[11pt,english,BCOR10mm,DIV12,bibliography=totoc,parskip=false,smallheadings headexclude,footexclude,oneside,dvipsnames,svgnames]{pst-doc} \listfiles @@ -1226,8 +1226,36 @@ There is a new value \Lkeyval{cspline} for the plotstyle to interpolate a curve \end{pspicture} \end{LTXexample} + +\begin{LTXexample}[pos=b] +\begin{pspicture}(-0.5,-1.5)(1.5,1.5) +\psaxes[showorigin=false,yLabels={a,b,c}](0,0)(0,-1)(1,1) +\end{pspicture} +\begin{pspicture}(-0.5,-0.5)(1.5,2.5) +\psaxes[showorigin=false,yLabels={a,b,c}](1,2) +\end{pspicture} +\begin{pspicture}(-0.5,-2.5)(1.5,.5) +\psaxes[showorigin=false,yLabels={a,b,c}](0,0)(0,-2)(1,0) +\end{pspicture} + +\begin{pspicture}(-1.5,-1.5)(1.5,1.5) +\psaxes[showorigin=false,xLabels={a,b,c}](0,0)(-1,-1)(1,1) +\end{pspicture} +\begin{pspicture}(-0.5,-0.5)(1.5,2.5) +\psaxes[showorigin=false,xLabels={a,b,c}](2,2) +\end{pspicture} +\begin{pspicture}(-2.5,-2.5)(1.5,.5) +\psaxes[showorigin=false,xLabels={a,b,c}](0,0)(-2,-2)(0,0) +\end{pspicture} +\end{LTXexample} + + The values for \Lkeyword{xlabelsep} and \Lkeyword{ylabelsep} are taken into account. + + + + \subsection{Option \nxLkeyword{xLabelOffset} and \nxLkeyword{ylabelOffset}}\label{labelOffset} @@ -3461,18 +3489,24 @@ x sin dup mul x cos dup mul add sqrt \Lcs{psCoordinates}\OptArgs\Largr{\CAny} \end{BDef} +A special optional argument is \Lkeyword{markPoint} which is preset to \texttt{true}. With +\Lkeyword{showpoints} one can set all three points with the same symbol: start point, curve point, and end point. + \medskip \begin{LTXexample}[pos=t] \begin{pspicture}(-5mm,-1cm)(10,10) \psaxes{->}(10,10) \psplot[algebraic,linecolor=red,linewidth=2pt]{0}{10}{x^2/10} - \psCoordinates(*2 {x^2/10}) + \psCoordinates(*1.5 {x^2/10}) + \psCoordinates[showpoints](*2.2 {x^2/10}) \psCoordinates[linecolor=blue,linestyle=dashed, dotstyle=square,dotscale=2](*4 {x^2/10}) - \psCoordinates[arrowscale=1.5,arrows=->,showpoints=false](*6 {x^2/10}) + \psCoordinates[arrowscale=1.5,arrows=->,markPoint=false](*6 {x^2/10}) + \psCoordinates[linecolor=blue,linewidth=0.3pt, + dotstyle=x,dotscale=2,showpoints](*7 {x^2/10}) \psCoordinates[arrows=->,linecolor=blue,linestyle=dotted, - dotstyle=triangle,dotscale=2](*8 {x^2/10}) + dotstyle=triangle,dotscale=2,showpoints](*8 {x^2/10}) \psCoordinates[dotscale=2](*9 {x^2/10}) \end{pspicture} \end{LTXexample} |