I need to add text to a pdf, but the largest \Huge is not big enough, so I change the font size according to question's answer, but I found that this command does not work for math fonts. You can see that only the text is successful. , and I need a command that works on mathematical symbols
\documentclass[border=2pt,tikz]{standalone}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\node[draw=none,fill=none] at (0,0){\includegraphics{one-inc.pdf}};
\node[font=\fontsize{80}{200}\selectfont] at (25cm,3.5cm) {K};%
\node[font=\fontsize{80}{200}\selectfont] at (24cm,3.5cm) {$K_x$};%
\node[font=\fontsize{80}{200}\selectfont] at (23cm,3.5cm) {$\omega$};%
\end{tikzpicture}
\end{document}
what should I do





\includegraphics{one-inc.pdf}so that no one can run the example. – David Carlisle Nov 19 '23 at 11:24\fontsize{80}{200}seems needlessly large. Do consider using\fontsize{80}{96}. (It's common to set the second argument of\fontsizeabout 20% larger than the first.) – Mico Nov 19 '23 at 11:31