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 :