The position of the indices is in my opinion located by default too high with LaTeX. I found on the French site how to position them lower, but it remains heavy to write.
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{babel}
\usepackage[a4paper,hmargin=15mm,top=18mm,bottom=20mm]{geometry}
\usepackage{amssymb}
\usepackage{amsmath}
\begin{document}
% from https://texnique.fr/osqa/questions/8927/maths-descendre-un-indice-encore-plus-bas
[ \text{ \textit{too high index:} } r_1 \qquad \text{\textit{ well placed index:} }
r_{{}_{\mkern-2mu\scriptstyle1}}
]
[ r_1 \qquad
r_{{}_{\mkern-2mu\scriptstyle1}}
]
\end{document}
What produces:
Is there a package or a macro that allows to replace the native position of the indices by placing them lower (and this without changing the syntax of the indices)?


\fontdimenof font family 2, see What do different \fontdimentexdoc texbytopic, sec. 23.10.3. – muzimuzhi Z Dec 11 '22 at 14:06\usepackage[low-sup]{subdepth}. Or usw$r^{}_{1}$– Zarko Dec 11 '22 at 14:06