Change the font size of the footnote-mark

footnotes

How can I change the font size of the footnote "mark"? I mean the number that appears after a word in text and later in the footer.
I know how to use different ways to change the footnote "Text" size, but the marker seems to remain the same.

I tried, for example
{\tiny \footnote{This is my footnote.}}

I also tried
{\tiny \footnotemark{200}}

But there is no change. Only the text part changes the font size.
The marker in text and in the footnote part remains quite large in my case, and looks bad.

I use the Annales latex package. https://gitlab.utu.fi/samnuutt/annales

\documentclass{annales}

% NOTE: quite a bunch of other packages are loaded through annales class already, so these are just an example of what one might also need
\usepackage{amssymb,amsthm,amsmath}
\usepackage{natbib}



%%%
%%% set author, title, subtitle, ISBNs here
%%%
% if you dont have a subtitle an \mbox{} will do just fine
\makeatletter
\author{M}\let\Author\@author
%\authorx{Stone, Maria B}\let\Authorx\@authorx
\title{Title}\let\Title\@title
\subtitle{A}\let\Stitle\@subtitle
\isbnprint{XXX-XXX-XX-XXXX-X}\let\Isbnprint\@isbnprint
\isbnweb{XXX-XXX-XX-XXXX-X}\let\Isbnweb\@isbnweb
\issnprint{XXX-XXX-XX-YYYY-Y}\let\Issnprint\@issnprint
\issnweb{XXX-XXX-XX-ZZZZ-Z}\let\Issnweb\@issnweb
\printedat{Printhouse, Turku, Finland, 2023}\let\Printedat\@printedat
\makeatother

% set language: \finfalse for english \fintrue for finnish
\finfalse

% set PDF information for PDF/A
\hypersetup{
  pdfauthor={\Author},
  pdftitle={\Title},
  pdfsubtitle={\Stitle},
  pdfsubject={Dissertation},
  pdfkeywords={Some;Key;Words;Here},
  pdfissn={\Issnprint},
  pdfeissn={\Issnweb},
  pdfisbn={\Isbnprint},
  pdfdisplaydoctitle,
  keeppdfinfo, % without this author, keywords, etc. found only in XMP
  colorlinks=false,
  linkbordercolor={white},
  citebordercolor={white},
  unicode,
  pdfapart=1,
  pdfaconformance=B,
  pdfrendition={screen},
}
\iffin
\hypersetup{
  pdflang={fi-FI}
}
\else
\hypersetup{
  pdflang={en-GB}
}
\fi

%%%
%%% main document starts here
%%%
\begin{document}
% to use hyperref to just set PDF information uncomment below
%\begin{NoHyper}



This is a test sentence.{\tiny \footnotemark[1]} 

{\tiny \footnotetext[1]{In this text, I try to describe my research work from the past many years.}}





%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
% if you used HoHyper at the beginning uncomment below as well
% \end{NoHyper}
\end{document}

Best Answer

Let's dig it out... the annales style seems not to touch any definition for the footnotes, and uses the book class. Let's find where the footnote mark is printed. From a UNIX shell prompt:

bash[romano:~/tmp] % latexdef -c book footnote

\footnote:
macro:->\@ifnextchar [\@xfootnote {\stepcounter \@mpfn \protected@xdef \@thefnmark {\thempfn }\@footnotemark \@footnotetext }

[romano:~/tmp] % latexdef -c book @footnotemark

\@footnotemark:
macro:->\leavevmode \ifhmode \edef \@x@sf {\the \spacefactor }\nobreak \fi \@makefnmark \ifhmode \spacefactor \@x@sf \fi \relax 

[romano:~/tmp] % latexdef -c book @makefnmark  

\@makefnmark:
macro:->\hbox {\@textsuperscript {\normalfont \@thefnmark }}

Hmmm... so maybe changing the last one will work?

\documentclass[11pt]{book}
\makeatletter
\renewcommand{\@makefnmark}{\hbox{\@textsuperscript{\fontsize{5}{6}\selectfont\@thefnmark}}}
\makeatother
\usepackage[T1]{fontenc}
\begin{document}
Text with a footnote\footnote{footnote here}
\end{document}

Bingo!:

enter image description here

...

enter image description here

I used the \fontsize{5}{6}\selectfont to make it more visible, but you can use \tiny there.

Related Question