Math & Sciencedot below a symbol

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
acire
Posts: 4
Joined: Wed Sep 29, 2010 12:23 pm

dot below a symbol

Post by acire »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

dot below a symbol

Post by gmedina »

Hi, Erica

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,...
acire
Posts: 4
Joined: Wed Sep 29, 2010 12:23 pm

Re: dot below a symbol

Post by acire »

Thanks.
That was helpful :)
Post Reply