5

When I write $\dot{A}(t)$, the dot is not aligned with the top of the letter A. is there a way to correct this?

Werner
  • 603,163

1 Answers1

1

Not sure if this breaks other things, but here, I redefine \dot to check if the argument is a lone A and skew the dot only if that is the case (the skew level can be adjusted, of course, for the particular font).

\documentclass{article}
\let\svdot\dot
\def\dot#1{\dothelp#1\relax}
\def\dothelp#1#2\relax{%
  \if\relax#2\relax%
    \ifx A#1\skew{6}\svdot#1\else\svdot#1\fi
  \else
    \svdot{#1#2}%
  \fi%
}
\begin{document}
$\dot{A}(t)$

$\dot A(t)$

$\dot{AG}(t)$

$\dot{G}(t)$
\end{document}

enter image description here

The unaltered \dot, for comparison

enter image description here