两个交叉箭头(一个指向南,一个指向东)

两个交叉箭头(一个指向南,一个指向东)

我在《计算机视觉学》一书中看到过一个由两个相互交叉的箭头组成的符号。它们彼此正交,一个指向上向下(从北向南),另一个指向从左向右(或从西向东)。

有人知道怎么做吗?查看了大型符号集,但没找到。我找到的符号来自\towastix 包,但这个符号需要旋转 135 度,而且看起来很糟糕(使用 rotatebox)。

答案1

这或许是一种简单的方法。

\documentclass{article}
\usepackage{mathtools}
\newcommand{\dsearrow}{\mathrlap{\,\downarrow}{\rightarrow}}
\begin{document}
$\dsearrow$ $\scriptstyle\dsearrow$
\end{document}

在此处输入图片描述

答案2

我已经使用必要的graphicx包来旋转和反射符号\tona(例如),它不存在,创建一个\newcommand名为的符号\stona,并且我已经用调整了它的大小\scalebox

当然,您可以使用像我插入的这样的新命令来旋转和反射任何符号。

这里有一个简短的例子。

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{stix}
\usepackage{graphicx}
\newcommand{\stona}{\rotatebox[origin=c]{225}{\reflectbox{\scalebox{.8}[.8]{$\tona$}}}}
\begin{document}
$\neovnwarrow, \quad \neovsearrow, \quad \nwovnearrow, \quad \seovnearrow, \quad \toea, \quad \tona, \quad \tosa, \quad \towa$
\begin{equation}
 A\stona B   
\end{equation}

\end{document}

答案3

使用\stackinset...通过scalerel包的方式跨数学风格工作。

\documentclass{article}
\usepackage{stackengine,scalerel}
\stackMath
\newcommand{\dsearrow}{\ThisStyle{\stackinset{c}{\dimexpr-3.5\LMpt+1.8pt}%
  {c}{-.5pt}{\SavedStyle\downarrow}{\SavedStyle\rightarrow}}}
\begin{document}
$\dsearrow$
$\scriptstyle\dsearrow$
$\scriptscriptstyle\dsearrow$
\end{document}

在此处输入图片描述

相关内容