我已经检查过了数学字体可以在beamer
课堂上使用。我已经成功使用了大多数字体,但是当我尝试包含 Bradhley Hand 字体时,它不起作用(它显示普通字符)?!我该如何使用它?
例如,当我使用以下内容时:
\documentclass[serif]{beamer}
\usepackage{mathpazo}
\renewcommand{\rmdefault}{ibh}
\begin{document}
\begin{frame}
$\frac{ \sqrt{ \mu(i)^{ \frac{3}{2}} (i^{2} -1) } }
{ \sqrt[3]{\rho(i) - 2} + \sqrt[3]{\rho(i) - 1} } $
\end{frame}
\end{document}
它给:
答案1
尝试使用 ITC Bradley Hand,大概你想要这样的东西:
\documentclass[serif]{beamer}
\usepackage{mathpazo}
\renewcommand{\rmdefault}{ibh}
\begin{document}
Test
\[a^2 + b^2 = c^2\]
\end{document}
根据最后一张幻灯片中的建议做出努力:http://math.ecnu.edu.cn/~latex/slides/beamer/MathFonts.pdf
那里的脚注指出Bradhley (sic) Hand ITC (in TTF) comes with MS Windows
--- 如果您有字体,那么您只需使用像 fontinst 或 ttf2tfm 这样的实用程序来安装它,使用名称 ibh 安装字体并创建字体映射条目 --- 将文件放在正确的位置,刷新文件名数据库和字体映射(如果需要),您就可以开始了。
或者,您可以切换到使用xelatex
或lualatex
,在这种情况下如果您安装了字体,则类似下面的操作将会起作用:
\documentclass{beamer}%remove deprecated option
\usefonttheme{serif}%replacement for deprecated [serif] documentclass option
\usepackage{fontspec}
\usepackage{mathpazo}
\setmainfont{Bradley Hand ITC TT Bold}%used Bold, since that's what was bundled w/ Mac OS X
\begin{document}
Test
\[a^2 + b^2 = c^2\]
\end{document}