diff options
author | Karl Berry <karl@freefriends.org> | 2013-12-05 22:39:00 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-12-05 22:39:00 +0000 |
commit | 69dbd134c2746b0cd69862ecefc1c7737bca1c2f (patch) | |
tree | 0aed17b49fcda3aa93d234c8e9ea92a841c5550a /Master/texmf-dist | |
parent | b6e8994738559b761cf40808ec3324ccdf5c77cd (diff) |
pst-plot (5dec13)
git-svn-id: svn://tug.org/texlive/trunk@32332 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-plot/Changes | 1 | ||||
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf | bin | 1225131 -> 1225123 bytes | |||
-rw-r--r-- | Master/texmf-dist/tex/generic/pst-plot/pst-plot.tex | 12 |
3 files changed, 8 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/generic/pst-plot/Changes b/Master/texmf-dist/doc/generic/pst-plot/Changes index 4a61d4bc1a2..5ccad5322fa 100644 --- a/Master/texmf-dist/doc/generic/pst-plot/Changes +++ b/Master/texmf-dist/doc/generic/pst-plot/Changes @@ -1,4 +1,5 @@ ----- pst-plot.tex +1.57 2013-12-01 - take Dx and Dy into account for special labels 1.56 2013-11-22 - deleted option quadrant and take coordinates into account for polar axes (x,phi) 1.55 2013-11-21 - added option quadrant for polar axes diff --git a/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf b/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf Binary files differindex b31d8adea0a..8a5b010c9e8 100644 --- a/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf +++ b/Master/texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf diff --git a/Master/texmf-dist/tex/generic/pst-plot/pst-plot.tex b/Master/texmf-dist/tex/generic/pst-plot/pst-plot.tex index d3e473e8867..49ba14926da 100644 --- a/Master/texmf-dist/tex/generic/pst-plot/pst-plot.tex +++ b/Master/texmf-dist/tex/generic/pst-plot/pst-plot.tex @@ -19,8 +19,8 @@ \ifx\PSTFPloaded\endinput\else \input pst-fp.tex \fi \ifx\MultidoLoaded\endinput\else \input multido.tex \fi % -\def\fileversion{1.56} -\def\filedate{2013/11/22} +\def\fileversion{1.57} +\def\filedate{2013/12/01} \message{ v\fileversion, \filedate\space (tvz,hv)} % \edef\TheAtCode{\the\catcode`\@} @@ -2136,8 +2136,9 @@ D\space##1% \pstFPadd\pst@tempA{1.55}{\pst@tempA} % to prevent rounding errors \edef\pst@tempB{\pst@int{\pst@tempA}} % \divide\pst@cnta\psk@dx\relax% % Number of ticks/labels - \multido{\iB=#3+1}{\pst@tempB}% - {\uput{\psxlabelsep}[-90]{\pst@xLabelsRot}(\iB,0)%\psxlabelsep) + \edef\pst@tempA{\psk@Dx} + \multido{\iB=#3+1,\rB=#3+\pst@tempA}{\pst@tempB}% + {\uput{\psxlabelsep}[-90]{\pst@xLabelsRot}(\rB,0)%\psxlabelsep) {\strut\pshlabel{\psPutXLabel{\iB}}}}% \fi% } @@ -2183,7 +2184,8 @@ D\space##1% \pstFPadd\pst@tempA{1.55}{\pst@tempA} % to prevent rounding errors \edef\pst@tempB{\pst@int{\pst@tempA}} % \divide\pst@cnta\psk@dy\relax% % Number of ticks/labels - \multido{\nA=#3+1}{\pst@tempB}{\uput{\psylabelsep}[180]{\pst@yLabelsRot}(0,\nA){% + \edef\pst@tempA{\psk@Dy} + \multido{\nA=#3+1,\rA=#3+\pst@tempA}{\pst@tempB}{\uput{\psylabelsep}[180]{\pst@yLabelsRot}(0,\rA){% \strut\expandafter\psvlabel\expandafter{\psPutYLabel{\nA}}}}% \fi% } |