Big Down Triangle(▽) symbol in LaTeX

Symbol/Unicode Big Down Triangle/U+25BD
Type of symbol Basic Multilingual Plane
Package (requirement) amsmath
Argument No
Latex command \bigtriangledown
Example \bigtriangledown → ▽

To use the Big Down Triangle symbol in a latex document, you need to use the \bigtriangledown command of the amsmath package.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
   % using \genfrac command
   $$  \genfrac{}{}{-10pt}{}{\bigtriangleup}{\bigtriangledown} XXX  $$
   %using \substack command
   $$ \substack{\bigtriangleup \\ \bigtriangledown} XXX  $$
\end{document}

Output :

Use big down triangle in latex.

Leave a Comment

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

Scroll to Top