Dot Plus (∔) symbol in LaTeX
In this tutorial, you will learn how to print the Dot Plus (∔) symbol in LaTeX with different packages.
To print the Dot Plus symbol in LaTeX you can use the \dotplus command provided by the amssymb package.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ \dotplus $$
$$ \verb|\dotplus| : \dotplus $$
\end{document}Output:

Dot Plus symbol with other packages
You can also use the fdsymbol and stix package to get a slightly different style of this symbol.
| Package | Command | Output |
|---|---|---|
fdsymbol | \dotplus | |
stix | \dotplus |
Leave a Reply