There is a sign to signify two triangles are congruent. It looks like this: ≅. How would I do this in latex?
Asked
Active
Viewed 2,807 times
1 Answers
2
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amssymb}
\begin{document}
\section{Introduction}
$\triangle A \cong \triangle B$
\end{document}
Output:
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

\usepackage{amssymb}and then\cong... – Werner Jan 22 '19 at 18:52