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 in superscript..

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.

PackageCommandOutput
amssymb\intercal\intercal
stix\intercal\intercal
MnSymbol\intercal\top
fdsymbol\intercal\intercal
boisik\intercal\intercal

Leave a Reply

Your email address will not be published. Required fields are marked *