Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. documentclass[]{standalone}
  2. usepackage{pgfplots}
  3. pgfplotsset{compat=1.12}
  4. usetikzlibrary{plotmarks}
  5. begin{document}
  6. begin{tikzpicture}
  7. begin{axis}
  8. addplot[mark=*] coordinates
  9. {(0,0)};
  10. node[blue] at (0,0) {pgfuseplotmark{*}};
  11. end{axis}
  12. end{tikzpicture}
  13. begin{tikzpicture}
  14. begin{axis}
  15. addplot[mark=pentagon*] coordinates
  16. {(0,0)};
  17. node[red] at (0,0) {pgfuseplotmark{pentagon*}};
  18. end{axis}
  19. end{tikzpicture}
  20. end{document}
  21.  
  22. Package: pgfplots 2015/05/02 v1.12.1 Data Visualization (1.12.1)
  23. Package: pgf 2013/12/18 v3.0.0 (rcs-revision 1.14)
  24. File: pgflibraryplotmarks.code.tex 2013/07/20 v3.0.0 (rcs-revision 1.13)
  25.  
  26. documentclass[]{standalone}
  27. usepackage{pgfplots}
  28. pgfplotsset{compat=1.12}
  29. usetikzlibrary{plotmarks}
  30. begin{document}
  31. begin{tikzpicture}
  32. begin{axis}
  33. addplot[mark=pentagon*] coordinates
  34. {(0,0)};
  35. node[red] at (0,0) {tikz pgfextra{pgfuseplotmark{pentagon*}};};
  36. end{axis}
  37. end{tikzpicture}
  38. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement