[Tex/LaTex] Delta-like symbol in LaTeX

math-modesymbols

I'd like to write a majuscule delta-like symbol in LaTeX but I can't find it's syntax anywhere. You can see the symbol on equation (12) of the following paper:

"Two-Frame Motion Estimation Based on Polynomial Expansion".

enter image description here

Best Answer

Note that the document uses Springer's LNCS style. In this style, all Greek letters are in italics, and vectors are denoted by boldface.

Most likely the bold italic Delta is produced in this particular case by something similar to this:

\documentclass{llncs}
\begin{document}
$\vec{\Delta}$
\end{document}

The result is:

llncs

Note that if you used the article class, the same code would produce a normal Delta with an arrow:

article