我尝试使用命令绘制箭头
\leadsto
但我收到以下异常:
! LaTeX Error: Command \leadsto not provided in base LaTeX2e.
那么我怎样才能画出这样的箭头呢?
我尝试导入latexsym
但后来我收到这个错误:
! Missing $ inserted.
<inserted text>
$
l.56 ...ecognition, gestures recognition. \leadsto
Multimodal input system & \\
?
答案1
\leadsto
是一个数学符号,仅在数学模式下可用。
您必须将其括在美元符号中$...$
(或\(...\)
用于内联数学或在显示数学中使用它,如\[...\]
或{equation}
环境
[…] gestures recognition. $\leadsto$ Multimodal input system & […]
答案2
包裹符号提供\leadsto
和许多其他符号。
查找符号和提供它们的包的一个很好的资源是“综合 LaTeX 符号列表”它可能已经作为 TeX 发行版的一部分存在于您的磁盘上了。
也可以看看如何查找数学符号
答案3
如果您发现经常在文本模式下使用它,我将使用该包定义如下所示的宏xspace
并始终使用Leadsto
:
\documentclass{article}
\usepackage{amssymb}
\usepackage{xspace}
\newcommand*{\Leadsto}{\ensuremath{\leadsto}\xspace}%
\begin{document}
Now you can use \Leadsto outside in text mode or $\Leadsto$ in math mode.
\end{document}
该xspace
命令决定是否插入空格——参见软件包文档。如果您不想加载另一个包,则可以将其用作\Leadsto{}
插入尾随空格的情况。或者,您可以在定义末尾硬编码一个空格,因为我无法想象在哪种情况下您不会在该字符后有文本——尽管我更喜欢这个xspace
解决方案。
答案4
您可以加载amsmath
和amsfonts
包。