次の式を実行すると、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 行目が問題の原因です。
削除すると(示されているようにコメントアウト)、ラムダが表示されます。
\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}