I am using LuaTex with newtx package. However, using newtx changes the style of the \footnotemark command. However, I want the original style of \footnotemark in the superscript without the square brackets. How can I get back the default style?
MWE:
\documentclass[aspectratio=169]{beamer}
\usepackage{newtx}
\usepackage{fontspec}
\begin{document}
\begin{frame}{Test title}
Test text.\footnotemark[1]
\end{frame}
\end{document}



\renewcommand{\footnotemark}{\normalfont}and that is a clear bug. Write to the author. – Ulrike Fischer Oct 24 '23 at 20:22