足够宽的右箭头上的文字

足够宽的右箭头上的文字

有没有办法调整右箭头的大小,以便它可以适应其上文本的宽度?

\documentclass[12pt, a4paper, english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{amsmath}
\usepackage{babel}

\begin{document}
\begin{equation}
  \overset{\text{l'Hopital's rule}}{\Longrightarrow}
\end{equation}
\end{document}

上面的代码只会生成这样的结果,未经调整。 在此处输入图片描述

答案1

您可以\xRightarrow使用mathtools

\documentclass[12pt, a4paper, english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{mathtools}
\usepackage{babel}

\begin{document}
\begin{equation}
   \xRightarrow{\text{l'Hopital's rule}}
\end{equation}
\end{document}

在此处输入图片描述

它的语法如下:\xRightarrow[below]{above}

相关内容