Hello all,

On line 621 in the mentioned file I think that:

def _latex_(self):
        return self.domain()._latex_()+" \rightarrow
"+self.range()._latex_()

is causing the arrow in the notebook to display as "ightarrow" instead
of whats intended because the \r is interpreted as the control
sequence and not the literal.  This change works for me.

def _latex_(self):
        return self.domain()._latex_()+" \\rightarrow
"+self.range()._latex_()




David Monarres

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to