How to use down triangle(▽) symbol in LaTeX?

Symbol/UnicodeDown Triangle/U+25BD
Type of symbolMathematics
Package (requirement)amssymb
ArgumentNo
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 :

Use down triangle symbol in latex.

Leave a Comment

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

Scroll to Top