16

I'm looking for a way to make the hat in \hat{i} replace the dot. I can't find anything on Google, and am seemingly too dumb to figure it out myself.

Werner
  • 603,163
mueslo
  • 263

1 Answers1

30

The dotless i is available as \imath, and similarly \jmath for a dotless j:

enter image description here

Code:

\documentclass{article}
\newcommand*{\I}{\imath}
\newcommand*{\J}{\jmath}

\begin{document} $\hat{\I}$, $\hat{\J}$ \end{document}

Peter Grill
  • 223,288