
решение1
Вот конструкция символа со old-arrows
стрелками.
\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage[old]{old-arrows}
\newlength{\longwidth}
\newlength{\longheight}
\settowidth{\longwidth}{$\varlongrightarrow$}
\settoheight{\longheight}{$\varlongrightarrow$}
\newcommand{\sufficient}{%
\mathrel{%
\raisebox{ .65\longheight}{$\varlongrightarrow$}\hspace*{-\longwidth}%
\raisebox{-.25\longheight}{$\varlongleftarrow$}\hspace*{-\longwidth}%
\makebox[\longwidth]{\raisebox{-.15\longheight}{$\smallsetminus$}}%
}%
}
\begin{document}
\(A \sufficient B\)
\end{document}
решение2
С помощью низкоуровневого программирования:
\documentclass{article}
\newcommand{\suffnotnec}{%
\mathrel{%
\vcenter{%
\offinterlineskip
\ialign{##\cr
$\longrightarrow$\cr
\vphantom{$\longleftarrow$}%
\ooalign{%
$\longleftarrow$\cr
\hidewidth\raisebox{\depth}{$\scriptscriptstyle\backslash$}\hidewidth\cr
}\cr
}%
}%
}%
}
\begin{document}
$A\suffnotnec B$
\end{document}
Построено A. \mathrel
В нем вертикальный ящик, центрированный на оси формулы ( \vcenter
), содержащий простое выравнивание: сверху a \longrightarrow
, снизу a \longleftarrow
с небольшим \backslash
наложенным на него с \ooalign
. Находится \backslash
внутри \scriptscriptstyle
и приподнят на свою глубину. Требуется \vphantom
по техническим причинам (чтобы зафиксировать высоту и глубину конструкции \ooalign
).