Intercalate (⊺) symbol in LaTeX
In this tutorial, you will learn how to print the Intercalate (⊺) symbol in LaTeX. Here I will print this symbol using different packages, so you can see different styles of Intercalate (⊺) symbols.
Intercalate (⊺) symbol with amssymb package
The amssymb
package provides a \intercal
command to print the Intercalate symbol in LaTeX. Take a look.
\documentclass{article} \usepackage{amssymb} \begin{document} $$ \verb|\intercal| : \intercal $$ $$ A \intercal B $$ \centering\verb|\intercal| symbol in superscript: $$ A^\intercal $$ $$ A^{n\intercal} $$ $$ A^{'\intercal} \quad A^{'^\intercal} $$ \end{document}
Output:
Intercalate (⊺) symbol with other packages
You can also use other packages to see what the output looks like. Many more packages provide commands for this symbol. I listed all.
Package | Command | Output |
---|---|---|
amssymb | \intercal | ![]() |
stix | \intercal | ![]() |
MnSymbol | \intercal | ![]() |
fdsymbol | \intercal | ![]() |
boisik | \intercal | ![]() |
Leave a Reply