Re: [sage-devel] Tip: easy input of math/unicode symbols

2020-03-06 Thread E. Madison Bray
I opened a ticket about this some weeks ago: https://trac.sagemath.org/ticket/28966 On Fri, Feb 21, 2020 at 5:09 PM Nicolas M. Thiery wrote: > > Hi, > > Since Sage uses Python 3, we can finally use unicode symbols for variables: > > sage: Φ = lambda λ: λ + 1 > > But how to input t

[sage-devel] Tip: easy input of math/unicode symbols

2020-02-21 Thread Nicolas M. Thiery
Hi, Since Sage uses Python 3, we can finally use unicode symbols for variables: sage: Φ = lambda λ: λ + 1 But how to input them? I just accidently discovered that IPython (and thus Jupyter) makes it super easy. Type: sage: \Phi And you get: sage: Φ ht