我需要最小的字体。如何将字体大小设置为小于\fontsize{1}{1}
?
\documentclass[tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\draw[-{Latex[length=1mm,width=1mm]}] (-0.1,0) -- (2.3,0) node[right] {\tiny $x$};
\draw[-{Latex[length=1mm,width=1mm]}] (0,-0.1) -- (0,1.6) node[above] {\tiny$f(x)$};
\node[font=\fontsize{1}{1}\selectfont] at (1.2,1.2) [below]{$x_0$};
\end{tikzpicture}
\end{document}
答案1
答案2
如果您希望 1pt 字体大小确实是 1pt,则需要使用 fix-cm 包:
\RequirePackage{fix-cm}
\documentclass[tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\draw[-{Latex[length=1mm,width=1mm]}] (-0.1,0) -- (2.3,0) node[right] {\tiny $x$};
\draw[-{Latex[length=1mm,width=1mm]}] (0,-0.1) -- (0,1.6) node[above] {\tiny$f(x)$};
\node[font=\fontsize{1}{1}\selectfont] at (1.2,1.2) [below]{$x_0$};
\end{tikzpicture}
\end{document}
您也可以使用小于 1pt 的值。