Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{pgf}
  4. usepackage{pgfplots}
  5.  
  6. pgfplotsset{compat=1.8}
  7.  
  8. usepackage{tikz}
  9. usetikzlibrary{arrows,automata,calc,shapes, positioning,shadows,shadows.blur,shapes.geometric}
  10.  
  11. begin{document}
  12. begin{tikzpicture}
  13. begin{axis}
  14. addplot[thick,line cap=round,rounded corners, draw=red,double=white,double distance=1.6pt,fill=white, blur shadow={shadow yshift=-5pt, shadow xshift=3pt,shadow blur radius=3pt}
  15. ] table {
  16. dof l2_err level
  17. .2 2.6 2
  18. %.3 2.8 3
  19. .4 2.3 4
  20. .5 2.4 5
  21. .6 1.1 6
  22. .7 1.8 7
  23. .8 4.6 8
  24. .9 3.3 9
  25. 1 6.2 10
  26. };
  27. end{axis}
  28. end{tikzpicture}
  29. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement