Accents in LaTeX – How to Use Sub Tilde

accentstilde

In LaTeX, \tilde{x} puts a ~ on top of the x.
How can I put a ~ below the x?

Best Answer

Use the command \utilde from the undertilde package.

Added by the crowd: This package is not part of TeX Live, so you may have to install it manually. This having been done, using the package is simple:

\documentclass{article}
\usepackage{undertilde}
\begin{document}
$\utilde{x}$
\end{document}

This produces the following output.

enter image description here

Related Question