3

I am using \usepackage{showlabels} to show the labels in the pdf-file but it turns out that I only see the labels coming from align or equation environment and not the ones from eqnarray. Why?

I personally don't like how align shows the formulas that's why I use eqnarray. Could I still show the labels for eqnarray equation?

Marco Daniel
  • 95,681
Dann
  • 31
  • 1
  • 2

1 Answers1

6

It should just work. Please always post complete documents that show the problem:

enter image description here

\documentclass{article}
\usepackage{showlabels}

\begin{document}

\begin{eqnarray}
1&=&2\label{aa}\\
33&=&44\label{bb}
\end{eqnarray}

\begin{equation}
P=NP\label{cc}
\end{equation}


\end{document}
David Carlisle
  • 757,742