我的tex代码如下:
\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[fill, circle, minimum size=5cm] at (10cm,3cm) {};
\node at (0,3cm) {\Huge $\si{\angstrom}$};
\node[font=\fontsize{52}{58}] at (0,5cm) {\Huge $\si{\angstrom}$};
\end{tikzpicture}
\end{document}
我的字体大小至少应该与节点大小相同。现在显然 \Huge 无法满足它。请告诉我如何使字体变大。由于某种原因我无法提供我的 pdf,我知道原因是 pdf 太大了。'
请问我该怎么办
我尝试了这道题的解法,还是失败了。这是我的测试。其他字母并没有变大。我该如何解决?
\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[fill, circle, minimum size=5cm] at (10cm,3cm) {};
\node[font=\fontsize{200}{200}] at (0,5cm) { $K(\si{\angstrom}^{-1})$};
\end{tikzpicture}
\end{document}