0

I am getting an "Undefined control sequence" error when I try to use the

\centerdot

command, even though that command is shown in many references as the way to insert a centered dot. What is the problem?

1 Answers1

4

You might need amssymb:

\documentclass{article}
\usepackage{amssymb}
\begin{document}
$\centerdot$
\end{document}
citsahcots
  • 7,992