diff options
author | Karl Berry <karl@freefriends.org> | 2011-01-26 23:17:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-01-26 23:17:37 +0000 |
commit | 0d8ea48d874411037fc2ca0390d1e4d79ca37faf (patch) | |
tree | 6e8f733651135ab6db6a914239526c29828bb4ad /Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex | |
parent | 3a0c110bdd5eb4e48c1849f73e895836b0ab3a04 (diff) |
plst-plot 1.26 (26jan11)
git-svn-id: svn://tug.org/texlive/trunk@21177 c570f23f-e606-0410-a88d-b1316a301751
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 | 47 |
1 files changed, 43 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 69243ee6a49..64bf18cd442 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 @@ -9,10 +9,6 @@ \let\pstFV\fileversion \let\belowcaptionskip\abovecaptionskip % -\makeatletter -\renewcommand*\l@subsection{\bprot@dottedtocline{2}{1.5em}{3.6em}} -\renewcommand*\l@subsubsection{\bprot@dottedtocline{3}{3.8em}{4.5em}} -\makeatother \def\bgImage{% \begin{pspicture}(-3.5,-3.5)(3.5,3.5) \psaxes[axesstyle=polar,subticklinestyle=dashed,subticks=2, @@ -2913,8 +2909,51 @@ x sin dup mul x cos dup mul add sqrt \end{LTXexample} +\clearpage +\section{New macros} +\subsection{\nxLcs{psCoordinates}} + +\begin{BDef} + \Lcs{psCoordinates}\OptArgs\Largr{\CAny} +\end{BDef} +\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[linecolor=blue,linestyle=dashed, + dotstyle=square,dotscale=2](*4 {x^2/10}) + \psCoordinates[arrowscale=1.5,arrows=->](*6 {x^2/10}) + \psCoordinates[arrows=->,linecolor=blue,linestyle=dotted, + dotstyle=triangle,dotscale=2](*8 {x^2/10}) + \psCoordinates[dotscale=2](*9 {x^2/10}) +\end{pspicture} +\end{LTXexample} + +\clearpage +\subsection{\nxLcs{psFixpoint}} +\begin{BDef} + \Lcs{psFixpoint}\OptArgs\Largb{$x_0$}\Largb{$f(x)$}\Largb{$n$} +\end{BDef} + +$x_0$ is the start value of the iteration, $f(x)$ the function, which can either be in +postfix or algebraic notation, for the latter it needs the optional argument \Lkeyword{algebraic}. +The number of the iteration is given by $n$. + +\medskip +\begin{LTXexample}[pos=t] +\begin{pspicture}[algebraic](-5mm,-1cm)(10,10) + \psaxes{->}(10,10) + \psplot[linecolor=red,linewidth=2pt]{0}{10}{sqrt(5*x)} + \psline(10,10) + \psFixpoint[linecolor=blue]{9.5}{sqrt(5*x)}{20} + \psFixpoint[linestyle=dashed]{1}{sqrt(5*x)}{20} +\end{pspicture} +\end{LTXexample} + \section{List of all optional arguments for \texttt{pst-plot}} \xkvview{family=pst-plot,columns={key,type,default}} |