I need to show four equations : two equations on one line, and two other equations on a second line, like this (compilable code):
Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\begin{document}
\begin{align}
Axy = Bx - 3 &= z = k,
& Bx - yz &= - 6, \\ \nonumber \\
C - D &= E + f = 0,
& Gx - 4y &= 2.
\end{align}
\end{document}
Here's a preview from the code above :

- 4equations.jpg (8.83 KiB) Viewed 2817 times
Currently, the equations aren't properly aligned. The two equations on the left side should be centered, as if I was using the
gather environment. The two equations on the right side should also be centered. How can I do that ?
This is probably some pretty basic stuff, but I really don't know how to do it !
