Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. begin{table}[tp]%
  2. centering%
  3. begin{tabular}{cccccc}
  4. toprule%
  5. &Table &Light [L] &$zeta_0/2pi$ [MHz] &Flux [1/s] &Dimensions [m] \toprule
  6. &10 &3 &28.73 &asd &$(20times 10)$ \
  7. &1 &3 &28.73 &asd &$(20times 10)$ \
  8. &0 &3 &28.73 &asd &$(20times 10)$ \bottomrule
  9. end{tabular}
  10. caption{Maximum load and nominal tension.}
  11. label{aggiungi}
  12. end{table}
  13.  
  14. listfiles
  15. documentclass{article}
  16. usepackage{caption,array,booktabs}
  17. begin{document}
  18.  
  19. begin{table}
  20. caption{Maximum load and nominal tension.}label{aggiungi}
  21. centering
  22. begin{tabular}{@{}cccc>{$}c<{$}@{}}toprule
  23. Table &Light &$zeta_0/2pi$ &Flux &mbox{Dimensions} \
  24. &[L] & [MHz] &[1/s] &mbox{[m]} \midrule
  25. 10 &3 &28.73 &asd &(20times 10) \
  26. 1 &3 &28.73 &asd &(20times 10) \
  27. 0 &3 &28.73 &asd &(20times 10) \bottomrule
  28. end{tabular}
  29. end{table}
  30.  
  31. end{document}
  32.  
  33. documentclass{article}
  34. usepackage{booktabs,siunitx}
  35. begin{document}
  36. begin{table}
  37. centering
  38. begin{tabular}{ccS[table-format=2.2]cc}
  39. toprule
  40. Table & Light & {$zeta_0/2pi$} & Flux & Dimensions \
  41. & (si{L}) & {(si{MHz})} & (si{s^{-1}}) & (si{m}) \
  42. midrule
  43. 10 & 3 & 28.73 & asd &$(20times 10)$ \
  44. 1 & 3 & 28.73 & asd &$(20times 10)$ \
  45. 0 & 3 & 28.73 & asd &$(20times 10)$ \
  46. bottomrule
  47. end{tabular}
  48. caption{Maximum load and nominal tension.}
  49. label{aggiungi}
  50. end{table}
  51. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement