Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. begin{table}[!ht]
  2. begin{center}
  3. caption{Actors vs Positional Dynamicity (based on Closeness Centrality) in Different LSNs} label{pos1}
  4. begin{tabular}{|c||c| c| c| c| c|}
  5. hline
  6.  
  7. Actor No. & LSN 1 & LSN 2 & LSN 3 & ... & LSN 60 \ [0.5ex]
  8. hlinehline
  9. 1 &0.205602 &0.262515 & 0.247979 &... & 0.170467 \
  10. hline
  11. 2 &0.00961852 &0.0200901 & 0.0207746 &... & 0.107013 \
  12. hline
  13. 3 &0.1271 & 0.170967 & 0.199928 &... &0.173208 \
  14. hline
  15. 4 & 0.00263733 & 0.00524802 & 0.00787202 &... &0.0100803 \
  16. hline
  17. 5 & 0.00300429 &0.00597824 & 0.00673418 &... & 0.00706005 \
  18. hline
  19. ... & ... & ... & ... &... . &... \
  20. hline
  21. 1899 &0.00994494 &0.00968842 & 0.0216411 &...&0.0610909 \
  22. hline
  23. end{tabular}
  24. end{center}
  25. end{table}
  26.  
  27. documentclass[twocolumn]{IEEEtran}
  28. usepackage{lipsum,booktabs,siunitx}
  29. newcolumntype{T}[1]{S[table-format=#1,group-digits=false]}
  30. begin{document}
  31. lipsum[2] % filler text
  32.  
  33. begin{table}[!ht]
  34. % let LaTeX figure out optimal amount of intercolumn whitespace:
  35. setlengthtabcolsep{0pt}
  36. caption{Actors vs. Positional Dynamicity (based on
  37. Closeness Centrality) in Different LSNs} label{pos1}
  38. begin{tabular*}{columnwidth}{@{extracolsep{fill}}c*{3}{T{1.8}}cT{1.8}}
  39. toprule
  40. Actor No. & {LSN 1} & {LSN 2} & {LSN 3} & $cdots$ & {LSN 60} \
  41. midrule
  42. 1 &0.205602 &0.262515 & 0.247979 & $cdots$ & 0.170467 \
  43. 2 &0.00961852 &0.0200901 & 0.0207746 & $cdots$ & 0.107013 \
  44. 3 &0.1271 & 0.170967 & 0.199928 & $cdots$ & 0.173208 \
  45. 4 & 0.00263733 & 0.00524802 & 0.00787202 & $cdots$ & 0.0100803 \
  46. 5 & 0.00300429 &0.00597824 & 0.00673418 & $cdots$ & 0.00706005\
  47. $cdots$ & $cdots$ & $cdots$ & $cdots$ & $cdots$ & $cdots$ \
  48. 1899&0.00994494 &0.00968842 & 0.0216411 & $cdots$ & 0.0610909 \
  49. bottomrule
  50. end{tabular*}
  51. end{table}
  52. lipsum[2-10] % more filler text
  53. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement