梅威瑟:
\documentclass[]{article}
\usepackage{fancyhdr}
\usepackage{enumitem}
\usepackage{amsmath}
\usepackage{color}
\usepackage[left=1.5in,right=1.5in,top=1in,bottom=1in,
footskip=0in]{geometry}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1.25]
\draw[fill,yellow] (0,0) circle [radius=1];
\draw (0,0) circle [radius=1];
\node at (0.03,0) {\textrm{\textbf{\Huge ER}}};
\end{tikzpicture}
\end{document}
例如,当我将节点中的字体大小从 \Huge 更改为 \LARGE 时,我可以看到差异。
现在,根据我在网站上看到的一些其他答案,我尝试过:
\node at (0.03,0) {\textrm{\textbf{\fontsize{100}{0}\selectfont ER}}};
但无论我选择多大的数字(例如 150、200 等),似乎都无法增加字体大小。
知道原因吗?
答案1
latex 警告:这与 tikz 无关
LaTeX Font Warning: Size substitutions with differences
(Font) up to 75.12pt have occurred.
你会看到同样的情况
\documentclass[]{article}
\begin{document}
\fontsize{100}{0}\selectfont ER
\end{document}
默认的 cm 字体仅在一组固定的大小下启用,如果您添加
\RequirePackage{fix-cm}
在文件顶部,它们将被允许缩放到任意大小,或者切换到lmodern
默认使用可缩放字体大小。