Quando executo a equação a seguir, lambda não aparece nela. Mas funciona no texto se eu usar $\lambda$. Alguma ideia?
\begin{equation} \label{Eq:3}
N(t) = N_{0}\times e^{\lambda \times t}
\end{equation}
Mais informações solicitadas:
\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}
Responder1
Não estou familiarizado com mathspec, mas a linha 4 neste exemplo menor está causando o problema.
Quando removido (como mostrado e comentado), o lambda aparece.
\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}