Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. documentclass[12pt,a4paper,twoside]{book}
  2. usepackage[utf8]{inputenc}
  3. usepackage[pdftex]{graphicx}
  4. usepackage[miktex, subfolder]{gnuplottex}
  5.  
  6. begin{document}
  7. begin{figure}[h]
  8. label{fig:wenaRes}
  9. begin{gnuplot}[terminal=cairolatex, terminaloptions = {size 15cm, 15cm}]
  10. set style line 11 lc rgb '#808080' lt 1
  11. set border 3 back ls 11
  12. set tics nomirror
  13. set xlabel "x"
  14. set ylabel "y"
  15.  
  16. set multiplot layout 2, 1 title 'Multiplot title'
  17. plot [-4:4] sin(x) with lines
  18. plot [-4:4] cos(x) with lines
  19.  
  20.  
  21. end{gnuplot}
  22. end{figure}
  23. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement