Hello Sage users!
I was reading the documentation and trying to find a solution for my personal chimera of LaTeX usage: if I define $\mathbf A$ to be a matrix at some scope (document, chapter or section for example), why do I have to explictly write \mathbf
every time?
So my question for Sage is this: say I have a simple 2x2 matrix
$$ \mathbf A = \left[ \begin{array}{rr} a & b \ c & d \end{array} \right] $$
I want to, at times, do symbolic manipulations with the letter representation of this matrix, then use the latex(...)
command to print it as a bold upcase letter, and to use the full matrix form at other times (with its corresponding LaTeX form)
Is it possible to do this in Sage? And how?