Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. begin{document}
  4.  
  5. begin{tabular}{cc|c}
  6. a & b & xx \
  7. c & d & xx \ hline
  8. e & f & yy \
  9. g & h & yy
  10. end{tabular}
  11.  
  12. end{document}
  13.  
  14. documentclass{article}
  15. usepackage{multirow}
  16. begin{document}
  17.  
  18. begin{tabular}{cc|c}
  19. a & b & multirow{2}{*}{xx} \
  20. c & d & \ hline
  21. e & f & multirow{2}{*}{yy} \
  22. g & h &
  23. end{tabular}
  24.  
  25. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement