About these ads

Left equation numbering

By default, equation numbers are place on the right side of an equation for any numbered math environment, such as equation, eqnarray, and align. Surprisingly, the equation number position can is changed through the optional documentclass argument leqno:

Left numbering

\documentclass[leqno]{article}

Right numbering (by default and therefore usually skipped):

\documentclass[reqno]{article}

Here is a minimal working example:

\documentclass[a4paper,12pt, leqno]{article}
\usepackage{amsmath}
\begin{document}
\subsubsection*{Equation:}
\begin{equation}
	f(x)=ax^2+bx+c
\end{equation}
\subsubsection*{Align:}
\begin{align}
	f_1(x)&=a_1x^2+b_1x+c_1\\
	f_2(x)&=a_2x^2+b_2x+c_2
\end{align}
\end{document}

Align is part of the amsmath package which was used here because there are several reasons to avoid eqnarray.

About these ads

4 Responses to “Left equation numbering”

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 714 other followers

%d bloggers like this: