最近经常需要用Latex来写文档、做幻灯片,中间穿插着很多公式,但总觉得公式中的字体不是很舒服。调用amsfonts包后,也没发现数学符号的字体有什么变化,料想应该是beamer中的字体设置出了问题。
仔细查了查,发现beamer中默认使用Sans Serif字体,即没有衬线的字体。如果要在公式中使用标准的Latex字体,即Computer Modern字体的话,
方法一:需要在前面加上\def\mathfamilydefault{\rmdefault}就可以使用优美的数学公式了。
\documentclass[fontset = none]{beamer}
\def\mathfamilydefault{\rmdefault}
\begin{document}
\end{document}
方法二:其实除了使用上面的方法之外,还有另外一个方法也是可以的,在前面加上下面这句:
\usefonttheme[onlymath]{serif}
转自:http://blog.renren.com/share/221543889/8483548332
Beamer暂停时下方文档半透明显示技巧:
半透明显示:
\setbeamercovered{dynamic} % translucent when using pause1
(使用 translucent,可以在 \pause 使用时将其之后的内容变为半透明显示,演示者自己可以看到,但是又能体现出分步展示的层次感)
把这行放到 \begin{document} 之前就可以~
转自:https://zhidao.baidu.com/question/1765921427475752660.html