I would like to know how to make a point above a symbol (ie : αΊ)
I tried \overset{.}{x}
, but the point is very small...
Can you help me ?
Thanks
Asked
Active
Viewed 900 times
1

Anon2482
- 13
- 3
-
2Does `$\dot{x}$` give you what you want? β jwalton Oct 20 '21 at 14:07
-
1See https://tex.stackexchange.com/q/152951/181010 for a related question β jwalton Oct 20 '21 at 14:09
1 Answers
0
Just to write down one answer, elaborating a bit the source cited in the comments, and to add the following minimal codes.
\documentclass{article}
\begin{document}
$\dot{x}$
$\ddot{x}$
\end{document}
One dot (\dot
) and two dots (\ddot
) work in math mode as above. Three dots (\dddot
) and four dots (\ddddot
) the same but they require the package amsmath
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\dddot{x}$
$\ddddot{x}$
\end{document}
Instead in text mode, the package called stackengine
may help:
\documentclass{article}
\usepackage{stackengine}
\begin{document}
\stackon[1pt]{x}{.}
\end{document}

MattAllegro
- 6,455
- 5
- 45
- 52