If I compile
\documentclass[border=5pt]{standalone}
\usepackage{unicode-math}
\newcommand*\Nu{\mathit{Nu}}
% \newcommand*\Nu{bla}
\begin{document}
$\Nu$
\end{document}
(with LuaLaTeX) with an up-to-date MiKTeX this results in
rather than in an italic "Nu". That seems because unicode-math seems to define that command which can be verified by commenting the currently not commented \newcommand line.
But then I would guess/hope to get the error message
! LaTeX Error: Command \Nu already defined.
Or name \end... illegal, see p.192 of the manual.
as one gets if you uncomment the currently commented \newcommand line.
Does anybody have a clue why this is so and/or if this is a bug in unicode-math? Or does anybody have an idea how I can preserve the original command and still make the new one effective instead of renaming it?
