如何在箭头下方放置单词?

如何在箭头下方放置单词?

我希望箭头上方有“1-1”和/或下方有“onto”,箭头为正常大小。我使用 \stackrel 得到了我想要的“1-1”:

\documentclass[12pt]{article}

\begin{document}
\(

\stackrel{1-1}{\longrightarrow}\\

\stackrel{\stackrel{1-1}{\longrightarrow}}{onto}
\)

\end{document}

我想将“onto”类似地定位在箭头下方。但是使用嵌套的 stackrel 会使箭头太小且太高。我该怎么办?

答案1

该软件包amsmath提供了可扩展的箭头,并带有上方和下方文本的选项:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
  A \xrightarrow[\text{onto}]{\text{1--1}} B
\]
\end{document}

结果

PS:我不确定这1-1是什么意思。作为数学表达式,它对我来说太简单了,因此我将其解释为文本。

相关内容