大きなDetexify2 - LaTeX symbol classifierツールを使用して、私は\twoheadrightarrow
と\rightarrowtail
を見つけました。どちらも組み合わされて、必要な矢印が作成されました。 TeXマクロ\kern
を使用して、シンボル間のカーニングを調整できます。しかし、すべてのサイズで正しいアラインメントが得られないことがわかりました(たとえば、\tiny
では異なるバージョンのシンボルが使用されています)。注意してください。前後の記号に正しい周囲の間隔を得るには、組み合わせを\mathrel{..}
の内側に配置する必要があります。
は
\documentclass{article}
\usepackage{amssymb}
\newcommand*{\twoheadrightarrowtail}{\mathrel{\rightarrowtail\kern-1.9ex\twoheadrightarrow}}
% Alternative which doesn't look as good using the normal size, but might work better with smaller sizes too:
%\newcommand*{\twoheadrightarrowtail}{\mathrel{\rlap{$\rightarrowtail$}\twoheadrightarrow}}
\begin{document}
$ A \twoheadrightarrowtail B $
\end{document}
[「数学の記号をルックアップするためにどのように?」]を見てください(http://tex.stackexchange.com/questions/14/how-to-look-up- a-math-symbol)をhttp://tex.stackexchange.comに掲載して、特定のLaTeXシンボルを簡単に見つける方法を知ることができます。 –