Advertisement
Guest User

table

a guest
Jul 11th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.80 KB | None | 0 0
  1. \documentclass[10pt]{article}
  2.  
  3. \usepackage{booktabs}
  4. \usepackage{multirow}
  5.  
  6.  
  7. \begin{document}
  8.  
  9. % Please add the following required packages to your document preamble:
  10. % \usepackage{multirow}
  11. \begin{table}[]
  12. \small % Uncomment if table must be smaller
  13. \addtolength{\leftskip} {-4.5cm}
  14. \tabcolsep=0.11cm
  15. \begin{tabular}{ll *{11}{c}}
  16.  \toprule
  17. \multicolumn{2}{l}{} & \textbf{Global} & \textbf{Canada}  & \textbf{China} & \textbf{Germany} & \textbf{Ghana} & \textbf{India} & \textbf{Iran} & \textbf{Norway} & \textbf{Russia} & \textbf{USA} \\ \midrule
  18. \multicolumn{2}{l}{HTTPS} & 85\% & 82\% & 54\% & 81\% & 63\% & 67\% & 59\% & 85\% & 64\% & 87\% \\
  19. \cmidrule(lr){1-2} \multicolumn{2}{l}{HSTS(\% of HTTPS sites)} & 91\% & 67\% & 74\% & 62\% & 69\% & 69\% & 81\% & 64\% & 73\% & 63\% \\
  20. \cmidrule(lr){1-2}\multirow{3}{*}{Signing Algorithm} & ecdsa-with-SHA256 & 12\% & 11\% & 3\% & 12\% & 17\% & 18\% & 9\% & 14\% & 7\% & 12\% \\
  21.                  & sha1WithRSAEncryption & 0\% & 0\% & 1\% & 0\% & 0\% & 0\% & 5\% & 0\% & 1\% & 0\% \\
  22.                  & sha256WithRSAEncryption & 88\% & 89\% & 95\% & 88\% &  83\% & 81\% & 86\% & 85\% & 92\% & 88\% \\
  23. \cmidrule(lr){1-2}\multirow{3}{*}{\shortstack[l]{Encryption Algorithm, \\ Key Size}} & EC256 & 17\% & 14\% & 10\% & 15\% & 20\% & 10\% & 11\% & 17\% & 10\% & 15\% \\
  24.                  &  RSA2048 &  79\% & 84\% & 87\% & 78\% & 76\% & 77\% & 83\% & 75\% & 82\% & 83\%  \\
  25.                  &  RSA4096 & 3\% & 2\% & 2\% & 6\% & 4\% & 2\% & 4\% & 7\% & 7\% & 2\% \\
  26. \cmidrule(lr){1-2}\multicolumn{2}{l}{Average CErtificate Length (months)} & 19 & 20 & 23 & 20 & 18 & 18 & 36 & 21 & 20 & 19 \\
  27. \cmidrule(lr){1-2}\multicolumn{2}{l}{Total Site Count} &  500 & 500 & 500 & 500 & 500 & 500 & 500 & 500 & 500 & 500 \\
  28. \bottomrule
  29. \end{tabular}
  30. \end{table}
  31.  
  32. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement