I have a 700+-page manuscript with 70+ PStricks figures like, for example, this one:
Some of my figures (though not the above example) even use the PostScript interpreter to compute the shape of a curve. Since dvipdf works even on these, it is obviously possible to translate all my figures to PDF. However, unfortunately, PDFLaTeX won't do it.
One would like to use modern tools like PDFLaTeX, XeTeX, etc.—especially, one would like to use PDFLaTeX.
The answer I am not looking for: convert to TikZ. I like TikZ. The next manuscript I write, I mean to use TikZ, but I've already sunk the hours into PStricks for this manuscript.
Here is one clunky solution to a related problem. Surely however there is a better way to do what I want to do, isn't there? (There is also this but I don't think that it has to do with me.)
How can I backfit my PStricks figures to PDFLaTeX, please?

auto-pst-pdfpackage? (most pstricks works with pdftex via that route, but not all) – David Carlisle Jul 01 '17 at 16:46auto-pst-pdf? Or maybe I was using it wrong. Thanks for the helpful prod! – thb Jul 01 '17 at 16:50auto-pst-pdfworks only forpspictureenvironments. If you have not such an environment, e.g. apsmatrix, then you have to put that PSTricks related code into an environment\begin{postscript} ... \end{postscript}– Jul 01 '17 at 16:55postscriptenvironment! I didn't know about that. I will try it. – thb Jul 01 '17 at 17:02-shell-escapeforpdflatex– Jul 01 '17 at 18:04.pdffigures with\includegraphics. It will be easier to manage. – Bernard Jul 01 '17 at 18:16