Is there a simple way to represent a triangular matrix as a triangle, like Pascal's triangle?
I've seen various solutions that display Pascal's triangle, but I think that there should be a straight-forward command to display any general triangular matrix in a similar way from a LaTeX or from a SageMath input matrix.
As an example was requested, let me paste here dalibor.zeleny's solution from one of the links:
\begin{tikzpicture}
\foreach \n in {0,...,4} {
\foreach \k in {0,...,\n} {
\node at (\k-\n/2,-\n) {${\n \choose \k}$};
}
}
\end{tikzpicture}
This produces: 

a \\ a & b \\ a & b & c \\etc. and this should render as a triangular matrix? – Jasper Habicht Nov 30 '21 at 13:16For larger triangles, I think the scripts provided in dalibor.zeleny's question would be more appropriate. Link to their question: https://tex.stackexchange.com/q/17522/224487
– LightninBolt74 Nov 30 '21 at 13:38