Change font of footnote (thanks) mark on titlepage

authblkfontsfootnotestitles

I want to change the font to sans-serif of the footnote mark (or the \thanks mark) after the author's name. How do I achieve that? I can change the author's name and the footnote text using \textsf.

\documentclass{book}

\usepackage{newcomputermodern}

\usepackage{authblk}

\title{Title}

\author{\textsf{Name}\thanks{\textsf{Footnote}}}

\begin{document}
    \maketitle
\end{document}

Best Answer

The following should do what you desire.

\makeatletter 
    \def\@makefnmark{\@textsuperscript{\textsf{\@thefnmark}}} 
\makeatother

The difference is very subtle though.