Hello you wonderful TeX friends!
I have an issue making a single equation that bigger.
I'm restricted to use the align environment for my equations. I've used this answer to make inline math bigger, and I looked at this, but it's as the align environment is a bit tricky here. I would however like to stick to that. Any help or suggestions would be greatly appreciated.
code,
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
2+2 = 4 \\
2=3 = 5 % I only want to make this single line bigger
\end{align}
% I'm aware I can something like this,
\begin{align}
2+2 = 4
\end{align}
\vspace{-15mm}
{\LARGE
\begin{align}
2+3 = 5
\end{align}
}
% but that enlarges the equation number,
% and I don't want that, along withing
% adding \end{align} … \begin{align}
\end{document}

amsartgoes to some effort to keep the equation number the same size, regardless of the size applied to the content of the display. you may be able to steal the method from there. – barbara beeton Jul 30 '16 at 11:31alignenvironments, and the firstalignenvironment is missing a line-break directive between the rows. Is this deliberate? – Mico Jul 31 '16 at 11:33