Symbol/Unicode | Down Triangle/U+25BD |
---|---|
Type of symbol | Mathematics |
Package (requirement) | amssymb |
Argument | No |
Latex command | \triangledown |
Example | \triangledown → ▽ |
To print the Down Triangle symbol in a latex document, you need to use the \triangledown
command included in the amssymb package.
\documentclass{article}
\usepackage{amssymb, amsmath}
\begin{document}
% using \substack command of amsmath package
$$ \substack{ \vartriangle \\ \triangledown } ABC $$
$$ \substack{ \vartriangle \\ \triangledown } XYZ $$
$$ \substack{ \vartriangle \\ \triangledown } 123 $$
\end{document}
Output :