Cuando ejecuto la siguiente ecuación, lambda no aparece en ella. Pero funciona en el texto si uso $\lambda$. ¿Algunas ideas?
\begin{equation} \label{Eq:3}
N(t) = N_{0}\times e^{\lambda \times t}
\end{equation}
Más información solicitada:
\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}
Respuesta1
No estoy familiarizado con mathspec, pero la línea 4 en este ejemplo más pequeño está causando el problema.
Cuando se elimina (como se muestra, comentado), aparece 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}