On Jan 25, 11:27 am, Gokhan Sever <gokhanse...@gmail.com> wrote: > Hello, > > When I activate the "typeset" option on sagenb.org notebook server and > get a result for this function: > > # Complete gamma function > > var('xi, t') > assume(xi>0) > integrate(t**(xi-1)*exp(-t), (t,0,oo)) > > \newcommand{\Bold}[1]{\mathbf{#1}}\gamma\left(\xi\right) > > It gives me a nice gamma(xi) view. However I would like to see the > upper case gamma instead of the lower-case one. (i.e., Use \Gamma > rather than \gamma) > > Is there a way specify this? > > Thanks
One more similar question. Consider this code (testing on 4.3.1 notebook): var('xi, t') assume(xi>0) integrate(t**(xi-1)*exp(-t), (t,0,oo)) print gamma(xi) gamma(xi) The first one produces a nicely typesetted output (i.e., giving me the Greek symbols for /gamma and /xi) However the second just replaces itself as it shown. (i.e., the print output produces gamma(xi) while the former shows nothing) Is this a normal behaviour or a bug or non-implemented sign? -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org