Skip to main content
3 of 3
\\
David Carlisle
  • 837.9k
  • 74
  • 1.7k
  • 2.6k

Second cut, trying to preserve the 120 degree angles, as well as getting proper alignment.

\documentclass{article}
\usepackage{scalerel}

\newcommand\triad{%
\let\savearraystretch\arraystretch
\renewcommand\arraystretch{0}
\begin{array}{c}
\rule{-.01ex}{.01ex}\rule{.05ex}{.8ex}\\
\stretchto{
    \scalerel*[\widthof{=}]{\wedge}
    {\rule{1ex}{3ex}}%
}{0.42ex}\\
\vphantom{\rule{1ex}{.01ex}}
\end{array}
\let\arraystretch\savearraystretch
}

\begin{document}

$x^2 \triad \begin{array}{c}a\\b\\c\end{array}$

\end{document}

enter image description here

Steven B. Segletes
  • 245.1k
  • 13
  • 349
  • 635