I'd like to use unicode-math to use ISO-style fonts for my formulae. However, I'd like to use \pi instead of \uppi to create an upright pi. Unfortunately, my redefinition with \renewcommand doesn't work.
How can I redefine the meaning of \pi to give an upright pi, while sticking with math-style=ISO and bold-style=ISO for the remaining letters?
At the moment I have the following MWE:
\documentclass{article}
\usepackage[T1]{fontenc}
% Mathematics
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
% Font
\usepackage{fontspec}
\usepackage[math-style=ISO,bold-style=ISO]{unicode-math}
\setmathfont{Latin Modern Math}
\renewcommand{\pi}{\uppi} % doesn't work
\begin{document}
\begin{align}
\alpha \beta \Alpha \Beta\\
\pi \uppi % these commands should show the same glyph
\end{align}
\end{document}
