Symbol/Unicode | Left Triple Arrow/U+21DA |
---|---|
Type of symbol | Arrow |
Package (requirement) | amssymb |
Argument | No |
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 :