template.tpl 572 B

123456789101112131415161718192021222324252627
  1. \documentclass{article}
  2. \usepackage[pdftex,active,tightpage]{preview}
  3. \setlength\PreviewBorder{2mm}
  4. \usepackage{pgfplots}
  5. \begin{document}
  6. \begin{preview}
  7. \begin{tikzpicture}
  8. \begin{axis}[
  9. view = {120}{35},% important to draw x,y in increasing order
  10. xmin = 0,
  11. ymin = 0,
  12. xmax = [XMAX],
  13. ymax = [YMAX],
  14. zmin = 0,
  15. unbounded coords = jump,
  16. colormap={pos}{color(0cm)=(white); color(6cm)=(blue)}
  17. ]
  18. \addplot3[surf,mark=none] coordinates {
  19. [PLACE_PLOT_HERE]
  20. };
  21. \end{axis}
  22. \end{tikzpicture}
  23. \end{preview}
  24. \end{document}