答案1
在 LuaLaTeX 或 XeLaTeX 中,你可以结合使用fourier-otf
和 STIX Two Math 来实现此目的:
\documentclass{article}
\tracinglostchars=3
\usepackage{fourier-otf}
% Erewhon Math lacks \not, so substitute:
\setmathfont{STIX Two Math}[range="0338, Scale=MatchUppercase]
\newcommand\slpartial{\not\partial}
\begin{document}
\[
(i\slpartial-m)\psi=0
\]
\end{document}
您也可以尝试使用其他数学字体的斜线,例如:
\documentclass{article}
\tracinglostchars=3
\usepackage{fourier-otf}
% Erewhon Math lacks \not, so substitute:
\setmathfont{NewCMMath-Book}[range="0338, Scale=MatchUppercase]
\newcommand\slpartial{\not\partial}
\begin{document}
\[
(i\slpartial-m)\psi=0
\]
\end{document}