I have an align environment in which the equations are numbered on the left. Can I add notes on the right (e.g. to explain where each equation comes from)?
Asked
Active
Viewed 104 times
0
1 Answers
2
% arara: pdflatex
\documentclass[leqno]{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
x&=y &&\text{comment for equation (1)}\\
y&=x &&\text{comment for equation (2)}
\end{align}
\end{document}

LaRiFaRi
- 43,807
\documentclass{...}and ending with\end{document}. – Sep 08 '14 at 19:59