如何让节点中的数学字体大于Huge?

如何让节点中的数学字体大于Huge?

我需要在 pdf 中添加文本,但最大的 \Huge 不够大,因此我根据以下情况更改字体大小问题的回答,但是我发现这个命令对数学字体不起作用。你可以看到只有文本成功了。,而我需要一个对数学符号起作用的命令

\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}

节点1

我应该怎么办

答案1

一个更合理的例子是

\documentclass{article}

\begin{document}

\fontsize{80}{200}\selectfont

K $K_x$

\end{document}

产生

在此处输入图片描述

使用 lualatex 和

在此处输入图片描述

使用 pdflatex。

在这两种情况下都会发出多个警告,例如

LaTeX Font Warning: Font shape `OMS/cmsy/m/n' in size <55.99976> not available
(Font)              size <24.88> substituted on input line 7.

使用除计算机现代数学之外的任何字体系列,或者对于 cm,添加fix-cm包以允许任意尺寸。

\RequirePackage{fix-cm}
\documentclass{article}

\begin{document}

\fontsize{80}{200}\selectfont

K $K_x$

\end{document}

生产

在此处输入图片描述

在 lualatex 中

在此处输入图片描述

在 pdflatex 中

相关内容