长 \mapsto-arrow

长 \mapsto-arrow

有没有更长的版本\mapsto,比如\rightarrow和?我发现了一个丑陋的解决方案,在顶部\longrightarrow插入几个s ,但不是很优雅。\quad\xmapsto

答案1

我曾经需要一些特殊的积分符号,并使用 TikZ 将它们“伪造”出来。您可以对箭头做同样的事情。以下是示例:

\def\mylongmapsto#1{%
\begin{tikzpicture}
\draw (0,0.5mm) -- (0,-0.5mm);
\newlength\mylength
\setlength{\mylength}{\widthof{#1}}
\draw[->] (0,0) -- (1.2\mylength,0) node[above,midway] {#1};
\end{tikzpicture}
}

\mylongmapsto{hello world}

\mylongmapsto{this is another long mapsto arrow}

它允许您将文本放置在箭头上方,并自动进行相应缩放。结果如下:

在此处输入图片描述

相关内容