Advertisement
VincentOostelbos

center environment

Sep 27th, 2015
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.46 KB | None | 0 0
  1. % Instead of...
  2. \begin{prooftree}
  3. \AXC{$A \vdash A$}
  4. \end{prooftree}
  5.  
  6. \begin{prooftree}
  7. \AXC{$B \vdash B$}
  8. \end{prooftree}
  9.  
  10. % ...you can use...
  11.  
  12. \begin{center}
  13. \AXC{$A \vdash A$}
  14. \DisplayProof
  15. \hskip 3em
  16. \AXC{$B \vdash B$}
  17. \DisplayProof
  18. \end{center}
  19.  
  20. % ...and it will be on one line.
  21. % (Make sure you don't put a whiteline in the \begin{center} block,
  22. % because it will be read by LaTeX as a line break
  23. % and you still won't get the proofs side by side.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement