Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. documentclass[11pt, a4paper, twoside, fleqn, ngerman]{scrreprt}
  2. usepackage{pgfplots}
  3. usepgfplotslibrary{external}
  4. tikzexternalize[shell escape=-enable-write18]
  5. usepackage{tikz}
  6.  
  7. begin{document}
  8. begin{figure}[ht]
  9. centering
  10. input{plot.tikz}
  11. caption{...}
  12. label{fig:a}
  13. end{figure}
  14. end{document}
  15.  
  16. definecolor{mycolor1}{rgb}{0.00000,1.00000,1.00000}% is used for other addplots not shown
  17.  
  18. begin{tikzpicture}
  19.  
  20. begin{axis}[%
  21. width=5cm,
  22. height=5cm,
  23. at={(0.758in,0.481in)},
  24. scale only axis,
  25. xmin=-1,
  26. xmax=1,
  27. xlabel style={font=bfseries},
  28. xlabel={Real z},
  29. ymin=-1,
  30. ymax=1,
  31. ylabel style={font=bfseries},
  32. ylabel={Imag z},
  33. axis background/.style={fill=white}
  34. ]
  35. addplot [color=black,solid,line width=1.5pt,forget plot]
  36. table[row sep=crcr]{%
  37. 0.52 0.67\
  38. 0.82 0.67\
  39. };
  40.  
  41. addplot [color=black,solid,line width=1.5pt,forget plot]
  42. table[row sep=crcr]{%
  43. 0.52 -0.67\
  44. 0.82 -0.67\
  45. };
  46.  
  47. %% Several other addplot's
  48. end{axis}
  49. end{tikzpicture}%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement