您用的LaTeX程序把下面代码转换成pdf格式需要多长时间?

大笑好慢啊

http://tex.stackexchange.com/questions/100760/problem-in-modifying-contour-label-style-in-pgfplots


\documentclass[crop=true, border=0mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        axis on top,
        title = {$\omega_\phi\left(x, \sigma\right) = \frac{\Gamma}{\pi{R_c}^2}\exp\left[-\frac{\left(x-x_0\right)^2+\left(\sigma-R_0\right)^2}{{R_c}^2}\right]$},
        xmin=2, xmax=3,
        ymin=2, ymax=3,
        view={0}{90},
        xlabel = {$x$},
        ylabel = {$\sigma$},
        ]
        \addplot3[
          contour gnuplot={
            contour label style={
              nodes={text=black},
              /pgf/number format/fixed,
              /pgf/number format/fixed zerofill,
              /pgf/number format/precision=1,
            }
          },
          samples=500,
          contour/draw color={black},
        ]
        {1/3.1415927/0.25^2*exp(-((x-2.5)^2+(y-2.5)^2)/0.25^2)};
    \end{axis}
\end{tikzpicture}
\end{document}

您用的LaTeX程序把下面代码转换成pdf格式需要多长时间?_第1张图片

你可能感兴趣的:(stack,Exchange,pdf,latex)