Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. begin{table}[h]
  2. centering
  3. begin{tabular}{| p{.20textwidth} | p{.80textwidth} |}
  4. hline
  5. foo & bar \ hline
  6. foo & bar \ hline
  7. ...
  8. end{tabular}
  9. end{table}
  10.  
  11. documentclass{article}
  12.  
  13. usepackage{longtable}
  14. usepackage{lipsum} % just for dummy text- not needed for a longtable
  15.  
  16. begin{document}
  17. lipsum[1]
  18. lipsum[1]
  19. lipsum[1]
  20.  
  21. %begin{table}[h]
  22. %centering
  23. begin{longtable}{| p{.20textwidth} | p{.80textwidth} |}
  24. hline
  25. foo & bar \ hline
  26. foo & bar \ hline
  27. foo & bar \ hline
  28. foo & bar \ hline
  29. foo & bar \ hline
  30. foo & bar \ hline
  31. foo & bar \ hline
  32. foo & bar \ hline
  33. foo & bar \ hline
  34. foo & bar \ hline
  35. foo & bar \ hline
  36. caption{Your caption here} % needs to go inside longtable environment
  37. label{tab:myfirstlongtable}
  38. end{longtable}
  39. %end{table}
  40.  
  41. Table ref{tab:myfirstlongtable} shows my first longtable.
  42. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement