\align
and \array
environments.Here's a MWE to show the ugly distribution of equations on a page, that I want to fix.
Code: Select all
\documentclass[12pt,letterpaper]{book}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[total={6in,10in},left=1.5in,top=0.5in,includehead,includefoot]{geometry}
\begin{document}
A small line of text :
\begin{align}
x &= y^2 - c + d + z^3,
& z &= x^3 + x - y^2.
\end{align}
Just another small line of text :
\begin{align}
x -5 y + 3 &= y^2,
& y^2 &= -\: x^2 + 4 - y^2 - x.
\end{align}
Yet another line :
\begin{align}
A + B + E &= b,
& B - C &= 0.
\end{align}
The global distribution of these equations is ugly !
\end{document}
Any idea about how to achieve what I'm looking for ?