\textleftarrow 和 mathpazo

\textleftarrow 和 mathpazo

我想使用 Palatino 来运行文本并使用一些匹配的数学字体,因此我使用包mathpazo。有没有办法获得\textleftarrow

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{mathpazo}

\begin{document}
abc\textleftarrow
\end{document}

答案1

只需重新声明默认命令:

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{mathpazo}

\makeatletter
\DeclareTextCommandDefault{\textleftarrow}{\mbox{$\m@th\leftarrow$}}
\makeatother

您可以根据自己的喜好优化定义。

答案2

\ensuremath{\leftarrow}一定能完成这个工作吗?

相关内容