다음 방정식을 실행하면 람다가 나타나지 않습니다. 하지만 $\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행이 문제를 일으키고 있습니다.
제거되면(표시된 대로 주석 처리됨) 람다가 나타납니다.
\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}