diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic')
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-text/Changes | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-text/README | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-text/pst-text-doc.pdf | bin | 180174 -> 207384 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/generic/pst-text/pst-text-doc.tex | 50 |
4 files changed, 55 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/generic/pst-text/Changes b/Master/texmf-dist/doc/generic/pst-text/Changes index 3798d49a878..7d351cfafce 100644 --- a/Master/texmf-dist/doc/generic/pst-text/Changes +++ b/Master/texmf-dist/doc/generic/pst-text/Changes @@ -1,13 +1,17 @@ pst-text.sty -------- +2018-12-28 - added version info for pro file 2006-01-01 + pst-text.tex -------- +1.02 2018-12-28 - added \psCircleText for circled outline text 1.01 2018-12-22 - added \psWarp for warping text 1.00 2006-11-06 - integrate the pst-char stuff, which is now obsolete. (hv) pst-text.pro -------- +1.02 2018-12-28 - added \psCircleText for circled text 1.01 2018-12-22 - added \psWarp for warping text 1.00 2006-11-06 - add a patch for japanese text (hv) - first CTAN contrib version (hv) diff --git a/Master/texmf-dist/doc/generic/pst-text/README b/Master/texmf-dist/doc/generic/pst-text/README index 9e508dc13ea..6c8394a4e98 100644 --- a/Master/texmf-dist/doc/generic/pst-text/README +++ b/Master/texmf-dist/doc/generic/pst-text/README @@ -2,8 +2,10 @@ \pscharpath \pstextpath +\psCircleText \psWarp + pst-text.sty - The LaTeX file pst-text.tex - The TeX file pst-text.pro - The dvips header file diff --git a/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.pdf b/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.pdf Binary files differindex a9031cd9b9a..faf0eb62c6f 100644 --- a/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.pdf +++ b/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.pdf diff --git a/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.tex b/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.tex index d5801859495..a3617818d8b 100644 --- a/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.tex +++ b/Master/texmf-dist/doc/generic/pst-text/pst-text-doc.tex @@ -1,4 +1,4 @@ -%% $Id: pst-text-doc.tex 873 2018-12-22 19:34:12Z herbert $ +%% $Id: pst-text-doc.tex 887 2018-12-29 13:17:59Z herbert $ \documentclass[fontsize=11pt,english,BCOR=10mm,DIV=12,bibliography=totoc,parskip=false, headings=small, headinclude=false,footinclude=false,oneside,abstract=on]{pst-doc} \usepackage{pst-plot,pst-grad,pst-text} @@ -469,6 +469,54 @@ It should be kept in mind that alternatively \Lcs{pscharpath} may be used in conjunction with \Lcs{psboxfill}. +\section{Writing outline text on a circle} + +\begin{BDef} +\Lcs{psCircleText}\OptArgs\OptArg{\Largr{x,y}}\Largb{Text} +\end{BDef} + +Optional arguments are + +\begin{description} +\item[\texttt{font}] Textfont, predefined as NimbusSanL-Regu. It must be a PostScript font. +\item[\texttt{fontsize}] Predefined to 24pt +\item[\texttt{fillcolor}] Predefined as red!40 +\item[\texttt{radius}] The radius for the circled text +\end{description} + + +\begin{pspicture}[showgrid](10,10) +\psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}% +\psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}% +\end{pspicture} + + +\begin{lstlisting} +\begin{pspicture}[showgrid](10,10) +\psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}% +\psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}% +\end{pspicture} +\end{lstlisting} + +The radius is preset to 2cm: + +\begin{pspicture}(10,10) +\psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}% +\psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}% +\pscircle[linecolor=red](5,5){4cm}\pscircle[linecolor=blue](5,5){2cm} +\end{pspicture} + + +\begin{lstlisting} +\begin{pspicture}(10,10) +\psCircleText[fontsize=6.5mm,radius=4cm](5,5){All is Fun with the typesetting system TeX}% +\psCircleText[fillcolor=blue!40,fontsize=1cm,font=Helvetica](5,5){All is Fun within the World}% +\pscircle[linecolor=red](5,5){4cm}\pscircle[linecolor=blue](5,5){2cm} +\end{pspicture} +\end{lstlisting} + + + \section{Warping a text} \begin{BDef} |