Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. % UNITS
  4. usepackage{siunitx}
  5. sisetup{per=slash, load=abbr}
  6.  
  7. % GRAPHICS
  8. usepackage{tikz}
  9. usepackage{pgfplots}
  10. pgfplotsset{width=7cm,compat=1.3}
  11.  
  12. begin{document}
  13.  
  14. begin{tikzpicture}
  15. pgfplotsset{
  16. scale only axis,
  17. scaled x ticks=base 10:3,
  18. xmin=0, xmax=0.06
  19. }
  20.  
  21. begin{axis}[
  22. axis y line*=left,
  23. ymin=0, ymax=80,
  24. xlabel=x-axis,
  25. ylabel=y-axis 1,
  26. ]
  27. addplot[smooth,mark=x,red]
  28. coordinates{
  29. (0,68.6)
  30. (0.0148,72)
  31. (0.0295,68.6)
  32. (0.0441,53.4)
  33. (0.059,22.8)
  34. }; label{plot_one}
  35. %addlegendimage{/pgfplots/refstyle=Hplot}addlegendentry{plot 1}
  36. addplot[smooth,mark=o,green]
  37. coordinates{
  38. (0,60)
  39. (0.0148,65)
  40. (0.0295,73)
  41. (0.0441,49)
  42. (0.059,19)
  43. }; label{plot_two}
  44. %addlegendentry{plot 2}
  45. end{axis}
  46.  
  47. begin{axis}[
  48. axis y line*=right,
  49. axis x line=none,
  50. ymin=0, ymax=100,
  51. ylabel=y-axis 2
  52. ]
  53. addlegendimage{/pgfplots/refstyle=plot_one}addlegendentry{plot 1}
  54. addplot[smooth,mark=*,blue]
  55. coordinates{
  56. (0,0)
  57. (0.0148,48)
  58. (0.0295,66)
  59. (0.0441,66)
  60. (0.059,45.0)
  61. }; addlegendentry{plot 3}
  62. end{axis}
  63.  
  64. end{tikzpicture}
  65. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement