Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. %README: this copy with comprehensive attack and defences description.
  2.  
  3. documentclass[compsoc, conference, letterpaper, 10pt, times]{IEEEtran}
  4. ifCLASSOPTIONcompsoc
  5. % IEEE Computer Society needs nocompress option
  6. % requires cite.sty v4.0 or later (November 2003)
  7. usepackage[nocompress]{cite}
  8. else
  9. % normal IEEE
  10.  
  11. usepackage{cite}
  12. fi
  13. ifCLASSINFOpdf
  14. else
  15. fi
  16.  
  17. usepackage{colortbl}
  18. usepackage{array}
  19. usepackage{booktabs}
  20. usepackage{multirow}
  21. newcommand{head}[1]{textnormal{textbf{#1}}}
  22. newcommand{normal}[1]{multicolumn{1}{l}{#1}}
  23. usepackage{amssymb}% http://ctan.org/pkg/amssymb
  24. usepackage{pifont}% http://ctan.org/pkg/pifont
  25. newcommand{cmark}{ding{51}}%
  26. newcommand{xmark}{ding{55}}%
  27. newcommand*rot{rotatebox{90}}
  28. usepackage{tabularx}
  29.  
  30. usepackage{msc}
  31. usepackage{xcolor}
  32. newcommand{quotes}[1]{``#1''} %for qoutation marks
  33.  
  34. DeclareRobustCommand*{IEEEauthorrefmark}[1]{%
  35. raisebox{0pt}[0pt][0pt]{textsuperscript{footnotesizeensuremath{#1}}}}
  36.  
  37. begin{document}
  38. title{Test}
  39.  
  40. section{Section Contains Footnote}
  41. maketitle
  42.  
  43. begin{table}[bt!]
  44. caption{Title}
  45. resizebox{columnwidth}{!} {
  46. begin{tabular} {lccccc}
  47. hline
  48. multicolumn{1}{c}{A}
  49. &&multicolumn{3}{c}{B} \
  50. cmidrule(lr){3-5}
  51. \
  52. & & AAA & BBB & CCC
  53. \ hline
  54. rowcolor[gray]{.9}
  55. Text1 & & cmark & cmark & cmark \
  56. Text2 & & xmark & cmark & xmark \
  57. rowcolor[gray]{.9}
  58. Text3 & & cmark & xmark & xmark \
  59. Text4 & & cmark & cmark & cmark \
  60. hline
  61. end{tabular}
  62. }%end resize box
  63. end{table}
  64.  
  65. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement