答案1
看起来不多……
我从这里借了 Mico 的文件
并将文本更改为包含 forall 和 exist,我没有其中一种字体,因此被注释掉了,但在剩下的字体中,似乎只有 asana:
\documentclass{article}
\newcommand\blurb{%
$\forall \land \exists$}
\usepackage{unicode-math}
%% Load 10 math fonts, plus two alternate/stylistic set variants
\setmathfont{Latin Modern Math}[version=LM]
\setmathfont{Stix Math}[version=Stix]
\setmathfont{XITS Math}[version=XITS]
\setmathfont{XITS Math}[StylisticSet=1,version=XITS1]
\setmathfont{Stix Two Math}[version=Stix2] % see http://stixfonts.org/
\setmathfont{Cambria Math}[version=Cambria]
\setmathfont{Asana Math}[version=Asana]
\setmathfont{Asana Math}[Alternate,version=AsanaAlt]
\setmathfont{TeX Gyre Pagella Math}[version=Pagella]
\setmathfont{TeX Gyre Termes Math}[version=Termes]
\setmathfont{TeX Gyre DejaVu Math}[version=DejaVu]
%\setmathfont{Neo Euler}[version=Euler]
\setmathfont{Libertinus Math}[version=Libertinus]
\begin{document}
\renewcommand\arraystretch{1.8}
\begin{tabular}{@{}ll@{}}
Latin Modern & \mathversion{LM} \blurb \\
Stix & \mathversion{Stix} \blurb \\
XITS & \mathversion{XITS} \blurb \\
XITS, StySet1& \mathversion{XITS1} \blurb \\
Stix Two & \mathversion{Stix2} \blurb \\
Cambria & \mathversion{Cambria} \blurb \\
Asana & \mathversion{Asana} \blurb \\
Asana Alt & \mathversion{AsanaAlt}\blurb \\
Pagella & \mathversion{Pagella} \blurb \\
Termes & \mathversion{Termes} \blurb \\
DejaVu & \mathversion{DejaVu} \blurb \\[0.5ex]
%Neo Euler & \mathversion{Euler} \blurb \\[0.5ex]
Libertinus Math& \mathversion{Libertinus} \blurb
\end{tabular}
\end{document}