How I can change the font size inside the subequations environment? See below:
\begin{equation}
\textstyle
\xi_{1} = A + B + C;
\end{equation}
The command \textstyle works fine inside the equation environment, but inside the subequations environment (see below, again) does not works.
\begin{subequations}
\textstyle
\begin{eqnarray}
\xi_{1} = A + B + C \\
\xi_{2} = E + F + G \\
\xi_{3} = H + I + J
\end{eqnarray}
\end{subequations}
I give errors:
"Missing $ inserted.", "Missing \endgroup inserted.", "You can't use \halign in math mode", etc.
If I put \textstyle inside eqnarray it works, but then I need put in all equations.
Please, how I can change the math font size inside the subequations environment?

\textstyleto be after\begin{eqnarray}. But, why do you want to do that? Also, you should avoideqnarrayas per this question. – Peter Grill Nov 04 '14 at 17:39\textstyleafter\begin{eqnarray}it is applied only to first equation. :(( – user901366 Nov 04 '14 at 17:43eqnarrayenvironment is badly deprecated and shouldn't be used anymore, in any LaTeX document. For more information see the posting eqnarray vs align. – Mico Nov 04 '14 at 18:53