Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{hhline}
  3. usepackage{caption}
  4. usepackage{booktabs}
  5. begin{document}
  6. begin{table}[htb]
  7. centering
  8. sffamily
  9. captionsetup{font={bf,sf}}
  10. caption*{Access Levels}
  11. begin{tabular}{||*{5}{l||}}
  12. hhline{|t:=:t:=:t:=:t:=:t:=:t|}
  13. bfseries Modifier & bfseries Class & bfseries Package & bfseries Subclass & bfseries World \
  14. hhline{|:=::=::=::=::=:|}
  15. texttt{public} & Y & Y & Y & Y \
  16. hhline{|:=::=::=::=::=:|}
  17. texttt{protected} & Y & Y & Y & N \
  18. hhline{|:=::=::=::=::=:|}
  19. itshape no modifier & Y & Y & N & N \
  20. hhline{|:=::=::=::=::=:|}
  21. texttt{private} & Y & N & N & N \
  22. hhline{|b:=:b:=:b:=:b:=:b:=:b|}
  23. end{tabular}
  24. end{table}
  25.  
  26. begin{table}[htb]
  27. centering
  28. sffamily
  29. captionsetup{font={bf,sf}}
  30. caption*{Access Levels}
  31. begin{tabular}{l*{4}{c}}
  32. toprule
  33. bfseries Modifier & bfseries Class & bfseries Package & bfseries Subclass & bfseries World \
  34. midrule
  35. texttt{public} & Y & Y & Y & Y \
  36. texttt{protected} & Y & Y & Y & N \
  37. itshape no modifier & Y & Y & N & N \
  38. texttt{private} & Y & N & N & N \ bottomrule
  39. end{tabular}
  40. end{table}
  41. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement