Guest User

Untitled

a guest
Jul 26th, 2018
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. documentclass[a4paper,twocolumn]{article}
  2. usepackage[margin=1in]{geometry}
  3. usepackage{multirow,booktabs}
  4. setlengthparindent{0pt}
  5. begin{document}
  6.  
  7. begin{tabular}{|c|c|c|c|}
  8. hline
  9. multirow{2}{*}{USERNAME} & multirow{2}{*}{PASSWORD} & Did the user denied access to the app when the user inputted wrong username or password? \
  10.  
  11. & & YES & NO \
  12. hline
  13. papad@gmail.com & 7221456 & & \
  14. hline
  15. idislikeyou@gmail.com & password & & \
  16. hline
  17. devs@gmail.com & 12A2ZAQR & & \
  18. hline
  19. devs@gmail.com & password & & \
  20. hline
  21.  
  22. end{tabular}
  23.  
  24. end{document}
  25.  
  26. documentclass[a4paper,twocolumn]{article}
  27. usepackage[margin=1in]{geometry}
  28. usepackage{multirow,booktabs}
  29. usepackage{amssymb}
  30. usepackage{array}
  31.  
  32. newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
  33. setlengthparindent{0pt}
  34. begin{document}
  35.  
  36. begin{center}
  37. begin{tabular}{@{}*{2}{c}*{2}{C{.5linewidth}}@{}}
  38. toprule
  39. multirow{2}{*}{USERNAME} & multirow{2}{*}{PASSWORD} & multicolumn{2}{C{linewidth}}{Did the user denied access to the app when the user inputted wrong username or password?} \ cmidrule{3-4}
  40. & & YES & NO \ midrule
  41. papad@gmail.com & 7221456 & checkmark & \
  42. idislikeyou@gmail.com & password & checkmark & checkmark \
  43. devs@gmail.com & 12A2ZAQR & checkmark & \
  44. devs@gmail.com & password & & checkmark \ bottomrule
  45. end{tabular}
  46. end{center}
  47.  
  48. end{document}
Add Comment
Please, Sign In to add comment