summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-01-16 23:09:52 +0000
committerKarl Berry <karl@freefriends.org>2014-01-16 23:09:52 +0000
commit9ea4f698ce68c7ab6720c2b097588e8fe75b80bb (patch)
tree7dc5c600ae039165a4cc2cd92b5932fc9863cb06 /Master/texmf-dist/doc/generic
parent619c185a567d93f70a24d717ad60e0954d40981d (diff)
pstricks (16jan14)
git-svn-id: svn://tug.org/texlive/trunk@32691 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/generic')
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/Changes.generic2
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news14.pdfbin30769 -> 50710 bytes
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news14.tex41
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news14.tmp6
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news14.toc5
5 files changed, 40 insertions, 14 deletions
diff --git a/Master/texmf-dist/doc/generic/pstricks/Changes.generic b/Master/texmf-dist/doc/generic/pstricks/Changes.generic
index 172f216e398..a3539e1c86d 100644
--- a/Master/texmf-dist/doc/generic/pstricks/Changes.generic
+++ b/Master/texmf-dist/doc/generic/pstricks/Changes.generic
@@ -3,6 +3,8 @@ versions like 2.47a have only changes in other files, but not
in this main package.
+2.50 2014-01-16 - added experimental fillstyle oefill, the inverse of eofill
+ - allow PostScript notation for \pst@checknum
2.49c 2013-12-27 - moved overlay functions into an own package
2.49b 2013-12-21 - moved overlay functions into an own dictionary
2.49a 2013-12-09 - changes in pstricks.sty
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news14.pdf b/Master/texmf-dist/doc/generic/pstricks/pst-news14.pdf
index c1ef8b7df13..ef75cb88557 100644
--- a/Master/texmf-dist/doc/generic/pstricks/pst-news14.pdf
+++ b/Master/texmf-dist/doc/generic/pstricks/pst-news14.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news14.tex b/Master/texmf-dist/doc/generic/pstricks/pst-news14.tex
index 097e1dd31db..255267180d3 100644
--- a/Master/texmf-dist/doc/generic/pstricks/pst-news14.tex
+++ b/Master/texmf-dist/doc/generic/pstricks/pst-news14.tex
@@ -9,7 +9,7 @@
\let\pstnodeFD\filedate
\usepackage{pst-plot}
\usepackage{xkvview}
-\renewcommand\bgImage{\psscalebox{15}{\color{blue!20}2013}}
+\renewcommand\bgImage{\psscalebox{15}{\color{blue!20}2014}}
\def\textat{\char064}
\lstset{explpreset={pos=l,width=-99pt,overhang=0pt,hsep=\columnsep,vsep=\bigskipamount,rframe={}},
escapechar=?}
@@ -30,18 +30,53 @@ basic package \nxLFile{pstricks}}
\part{\texttt{pstricks} -- package}
%--------------------------------------------------------------------------------------
-\section{\texttt{pstricks.sty}}
+%\section{\texttt{pstricks.sty}}
%--------------------------------------------------------------------------------------
%--------------------------------------------------------------------------------------
\section{\texttt{pstricks.tex} (\pstricksFV -- \pstricksFD)}
%--------------------------------------------------------------------------------------
+\subsection{PostScript notation for numbers}
+Optional arguments which expects a real number can now have a preceeding ! character for
+a PostScript notation which is directly passed to PostScript. The user has take care that
+such a number isn't use before in another \TeX\ macro. In such a case it gives an error.
+
+\begin{LTXexample}[width=5cm]
+\pstVerb{ 1234321 srand }
+\begin{pspicture}[showgrid](-2,-2)(2,2)
+\psframe*[linecolor=blue,opacity=!Rand](2,2)
+\psframe*[linecolor=red,opacity=!Rand](-1,-1)(1,1)
+\psframe*[linecolor=green,opacity=!Rand](-2,-2)(0,0)
+\end{pspicture}
+\end{LTXexample}
+
+
+\subsection{Fillstyle \texttt{eofill}}
+
+It is an experimental fillstyle. PostScript knows only the \Lkeyval{eofill} and the other way round
+needs some tricky internal commands and may not work in all cases.
+
+\begin{LTXexample}[pos=t]
+\begin{pspicture}[linewidth=2pt](12,4)
+\pscustom[linestyle=none,fillstyle=eofill,fillcolor=blue!40]{%
+ \psellipse(4,2)(2,2)\psellipse(2,2)(2,2)}
+\psellipse[linecolor=red](4,2)(2,2)
+\psellipse[linecolor=green](2,2)(2,2)
+%
+\pscustom[linestyle=none,fillstyle=oefill,fillcolor=blue!40]{%
+ \psellipse(10,2)(2,2)\psellipse(8,2)(2,2)}
+\psellipse[linecolor=red](10,2)(2,2)
+\psellipse[linecolor=green](8,2)(2,2)
+\end{pspicture}
+\end{LTXexample}
+
+
\subsection{New macro \nxLcs{psRing}}
\begin{BDef}
-\LcsStar{psRing}\OptArgs\Largr{\CAny}\OptArg{\Largs{start,end}}\Largb{Inner Radius}\Largb{Outer Radius}
+\LcsStar{psRing}\OptArgs\Largr{\CAny}\OptArg{start,end}\Largb{Inner Radius}\Largb{Outer Radius}
\end{BDef}
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news14.tmp b/Master/texmf-dist/doc/generic/pstricks/pst-news14.tmp
deleted file mode 100644
index a2635dc14c6..00000000000
--- a/Master/texmf-dist/doc/generic/pstricks/pst-news14.tmp
+++ /dev/null
@@ -1,6 +0,0 @@
-\begin{pspicture}[showgrid](4,4)
- \psRing[linecolor=red](2,2)[30,60]{1}{2}
- \psRing[opacity=0.5,fillstyle=solid,
- fillcolor=red](2,2)[60,30]{1}{2}
-\psdot(2,2)
-\end{pspicture}
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news14.toc b/Master/texmf-dist/doc/generic/pstricks/pst-news14.toc
deleted file mode 100644
index ab294aba248..00000000000
--- a/Master/texmf-dist/doc/generic/pstricks/pst-news14.toc
+++ /dev/null
@@ -1,5 +0,0 @@
-\select@language {english}
-\contentsline {part}{\numberline {I}\texttt {pstricks} -- package}{3}{part.1}
-\contentsline {section}{\numberline {1}\texttt {pstricks.sty}}{3}{section.1}
-\contentsline {section}{\numberline {2}\texttt {pstricks.tex} (2.49b-- 2013/12/21)}{3}{section.2}
-\contentsline {subsection}{\numberline {2.1}New macro \texttt {\textbackslash psRing}}{3}{subsection.2.1}