The align-command is such that when you type in several equation one on top of the other, every equation gets a number attached to it. How do you only attach a number to the last equation in the alignment. For instance:
Code: Select all
\documentclass[12pt,a4paper,danish]{article}
\usepackage[latin1]{inputenc}
\usepackage[danish]{babel} % danske overskrifter
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{amsmath}
\begin{document}
\begin{align}
\frac{d^{2} \left( EI\frac{d^{2}\omega}{dx^{2}} \right)} {dx^{2}}=p \quad& \Leftrightarrow \\
EI\frac{d^{2} \left( \frac{d^{2}\omega}{dx^{2}} \right)} {dx^{2}}=p \quad& \Leftrightarrow \\
\frac{d^{4}\omega}{dx^{4}}=\frac{p}{EI}
\end{align}
\end{document}