Guest User

Untitled

a guest
Dec 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{standalone}
  3. standaloneconfig{mode=buildnew}
  4. usepackage{tikz,pgfplots}
  5. pgfplotsset{compat=newest}
  6. begin{document}
  7. this is a Document.
  8. begin{figure}[!hbt]
  9. centering
  10. includestandalone{Standalone}
  11. caption{The caption text}label{fig:abc}
  12. end{figure}
  13. end{document}
  14.  
  15. documentclass[convert=false]{standalone}
  16. usepackage{tikz}
  17. usepackage{pgfplots}
  18. begin{document}
  19. begin{tikzpicture}
  20. begin{axis}
  21. addplot[blue, mark=x] coordinates {(0,0)
  22. (1,2)(2,3)
  23. (3,4)(4,6)
  24. (5,11)(6,20)
  25. (7,15)(8,12)
  26. (9,8)(10,7)
  27. (11,3)(12,0)};
  28. label{axis1}
  29. end{axis}
  30. %
  31. end{tikzpicture}
  32. end{document}
Add Comment
Please, Sign In to add comment