看起来\hookrightarrow
像kpfonts
这样:
我认为这是一个错误。我该怎么做才能修复它?我想继续使用kpfonts
。
梅威瑟:
\documentclass{article}
\usepackage{kpfonts}
\begin{document}
\Huge $\hookrightarrow$
\end{document}
答案1
谢谢你的报告!
我已确定该错误的来源并且将尽快修复!
克里斯托夫·卡伊纳特
答案2
钩子完全错了:它的厚度比箭杆的厚度大,而且位置太高。
字体应该由其作者固定。同时你可以自己安排:
\documentclass{article}
\usepackage{amsmath}
\usepackage{kpfonts}
\usepackage{graphicx}
\makeatletter
\let\kp@lhook\lhook
\renewcommand{\lhook}{\mathrel{\text{\fix@lhook}}}
\newcommand\fix@lhook{%
\raisebox{.045ex}{%
\scalebox{.85}{$\m@th\kp@lhook$}%
}%
}
\makeatother
\begin{document}
$\hookrightarrow$
\Huge $\hookrightarrow$
\end{document}