我正在尝试用 MikTex 写出傅里叶级数的定义。但是,在积分边界上,希腊字母不显示。
\theoremstyle{definition}
\begin{definition}{}
\label{FourierSeriesDef}
The Fourier series of a function $f(x)$ is given by
\begin{equation} \label{eq:FourierSeries}
f(x) = \frac{1}{2}a_0 + \sum_{n=1}^{\infty} a_ncos(nx) + \sum_{n=1}^{\infty} b_nsin(nx),
\end{equation}
where
$$
a_0 = \frac{1}{\pi}\int_{-\pi}^{\pi} f(x) dx
$$
\end{definition}
输出为
答案1
如果您正在使用unicode-math
,以下设置对我来说很好,最新版本的 EB Garamond 下载自https://bitbucket.org/georgd/eb-garamond/downloads/
\documentclass{article}
\usepackage{amsmath}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range=up,Numbers=Lining]{EBGaramond12-Regular.otf}
\setmathfont[range=it]{EBGaramond12-Italic.otf}
\setmathfont[range={}]{Latin Modern Math}
\begin{document}
\[
a_0 = \frac{1}{\pi}\int_{-\pi}^{\pi} f(x) dx
\]
\end{document}