[sage-devel] Re: Errors with dummy packages

2022-07-07 Thread Matthias Koeppe
That's a good idea, please open a ticket On Thursday, July 7, 2022 at 4:03:57 PM UTC-7 John H Palmieri wrote: > While testing out a ticket, I accidentally asked Sage to build some of its > fake packages, like pandoc or perl_cpan_polymake_prereq. (Well, I asked it > to build packages for which

[sage-devel] Errors with dummy packages

2022-07-07 Thread John H Palmieri
While testing out a ticket, I accidentally asked Sage to build some of its fake packages, like pandoc or perl_cpan_polymake_prereq. (Well, I asked it to build packages for which these were dependencies.) These fail with messages like Error: pandoc is a dummy script package that the Sage

[sage-devel] Re: latex function and operations with fraction subscripts

2022-07-07 Thread Samuel Lelievre
Note: also asked on Ask Sage: - Ask Sage question 63145 How do you define a symbol with a quotient in the subscript? https://ask.sagemath.org/question/63145 -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and

[sage-combinat-devel] Displaying and typesetting partitions

2022-07-07 Thread Samuel Lelièvre
Dear sage-combinat-devel, This unanswered question on Ask Sage: Displaying and typesetting partitions https://ask.sagemath.org/question/62961 would benefit from your sage advice! --Samuel -- You received this message because you are subscribed to the Google Groups "sage-combinat-devel"

[sage-devel] Re: latex function and operations with fraction subscripts

2022-07-07 Thread Emmanuel Charpentier
The /character cannot be part of a symbol’s name (not acepted by the Python interpreter). Try : sage: logr = SR.symbol("logr", latex_name='L_{x/x_0}') sage: x*logr logr*x sage: latex(x*logr) L_{x/x_0} x BTW (question of taste…), I’d rather use logr = SR.symbol("logr",

[sage-devel] Re: latex function and operations with fraction subscripts

2022-07-07 Thread Emmanuel Charpentier
the `/`character cannot be part of a symbol's name (not acepted by the Python interpreter). Try : ``` sage: logr = SR.symbol("logr", latex_name='L_{x/x_0}') sage: x*logr logr*x sage: latex(x*logr) L_{x/x_0} x ``` BTW (question of taste...), I'd rather use `logr = SR.symbol("logr",

Re: [sage-devel] parametric plot

2022-07-07 Thread Niranjana K M
Apart from just looking at this particular plot and trying to manage it, look at the actual problem in depth. Please look at how plotting points are evaluated. Even though Sage is capable of evaluating these points, it (or matplotlib?) is evaluating y coordinates after 88 as inf or nan. Please