Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. documentclass[10pt,a4paper]{article}
  2. usepackage{tikz}
  3. usepackage{pgfplots}
  4. usepgfplotslibrary{groupplots}
  5. begin{document}
  6. begin{figure}
  7. begin{tikzpicture}
  8. begin{groupplot}[
  9. group style={group size=2 by 2},
  10. cycle multiindex* list = {very thicknextlist rednextlist
  11. only
  12. marksnextlist}
  13. ]
  14. nextgroupplot addplot {x}; addplot {x^2};
  15. nextgroupplot[cycle list = {red, blue}] addplot {x}; addplot
  16. {x^2};
  17. nextgroupplot addplot[green] {x}; addplot {x^2};
  18. nextgrouplot %Here I am not sure what to do
  19. begin{groupplot}[
  20. group style={group size=2 by 2},
  21. cycle multiindex* list = {very
  22. thicknextlist rednextlist only
  23. marksnextlist}
  24. ]
  25. nextgroupplot addplot {x}; addplot {x^2};
  26. nextgroupplot addplot {x}; addplot {x^2};
  27. nextgroupplot addplot {x}; addplot {x^2};
  28. nextgroupplot addplot {x}; addplot {x^2};
  29. end{groupplot}
  30. end{groupplot}
  31. end{tikzpicture}
  32. end{figure}
  33. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement