Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. natural,two,three
  2. 1,2,3
  3. 2,4,6
  4. 3,6,9
  5. 4,8,12
  6. 5,10,15
  7. 6,12,18
  8. 7,14,21
  9. 8,16,24
  10. 9,18,27
  11. 10,20,30
  12.  
  13. documentclass{article}
  14. usepackage{pgfplotstable}
  15. begin{document}
  16. pgfplotstabletypeset[
  17. col sep=comma,
  18. string type,
  19. columns/name/.style={column name=natural, column type={|l}},
  20. columns/surname/.style={column name=two, column type={|l}},
  21. columns/age/.style={column name=three, column type={|c|}},
  22. every head row/.style={before row=hline,after row=hline},
  23. every last row/.style={after row=hline},
  24. ]{contents.csv}
  25. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement