仅在 beamer 文档类中的 tikzpicture 中更改字体

仅在 beamer 文档类中的 tikzpicture 中更改字体

我正在用 documentclass 做一个演示beamer。我用tikzpicture它来注释一个图。我这样做

\begin{figure}[htp]
\centering
\begin{tikzpicture}
\node[anchor=south west, inner sep=0] at (0,0) {\includegraphics{somepicture}};
\node[anchor = west] at (5,0) {Some text with $some math$};
\end{tikzpicture}
\end{figure}

我正在尝试注释这个用 制作的图形xmgrace。如果我没记错的话,这个程序中的默认字体是 Helvetica。所以我想将我的每段文本的字体都改为tikzpictureHelvetica 字体。但我找不到任何解决方案。 的字体tikzpicture似乎根本没有改变……

答案1

转换成本加运费评论变成了不涉及数学的(部分)答案:

\documentclass{beamer}

\usepackage{tikz}

\begin{document}
\begin{frame}

\begin{figure}
test in normal font

\begin{tikzpicture}[font={\fontfamily{phv}\selectfont}]
\node[anchor=south west, inner sep=0] at (0,0) {test in phv};
\end{tikzpicture}
\end{figure}


\end{frame}
\end{document}

在此处输入图片描述

相关内容