I would like to place a dot under a symbol in math modes.
Something like underline or utilde, but with a simple dot.
\d will not do, since this is only defined in text modes.
All suggestions are welcome.
Many thanks in advance.
Erica
Math & Science ⇒ dot below a symbol
NEW: TikZ book now 40% off at Amazon.com for a short time.

dot below a symbol
Hi, Erica
you could try using \underset from amsmath or \underaccent from accents (I recommend this last option); a little example:
you could try using \underset from amsmath or \underaccent from accents (I recommend this last option); a little example:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{accents}
\begin{document}
$\underset{\cdot}{x}$
$\underaccent{\cdot}{x}$
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: dot below a symbol
Thanks.
That was helpful
That was helpful
