Geometric Proportion (∺) symbol in LaTeX
In this tutorial, you will learn how to get the Geometric Proportion (∺) symbol in LaTeX.
In order to print the Geometric Proportion symbol in a LaTeX document you can use the \dotsminusdots command provided by the fdsymbol.
\documentclass{article}
\usepackage{fdsymbol}
\begin{document}
$$ \dotsminusdots $$
$$ a \dotsminusdots b $$
\end{document}Output:

Geometric Proportion symbol with stix package
The stix package also provides the \dotsminusdots command to get the Geometric Proportion symbol in LaTeX.
\documentclass{article}
\usepackage{stix}
\begin{document}
$$ \dotsminusdots $$
$$ a \dotsminusdots b $$
\end{document}Output:

Leave a Reply