Other than manually placing a short line across the equal sides of a polygon, what should be the best practice to indicate that sides are equal length?
MWE:
\documentclass[12pt,table]{beamer}
\usepackage{tikz,pgfplots}
\begin{document}
\begin{frame}
\begin{figure}[!htbp]
\centering
\begin{tikzpicture}[scale=0.7]
\draw[] (0,0) -- (-4,-3) ;
\draw[] (0,0) -- (4,-3) ;
\draw[] (-4,-3) -- (4,-3);
\draw[thick,rotate around={34:(0,0)}] (-1.5,0.25) -- (-1.5,-0.25) ;
\draw[thick,rotate around={-34:(0,0)}] (1.5,0.25) -- (1.5,-0.25) ;
\end{tikzpicture}
\end{figure}
\end{frame}
\end{document}




tks-euclidedefines a\tkzMarkSegments[mark=||]command. – Bernard Nov 26 '17 at 00:56