I'm, using the cases environment of the amsmath package and I was wondering whether there is a method to control the shrinking of certain elements of it. E.g. when there is a fraction, the elements in the nominator and denominator are shrinked compared to the non-fractional case.
What I would be interested in, is e.g. whether I can enlarge the shrinked element a bit to increase its readability.
Please see:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
x=\begin{cases}
\frac{a+b+c}{d+e+f}\\
a+b+c\\
d+e+f
\end{cases}
\end{align}
\end{document}


\dfrac{}{}worked perfectly. Thank you very much – MRT Mar 07 '19 at 12:58