0

There is a sign to signify two triangles are congruent. It looks like this: ≅. How would I do this in latex?

M. C.
  • 281

1 Answers1

2
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amssymb}
\begin{document}
\section{Introduction}
 $\triangle A \cong \triangle B$
  \end{document}

Output:

enter image description here

Use \usepackage{amssymb} package and \cong command.

I strongly refer you to consult with List of LaTeX mathematical symbols link. It will help you a lot.

Encipher
  • 548