我目前正在使用 Math Time Pro2,但考虑到和\forall
不\exists
适合我的喜好。我该如何改回原始 LaTeX\forall
和\exists
符号?
还有一个问题,是否有更直的(双)(左)右箭头?(我的意思是,在箭头的“头部”)\rightarrow
-like 符号都有卷曲的装饰,这是我不想要的。
答案1
您可以加载数学符号字体:
\documentclass{article}
\usepackage[lite]{mtpro2}
\let\mtproforall\forall % just for the comparison
\let\mtproexists\exists % just for the comparison
\DeclareSymbolFont{CMsymbols}{OMS}{cmsy}{m}{n}
\SetSymbolFont{CMsymbols}{bold}{OMS}{cmsy}{b}{n}
\DeclareMathSymbol{\forall}{\mathord}{CMsymbols}{"38}
\DeclareMathSymbol{\exists}{\mathord}{CMsymbols}{"39}
\begin{document}
$\forall x\,\exists y$
$\mtproforall x\,\mtproexists y$
\end{document}
经过比较后,决定您是否真的想要改变。