diff options
author | Karl Berry <karl@freefriends.org> | 2021-08-24 23:54:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-08-24 23:54:24 +0000 |
commit | 1e0cf33a2c4ee1f510b36e7fc5eb408c349ba1bb (patch) | |
tree | 08356687454ce108bc8bc3c537561f1958e17b7c /Master/texmf-dist/doc/generic | |
parent | 6a49f8fd0934e95e0b367cb718d688d8d0cb5d5c (diff) |
pstricks (25aug21)
git-svn-id: svn://tug.org/texlive/trunk@60317 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/generic')
-rw-r--r-- | Master/texmf-dist/doc/generic/pstricks/README | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/generic/pstricks/pst-news21.pdf | bin | 0 -> 43741 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/generic/pstricks/pst-news21.tex | 91 |
3 files changed, 93 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/generic/pstricks/README b/Master/texmf-dist/doc/generic/pstricks/README index 9bc1dd36863..c824ddb9b1c 100644 --- a/Master/texmf-dist/doc/generic/pstricks/README +++ b/Master/texmf-dist/doc/generic/pstricks/README @@ -1,4 +1,4 @@ -PSTricks 2020 +PSTricks 2021 This package may be distributed under the terms of the LaTeX Project Public License, as described in lppl.txt in the base LaTeX distribution. @@ -122,4 +122,4 @@ be found on the Web page. -- -Denis Girou, Sebastian Rahtz and Herbert Voss (updated June 2020) +Denis Girou, Sebastian Rahtz and Herbert Voss (updated August 2021) diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news21.pdf b/Master/texmf-dist/doc/generic/pstricks/pst-news21.pdf Binary files differnew file mode 100644 index 00000000000..89442fefa8f --- /dev/null +++ b/Master/texmf-dist/doc/generic/pstricks/pst-news21.pdf diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news21.tex b/Master/texmf-dist/doc/generic/pstricks/pst-news21.tex new file mode 100644 index 00000000000..9fbe4e2f348 --- /dev/null +++ b/Master/texmf-dist/doc/generic/pstricks/pst-news21.tex @@ -0,0 +1,91 @@ +%% $Id: pst-news21.tex 157 2021-08-23 18:21:41Z herbert $ +\documentclass[11pt,english,BCOR=10mm,DIV=12,bibliography=totoc,parskip=false,headings=small, + headinclude=false,footinclude=false,twoside]{scrartcl} + +\listfiles +\usepackage[T1]{fontenc} +\usepackage{listings} +\lstset{basicstyle=\ttfamily\small} +\usepackage{libertinus} +\usepackage[scaled=0.88]{beramono} +\usepackage{babel} +\usepackage[svgnames,dvipsnames,x11names,pspdf=-dALLOWPSTRANSPARENCY]{pstricks-pdf} +\usepackage{pstricks-add} +\usepackage{showexpl} +\lstset{explpreset={pos=l,width=-99pt,overhang=0pt,hsep=\columnsep,vsep=\bigskipamount,rframe={}}, + escapechar=?} + +\usepackage{biblatex} +\addbibresource{PSTricks.bib} +\def\Lcs#1{\texttt{\textbackslash#1}} +\begin{document} + +\title{\texttt{News -- \the\year}\\ \Large new macros and bugfixes for the basic package.} +\author{Herbert Voß} +\date{\today} + +\maketitle + +\tableofcontents + +\part{\texttt{pstricks} -- package} + +%-------------------------------------------------------------------------------------- +\section{\texttt{pstricks.sty}} +%-------------------------------------------------------------------------------------- +The optional argument \texttt{gsfonts} can be used to load only the symbol font from GhostScript. +Otherwise the one from URW or the system is used, which is the default. + + + +%-------------------------------------------------------------------------------------- +\section{\texttt{pstricks.tex} (v. 3.03 -- 2021/08/23)} +%-------------------------------------------------------------------------------------- + +\subsection{Arrows} + +There are new arrow tyoes and a new optional argument \texttt{tipcolor}: + + +\begin{LTXexample}[width=5cm] +\begin{pspicture}[showgrid](4.2,3.25) +\psline{-T>}(0,1)(4,1) +\psline[arrowscale=2]{<T-T>}(0,2)(4,2) +\psline[tipcolor=red,arrowscale=2]{<T-}(0,3)(4,3) +\end{pspicture} +\end{LTXexample} + +%\@namedef{psas@T>}{ false \psk@arrowinset \psk@arrowlength \psk@arrowsize \tx@ArrowT }% hv 20210531 +%\@namedef{psas@<T}{ % hv 20071211 +% true \psk@arrowinset \psk@arrowlength \psk@arrowsize \tx@ArrowT +%} + + + +\subsection{Symbolfont} + + +Use by default the URW or system symbol font for \Lcs{psdot}. This can be changes by using +the optional argument \texttt{gsfonts}: + +\begin{verbatim} +\usepackage[gsfonts]{pstricks} +\end{verbatim} + +\TeX-users have to define the switch and + +\begin{verbatim} +\newif\ifpstGSfonts +\pstGSfontsfalse % or true for using GS font + +\input pstricks +... +\end{verbatim} + + +\nocite{*} +\printbibliography + + +\end{document} + |