Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{mathtools}
  3. usepackage{amsmath}
  4.  
  5. begin{document}
  6. begin{flalign}
  7. A = & B & C = & D \
  8. E = & F & G = & H
  9. end{flalign}
  10. end{document}
  11.  
  12. documentclass{article}
  13. usepackage{mathtools}
  14. usepackage{amsmath}
  15. usepackage{multicol}
  16.  
  17. begin{document}
  18. begin{multicols}{2}
  19. begin{align}
  20. A = & B \
  21. E = & F
  22. end{align}
  23. columnbreak
  24. begin{align}
  25. C = & D \
  26. G = & H
  27. end{align}
  28. end{multicols}
  29.  
  30. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement