I'm trying to convert my thesis to pdfLaTeX, as latex + dvips behaves ugly when it comes to break (really long) URLs... I'm using up-to-date TeXLive 2012 on Linux.
The only problem is (so far), that I heavily used pstricks and the related packages and I am not able to get them working nicely on pdfLaTeX (see my pictures) when interacting between different pspicture-environments (also using this sometime to have text directly related to pictures underneath):
latex + dvips + ps2pdf (gs)

pdflatex (arrow is missing)

Code for the example above:
\documentclass[12pt]{scrbook}
\PassOptionsToPackage{pdf}{pstricks} %used for pdflatex
\usepackage{pstricks,pst-plot,pst-node,pst-func}
\begin{document}
\begin{pspicture}(-1.5,0)(1.5,4)
\psTextFrame[ref=c,linestyle=none](-1.5,3)(1.5,4){First Plot}
\psplot[fillcolor=blue!30,fillstyle=solid,opacity=0.5]{-1.5}{1.5}{x 0 0.3 GAUSS}
\psaxes[labels=none,ticks=none]{->}(-1.5,0)(1.5,3)
\pnode(1.5,0.5){A}
\end{pspicture}
\vspace{5mm}
\begin{pspicture}(-1.5,0)(1.5,4)
\psTextFrame[ref=c,linestyle=none](-1.5,3)(1.5,4){Second Plot}
\psplot[fillcolor=blue!30,fillstyle=solid,opacity=0.5]{-1.5}{1.5}{x 0 0.6 GAUSS}
\psaxes[labels=none,ticks=none]{->}(-1.5,0)(1.5,3)
\pnode(1.5,0.5){B}
\nccurve{->}{A}{B}
\end{pspicture}
\end{document}

pstricksworks at all withpdflatex. I haven't used it, but have you consideredtikz? If you have a lot ofpstricksstuff, this might be too much work, but maybe it is possible to combine them? Like, use your plots, but create the arrow withtikz? – Anke Apr 10 '13 at 09:00latex+dvips+ps2pdfan include them in your main document with\includegraphics(pdfLaTeX is able to handle PDF-images). With this you could reuse yourpstrickswork in other documents easily. With using e.g. Makefiles you could process everything automatically – Stephan Lukasczyk Apr 10 '13 at 09:12pstricksused in latex creates a pdf-file containing all pictures (one on each side), therefore the arrow between two pictures is lost... I have really many graphics (optical physics related thesis) and there are some graphics that have more that 50 lines of code...triedtikzat first, but some things were not possible / too difficult, so I decided to go thepstricks-way. @Stephan Lukasczyk: There are also passages where standard-text and pictures are directly connected. Will think about the Makefile, but I'm afraid that it will look bad, when including whole pages to keep it ok – MrD Apr 10 '13 at 09:26pdflatex-solution. Alsoxelatexis problematic, as it produces at least a hundred errors, which I began tracking... Maybe I will find myself working on a better solution for thedvips-driver. If I get it working, I will pass it to the corresponding package authors, so that the whole community might benefit from my work. Thanks for your thoughts! – MrD Apr 10 '13 at 13:30latexyou have to use packagebreakurl, then long urls are no problem – Apr 11 '13 at 07:37latexbuild-tree. So maybe I'll just continue usinglatexas I think it is difficult to use postscript depended tricks just where I want (also as text overlay). – MrD Apr 11 '13 at 08:19