我正在用 Latex 制作一张海报。我发现积分符号(以及求和符号)看起来很小。是什么原因造成的?我从来没有在普通文章中看到过这种情况。我猜这一定与海报模板有关。我使用这个模板: https://www.overleaf.com/latex/examples/quadratic-function/hjbvztxdrvwf#.WRUGqtIrLIU
答案1
问题在于您(或您的模板)使用的字体尺寸过大,并且不包含此尺寸的完整符号。要解决此问题,您可以使用exscale
包含所需尺寸符号的软件包或其他字体。
\documentclass[final]{beamer}
\usepackage[scale=1.24]{beamerposter}
\usetheme{confposter}
\usepackage{booktabs}
\author{matematika.pl}
\institute{2015}
\usepackage{exscale}
\begin{document}
\begin{frame}[t]
\begin{equation}
H(f)(x) = \int f(x-t) \frac{dt}{t}
\end{equation}
\end{frame}
\end{document}