
\leftharpoondown
a 와 a를 완벽하게 병합하고 싶습니다 \rightharpoonup
. 텍스트가 필요하지 않습니다.텍스트가 있는 왼쪽/오른쪽 작살 화살표?몇 가지 해결책을 제시했지만 각 화살촉에는 다른 화살의 화살꼬리 중 일부가 튀어나와 있습니다(왜냐하면 꼬리에는 두께가 있지만 머리 부분은 점점 가늘어지기 때문입니다).
답변1
mathabx
모든 기호를 변경하지 않고 이러한 기호를 차용하는 방법은 다음과 같습니다 .
\documentclass[11pt]{article}
\DeclareFontFamily{U}{mathb}{\hyphenchar\font45}
\DeclareFontShape{U}{mathb}{m}{n}{%
<-6> matha5
<6-7> matha6
<7-8> mathb7
<8-9> mathb8
<9-10> mathb9
<10-12> mathb10
<12-> mathb12
}{}%
\DeclareSymbolFont{mathb}{U}{mathb}{m}{n}%
\DeclareMathSymbol{\leftrightharpoon}{\mathrel}{mathb}{"E0}
\DeclareMathSymbol{\rightleftharpoon}{\mathrel}{mathb}{"E1}
\begin{document}
\[ a \leftrightharpoon b \rightleftharpoon c \]%
\end{document}