Unicode“uprightdown”和“northeastsoutheast”箭头

Unicode“uprightdown”和“northeastsoutheast”箭头

与 类似\leftrightarrow commands,我想创建两个可在数学模式中使用的新命令,具体来说就是索引。生成的符号应与单个箭头的大小相同。我怀疑这可以通过一些堆叠和屏蔽来完成,但我无法超越起点。

a)东北箭头 ↗^^^^2197和东南箭头 ↘的组合^^^^2198。我尝试使用

\stackrel{^^^^2197}{^^^^2198}

作为起点,但我没有看到任何结果,而使用箭头通常有效(没有 stackrel)。结果应该看起来像一个K(不是 X),没有垂直线,箭头指向东北和东南。

b)基本上是 a T,逆时针旋转 90 度,箭头指向上方(↑ ^^^^2191)、右侧(→ ^^^^2192)和下方(↓ ^^^^2193)。

答案1

像这样吗?

\documentclass{article}
\usepackage{amsmath}
\usepackage{trimclip}
\makeatletter
\newcommand*{\@Karrows}[1]{%
    \clipbox{{.5\width} -1 0 -1}{%
        \ooalign{$#1\nearrow$\cr$#1\searrow$}%
    }%
}
\newcommand*{\Karrows}{%
    \mathpalette\@Karrows{}%
}
\makeatother
\newcommand*{\Tarrows}{%
    \updownarrow%
    \mathchoice%
        {\mkern-5.5mu}%
        {\mkern-5.5mu}%
        {\mkern-6mu}%
        {\mkern-6mu}%
    \rightarrow%
}
\begin{document}
\(
    \displaystyle\Karrows
    \textstyle\Karrows
    \scriptstyle\Karrows
    \scriptscriptstyle\Karrows
\)

\(
    \displaystyle\Tarrows
    \textstyle\Tarrows
    \scriptstyle\Tarrows
    \scriptscriptstyle\Tarrows
\)
\end{document}

相关内容