答案1
无论如何:我建议将命令定义为\newcommand{\optimal}[1]{#1^*}
因为
\documentclass{article}
\newcommand{\oldoptimal}[1]{{#1}^*}
\newcommand{\newoptimal}[1]{#1^*}
\begin{document}
\begin{itemize}
\item The original command, which I renamed \verb|\oldoptimal|, has additional
braces:
\[\oldoptimal{V_N}={V_N}^*\qquad\mbox{or}\qquad
\verb|\oldoptimal{V_N}|=\verb|{V_N}^*|\;.\]
\item In order to get the star where you want it to be, you thus need to remove
the braces. This is what \verb|\newoptimal| does:
\[\newoptimal{V_N}=V_N^*\qquad\mbox{or}\qquad
\verb|\newoptimal{V_N}|=\verb|V_N^*| \;.\]
\end{itemize}
\end{document}