I'm copy-editing a paper where the author used \fontsize to resize equations:
\documentclass[11pt]{article}
\usepackage{amsmath}
\pagestyle{empty}
\begin{document}
Normal size equation and equation number:
\begin{equation}
x+y=z
\end{equation}
Resized size equation and equation numbers
{\fontsize{8pt}{0}
\begin{align}
\widehat{P}1 & = 3 {\left(N + 3\right)} {\left(N + 2\right)} {\left(N + 1\right)}^{2} N^{2} {\left(N - 1\right)} {\left(N - 2\right)} {\left(N - 3\right)} Q{mult} Q_{1} \label{EQ1}\
\widehat{P}2 & = 3 {\left(N + 1\right)} N^{2} {\left(N - 1\right)} {\left(N - 2\right)} {\left(N - 3\right)} Q{mult} Q_{2}
\label{EQ2}\end{align}}
\end{document}
In the most cases the resizing is acceptable (ugly but acceptable) but I need the equation numbers not be resized. Can I get the equation numbers to not be resized?



