[Tex/LaTex] Insert Plane symbol

symbols

From this document Comprehensive symbols I see there is a bbding plane symbol which can be inserted into LaTeX. As a newbie to LaTeX, would you mind helping me understand how to insert it? The following attempts haven’t worked:

  • \Plane

  • \textplane

  • \equation{\plane}

  • $\plane$

Best Answer

You should load the package:

\documentclass{article}
\usepackage{bbding}
\begin{document}
\Plane
\end{document}

enter image description here