Image Of (⊷) symbol in LaTeX
In mathematics, this ⊷ symbol is used in functions and mappings. In this tutorial, you will learn how to print the Image Of (⊷) symbol in a LaTeX document.
Image Of (⊷) symbol with stix package
The stix package provides a \imageof command, with this command you can print the Image Of (⊷) symbol in your document.
\documentclass{article}
\usepackage{stix}
\begin{document}
$$ \imageof $$
$$ a \imageof b $$
$$ a_1 \imageof a_2 $$
\end{document}Output:

Image Of (⊷) symbol with fdsymbol package
The fdsymbol package provides two commands \blackwhitespoon and \imageof to get the Image Of (⊷) symbol in LaTeX. You will get a similar output with all of these commands.
\documentclass{article}
\usepackage{fdsymbol}
\begin{document}
$$ \imageof \quad \blackwhitespoon $$
$$ a \imageof b $$
$$ a_1 \imageof a_2 $$
\end{document}Output:

Leave a Reply