📜  \ Longrightarrow-Tex命令(1)

📅  最后修改于: 2023-12-03 14:38:58.197000             🧑  作者: Mango

'\longrightarrow'-Tex命令

在Tex中,\longrightarrow 表示长箭头符号,用于表示长距离的箭头。它可用于数学模式和文本模式。

语法
\longrightarrow
示例

数学模式

在数学模式中使用 \longrightarrow:

$a \longrightarrow b$

渲染结果: $a \longrightarrow b$

文本模式

在文本模式中使用 \longrightarrow:

\documentclass{article}
\begin{document}

This symbol \longrightarrow\ represents a long arrow.

\end{document}

渲染结果: This symbol $\longrightarrow$ represents a long arrow.

导入命令

要使用 \longrightarrow 命令,需要在Tex文档的导言区添加以下代码:

\usepackage{amsmath}
替代符号

在Tex中,还有其他一些表示箭头的命令,可以根据需要选择使用。

  • \rightarrow: 表示普通箭头符号,且长度较短。
  • \longrightarrow: 表示长箭头符号,和 \longrightarrow 功能相同但不需要导入包。

更多关于箭头符号的Tex命令可参考 Tex箭头命令

注意: Tex命令无法直接在Markdown中正常显示,需要在Tex环境中运行。