I'm using \DeclarePairedDelimiter from the mathtools package to create a paired delimiter
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert} but I want the same baseline for the subscript with and without using the starred version of the paired delimiter.
The first term in the picture shows the undesired baseline without using the starred version. The second term shows the desired baseline, and the third term shows a workaround to obtain the desired baseline with the unstarred version.
However, I would like to prevent adding the \mathopen{} command around every call.
Is it possible to add the \mathopen{} command to the \DeclarePairedDelimiter command?
MWE
\documentclass{article}
\usepackage{mathtools}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}
\begin{document}
$\norm{a}_{\infty}$, $\norm*{b}_{\infty}$, $\mathopen{\norm{c}}_{\infty}$
\end{document}

\norm*{a}_{\infty}over\norm{a}_{\infty}? (To me, employing\norm*{a}_{\infty}over\norm{a}_{\infty}flies in the face of good math typography.) Incidentally,\mathopen{\norm{a}}_{\infty}is needlessly complicated, as{\norm{a}}_{\inftyachieves the exact same result. – Mico Apr 05 '21 at 10:14\norm{a}does not automatically scale the delimiter. However, using\norm*{}for inline math, the automatic scaling sometimes produces vertical bars that are too large. Thank you for the information that \mathopen{\norm{a}}{\infty} achieves the same as `{\norm{a}}{\infty}`@StevenB.Segletes You are right. I didn't find this question before. Thank you!
– brnk Apr 05 '21 at 10:30\norm{a}does not scale the delimiter. My question was why one would use\norm*{a}when there's no conceivable need to perform scaling. – Mico Apr 05 '21 at 10:34\norm*{a}as an example to show the desired subcript baseline. If\norm{a}would yield the same baseline, there wouldn't be a reason to use\norm*{a}instead. – brnk Apr 05 '21 at 10:36