diff options
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% } |