What are the advantages of TikZ/PGF over PSTricks?
TikZ is the only full graphics package for TeX I have ever used, so I can't really do a good comparison. However here are some things that I think are worth mentioning:
- What I like most about TikZ is its syntax. The authors clearly put a lot of thought into defining a syntax that is both flexible and easy to read (at the expense of some verbosity).
- The manual is full of examples and generally of extremely high quality.
- TikZ works with LaTeX, plain TeX and ConTeXt. It can be compiled with all modern engines (pdfTeX, LuaTeX, XeTeX), though a few things (shadings) currently only work with pdftex.
- Integration with gnuplot.
Some useful programming features, like
\foreach
or an extensible mathematics engine.On the other hand, PSTricks has been around for a longer time. In particular, there are lots of libraries built around it. So if you want to use one of the libraries that doesn't (yet) have a TikZ equivalent, you have to use PSTricks. Also I suppose there is better support on older systems, if updating is not possible.
TikZ: Features
- Canvas Size: Canvas size in TikZ is automatically provided. But it is visually not as smart as I think (see question Bounding box is larger than expected when drawing a curved path). In PSTricks, the canvas must be calculated manually to let TeX provide the required space (because TeX has no knowledge about PostScript).
- Intersection Points: With
intersection
library, intersection points of two arbitrary curves can be determined easily in TikZ but not in PSTricks because such a package has not been implemented yet in PSTricks.
TikZ: Over detailed documentations
The TikZ documentation is extremely detailed. In the tutorial part, it even came to talk about things (e.g., Karl's students) that are unnecessary (at least for me). For example:
On page 23
On page 28
On page 33
and
On page 35
On page 37
PGF/TikZ: Inconsistent Keys
Apparently inconsistencies appear not only in PSTricks but also in PGF/TikZ. Verbosity, which is the great feature in PGF/TikZ, together with provided inconsistency will burden the users to remember unnecessary things.
If PGF/TikZ adopts space separated words for its multi-words keys as follows
line width
legend style
legend cell align
- etc, etc, etc (I cannot list all here)
the following inconsistent naming convention must be avoided.
xlabel
(that should bex label
to make it consistent)xmin
(that should bex min
to make it consistent)xtick
(that should bex tick
to make it consistent)xticklabel
(that should bex tick label
to make it consistent)- etc, etc, etc (I cannot list all here)
PSTricks: Too short documentation
Unlike the TikZ documentation, some of PSTricks' documentations are rather confusing because of their brevity. We can see one of them in my question.
PSTricks: Counter intuitive macro names
One of the bad features of PSTricks is its adopted naming convention. PSTricks might be designed without adopting the concept of taxonomy. Inconsistent naming convention makes the users difficult to remember the available PSTricks' key-value options.
I will list the inconsistent key-value options here and progressively add others in the future.
PSTricks' core:
We have
gridlabelcolor
that is a good naming convention. But the following names broke the convention.gridlabels
, it should begridlabelsize
.gridfont
, it should begridlabelfont
.
pst-eucl
package:PointName
represents the printed name of a defined point.PointNameSep
represents the radial distance of the printed name from the defined point. Both keys seem to be good, but the following naming broke the convention.PtNameMath
, it should bePointNameMath
. OrPointNameMode
with options eithermath
ortext
.PosAngle
, it should bePointNameAngle
orPointNameDirection
.
PSTricks' core again:
For placing object to a certain position, we have (among others)
\rput
,\nput
and\uput
. However, their abbreviation seems not to be intuitive. According to Herbert,\nput
stands for node put\rput
stands for ref put\uput
stands for user put
I cannot understand why the authors chose "node", "ref" and "user" as the prefix as these names don't emphasize something that can be used to uniquely identify each of them.
PSTricks' core again:
(Among others)
\parametricplot
has an alias\psparametricplot
,\scalebox
has an alias\psscalebox
. The underlying reason is to make consistent name as well as to avoid name clash.However, why are there still the following?
\newpsobject
that should be\psnewobject
\newpsstyle
that should be\psnewstyle
\addtopsstyle
that should be\psaddtostyle
pst-node
package:\curvepnode
and\curvepnodes
are used to create a node and a list of nodes, respectively, based on the given parametric expression<abscissa algebraic expression in t>|<ordinate algebraic expression in t>
or<abscissa RPN expression in t> <ordinate RPN expression in t>
. However, its complementers are\fnpnode
and\fnpnodes
based on the expression in<ordinate as the algebraic function of x>
or<ordinate as the RPN function of x>
.In my opinion, the naming for the both groups should be based on the expression representation. Thus
\curvepnode
and\curvepnodes
should be named as\parametricpnode
and\parametricpnodes
and\fnpnode
and\fnpnodes
should be named as\functionpnode
and\functionpnodes
. The prefixcurve
cannot be used to uniquely identify the first group from the second group because both groups are related to curves. Curves can be represented in either parametric(x(t),y(t))
or function(x,f(x))
.pst-node
again:When using
\getnodelist
, there are 2 macros available internally,\pst@args
and\PST@root
. Do you notice the capitalization?pst
versusPST
? Why?
PSTricks: Exceptional behavior
I found some exceptions in PSTricks that might burden users. The patterns should be intuitive to free users from remembering unnecessary things as follows. I believe that you feel uncomfortable to remember the following notes as they are illogically defined so they waste your memory (in your brain).
- closed curves
psframe
,pscircle
,psellipse
,pswedge
,psellipticwedge
have changeabledimen=outer
by default except for\polygon
and\psccurve
that have changeabledimen=middle
. The radial sides ofpswedge
andpsellipticwedge
have unchangeabledimen=middle
. - open curves
psline
,pscurve
,psbezier
,psarc
have unchangeabledimen=middle
except for\psellipticarc
that has changeabledimen=outer
. all closed curves move the current points to their starting points except for
\psellipse
and\pscircle
that do not move the current points.(0,0)
as the first point may be ignored forpsframe
,pscircle
,psellipse
,pswedge
,psellipticwedge
,pspolygon
,psline
,psbezier
andpsellipticarc
but it must be explicitly specified forpsccurve
,pscurve
andpsarc
.In
pst-eucl
the labels can be enabled and disabled withPointName=default
andPointName=none
, respectively. However, for\pstInterCC
(probably other macros as well as I haven't checked all) must be disabled withPointNameA=
orPointNameB=
rather thanPointNameA=none
orPointNameB=none
, respectively. It is a known issue, see this discussion but it is left as is as a feature (maybe).To create a new coordinate system (specially for non-orthogonal ones),
pst-eucl
provides\pstOIJGeonode
whereO
,I
andJ
are the points on which the new coordinate system is based. Unfortunately, the first point on this coordinate system must be specified as the first argument rather than the fourth one which is more common intuitively. Here is the abnormal syntax,\pstOIJGeonode{<first point>}{O}{I}{J}{<second point>}...{<n point>}
It should be
\pstOIJGeonode{O}{I}{J}{<first point>}{<second point>}...{<n point>}
The maintainer of PSTricks (Herbert) is tirelessly answering questions here and elsewhere. He is publishing books on PSTricks. If I had to choose one, this was a strong argument towards PSTricks.