数学方程式中的符号

数学方程式中的符号

当我执行以下方程时,lambda 不会出现在其中。但如果我使用 $\lambda$,它在文本中有效。有什么想法吗?

\begin{equation} \label{Eq:3}
N(t) = N_{0}\times e^{\lambda \times t}
\end{equation}

更多所需信息:

 \documentclass[School=School]{Dissertate}
 \parindent 12pt
 \RequirePackage{mathspec}
 \setmathsfont(Digits,Latin,Greek)[Numbers={Proportional},SizeFeatures= 
 {{Size=-8, OpticalSize=8},{Size= 8-, OpticalSize=12}},]{EB Garamond}
 \setmathrm{EB Garamond}
 \usepackage{mhchem} %superscripts for isotopes
 \usepackage{wasysym} %permille symbol
 \defaultfontfeatures{Mapping=tex-text}
 \newfontfamily{\smallcaps}[RawFeature={+c2sc,+scmp}]{EB Garamond}
  \setromanfont[Numbers=OldStyle, Ligatures={Common, TeX}, Scale=1.0]{EB 
  Garamond}
  \setsansfont[Scale=MatchLowercase, BoldFont={Lato Bold}]{Lato Regular}
  \setmonofont[Scale=MatchLowercase]{Noto Mono}

答案1

我不熟悉 mathspec,但这个较小示例中的第 4 行导致了问题。

当删除时(如图所示 - 注释掉),lambda 就会出现。

\documentclass{article}
\parindent 12pt
\RequirePackage{mathspec}
%\setmathsfont(Digits,Latin,Greek)[Numbers={Proportional},SizeFeatures= {{Size=-8, OpticalSize=8},{Size= 8-, OpticalSize=12}},]{EB Garamond}
\begin{document}
\begin{equation} \label{Eq:3}
N(t) = N_{0}\times e^{\lambda \times t}
\end{equation}
\end{document}

相关内容