Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. documentclass[]{standalone}
  2. usepackage{pgfplots,pgfplotstable}
  3. pgfplotsset{compat=newest}
  4.  
  5. begin{filecontents}{data1.txt}
  6. 0 0
  7.  
  8. 1 1
  9. end{filecontents}
  10.  
  11.  
  12. begin{filecontents}{data2.txt}
  13. 0 0
  14. 1 1
  15. end{filecontents}
  16.  
  17. begin{document}
  18. begin{tikzpicture}
  19. begin{axis}
  20.  
  21. addplot [color=black] table[x index =0, y index = 1,] {./data1.txt};
  22.  
  23. addplot [color=red,very thick,dashed] table[x index =0, y index = 1,] {./data2.txt};
  24.  
  25. end{axis}
  26. end{tikzpicture}
  27. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement