30

Equations and amsmath environments put equation numbers to the right side by default, the output of

\begin{multline}
  some equation
\end{multline}

is:

equation (number)

How can I change it this way:

(number) equation
Stefan Kottwitz
  • 231,401
Nadori
  • 1,865
  • do you want only the numbers left or also all equations left aligned? The multline environment is by default left aligned with its first line but not the other environments, like align –  Nov 21 '11 at 07:18

1 Answers1

41

Pass the option leqno to your document class, to be used by the class and also inherited by packages, such as the amsmath package. It would already work if you would specify the option directly to amsmath, however for consistency I would already use it at class level.

\documentclass[leqno]{article}
\usepackage{amsmath}
\begin{document}
\begin{multline}
  some equation
\end{multline}
\end{document}

leqno means left equation numbers.

Stefan Kottwitz
  • 231,401