ich hab ein wenig mit pfgplots und gnuplots herumexperimentiert und dabei ist mir ein etwas seltsames Verhalten aufgefallen. Hierzu ein Minimalbeispiel:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{spy}
\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}
\begin{scope}[spy using outlines={circle,
magnification=10,
size=1cm,
connect spies}]
\begin{axis}
\addplot[surf,smooth]gnuplot{norm(x)};
\addplot[smooth,surf]gnuplot{norm(x)};
\end{axis}
\spy [black] on (4.5,5.05) in node at (4,2);
\end{scope}
\end{tikzpicture}
\end{document}
Weiß jemand, woran das liegen könnte oder bin ich mal wieder einfach zu doof?
LG chiefrocker

