I have an equation:
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathtools}
\begin{document}
\begin{equation*}
\chi^2_{k-1, \alpha}
\end{equation*}
\end{document}
This creates:
I would like the subscript (the k-1, \alpha) to be lower, to make it really look like a subscript.
I have seen this and the tug.org article by Timothy Hall. However, I cannot get the Hall version to compile. Could anyone give an MWE of how to move the subscript lower?



\vphantomof something tall, e.g.\chi^{2}_{\vphantom{1^{H}}k-1, \alpha}. – Mar 18 '20 at 23:52