如何在左右箭头下书写

如何在左右箭头下书写

我对箭头下的书写有疑问

我知道$\overleftarrow{A}$向左画一个定向箭头,同样$\overrightarrow{A}$向右画一个定向箭头,但我找不到像$\overarrow{A}$画左右箭头这样的命令。

有谁能帮助我!

答案1

不含任何额外包装: $\stackrel{A}{\leftrightarrow}$

使用 amsmath: $\underleftrightarrow{A}$

答案2

你是这个意思吗?

\documentclass[12pt, letterpaper]{article}
\usepackage{mathtools}
\begin{document}

This is for test $\xleftrightarrow{A}$

\end{document}

在此处输入图片描述

答案3

还有一个没用的包叫做halloweenmathunderleftright箭头。这里有一个表格,你可以看到箭头的长度和字符的长度是一样的。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{halloweenmath}
\usepackage{booktabs}

\begin{document}
Your desidered code: $\underscriptleftrightarrow{A}$.

\begin{table}[h]
\begin{tabular}{@{}|l|l|@{}}
\toprule
$\overscriptleftarrow{A}$      & $\underscriptleftarrow{A}$      \\ \midrule
$\overscriptleftrightarrow{A}$ & $\underscriptleftrightarrow{A}$ \\ \midrule
$\overscriptrightarrow{A}$     & $\underscriptrightarrow{A}$     \\ \bottomrule
\end{tabular}
\end{table}


\end{document}

相关内容