On Fri, Oct 27, 2023 at 1:03 AM Eric Majzoub <zoo...@gmail.com> wrote:
>
> I would like to debug the latex printing of an expression that ambiguous.
>
> To reproduce it:
> t = var('t')
> x = function('x')(t)
> latex( diff(x,t)^2 )
>
> This produces ambiguous output, essentially:
>
> partial_t x^2
>
> instead of
>
> (partial_t x)^2
>
> I have tried:
> from sage.misc.trace import trace
> trace("latex( diff(x,t)^2 )")
>
> but I can't understand in which .py file the translation of "diff" occurs. As 
> I understand the source code, there should be a _latex_(self) for every 
> object or method to display latex code, but I can't seem to find it here.

This is done in pynac, a Sagemath package written in C++ (a fork of GiNaC)
src/sage/symbolic/pynac.pxi contains the interface to it.

HTH



>
> Any help is greatly appreciated.
>
>
> --
> You received this message because you are subscribed to the Google Groups 
> "sage-support" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sage-support+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/a530254d-9fec-452f-80cd-153d3769d34fn%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq1jyR8u9ScnHP2syVBdPE2EoaoUeM6nUs8PGhiH6y5nyQ%40mail.gmail.com.

Reply via email to