Math & Science ⇒ dot below a symbol
dot below a symbol
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
dot below a symbol
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}
Re: dot below a symbol
That was helpful
