Re: [sage-support] Re: latex/sagetex display of matrix

2014-09-09 Thread kcrisman
Sorry to dredge this up... in case anyone finds this, it was fixed in http://trac.sagemath.org/ticket/5474 a few months later! sage: latex.matrix_delimiters("[", "]") On Thursday, December 18, 2008 5:54:22 AM UTC-5, Robert Bradshaw wrote: > > On Dec 17, 2008, at 11:52 PM, Geodet wrote: > > > >

[sage-support] Re: latex/sagetex display of matrix

2008-12-18 Thread Robert Bradshaw
On Dec 17, 2008, at 11:52 PM, Geodet wrote: > > I don't think the easiest way that you describe is possible. > In my .tex file i write: > \begin{sagesilent} > a=matrix(QQ,[[1,1],[2,-1],[1,-1]]) > \end{sagesilent} > $\sage{a.transpose()}\cdot\sage{a}=\sage{(a.transpose()*a).inverse > ()}$\ > \

[sage-support] Re: latex/sagetex display of matrix

2008-12-17 Thread Geodet
I don't think the easiest way that you describe is possible. In my .tex file i write: \begin{sagesilent} a=matrix(QQ,[[1,1],[2,-1],[1,-1]]) \end{sagesilent} $\sage{a.transpose()}\cdot\sage{a}=\sage{(a.transpose()*a).inverse()}$\ \ The latex-code for the matrices is not visible here. I only get t

[sage-support] Re: latex/sagetex display of matrix

2008-12-17 Thread David Joyner
The easiest way is probably to simply do a global search+replace of \left( and \right) on the file:-) The much harder way is to create a clone, then track down the method for the latex code (try M._latex_??, where M is your matrix), edit it and rebuild Sage using "sage -b". If you think your req