How to use left triple arrow(⇚) symbol in LaTeX?

Symbol/UnicodeLeft Triple Arrow/U+21DA
Type of symbolArrow
Package (requirement)amssymb
ArgumentNo
Latex command\Lleftarrow
Example\Lleftarrow → ⇚

To print the Left Triple Arrow symbol in a latex document, you need to use a package called amssymb. And with the \Lleftarrow command of this package, you can easily print this symbol in the document.

\documentclass{article}
\usepackage{amssymb}
\begin{document}
    \[ ABC \Lleftarrow 123 \]
    \[ XYZ \Lleftarrow 456 \]
    \[ KLK \Lleftarrow 123 \]
\end{document}

Output :

Using Left Triple Arrow in latex.

Leave a Comment

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

Scroll to Top