在 LaTeX 中,\tilde{x}
将 ~ 放在 x 的上方。
我怎样才能将 ~ 放在 x 的下方?
答案1
\utilde
使用命令undertilde
包裹。
人群补充道:此软件包不是 TeX Live 的一部分,因此你可能需要手动安装完成这些之后,使用该包就很简单了:
\documentclass{article}
\usepackage{undertilde}
\begin{document}
$\utilde{x}$
\end{document}
这将产生以下输出。
答案2
或者直接复制这 4 行代码:
\def\undertilde#1{\mathord{\vtop{\ialign{##\crcr
$\hfil\displaystyle{#1}\hfil$\crcr\noalign{\kern1.5pt\nointerlineskip}
$\hfil\tilde{}\hfil$\crcr\noalign{\kern1.5pt}}}}}
从
undertilde.sty
并使用命令
\undertilde{x}