How can i change the font size of both equation individually?
\begin{eqnarray}
\begin{split}
% Change the font size
r_j &= 2 \\
&\quad + 4
\end{split}
\\
% Change the font size
r_j = 2 + 4
\end{eqnarray}
I try \scalebox but i got some error. I try :
\begin{eqnarray}
\scalebox{.95}{
\begin{split}
r_j &= 2 \\
&\quad + 4
\end{split}
}
\\
\scalebox{.95}{
r_j = 2 + 4}
\end{eqnarray}
