Re: [sage-support]

2012-03-28 Thread William Stein
Hi, I've removed this "dmbroline" spammer from the Google group. However, it seems like there is no way to ban them, or report them as a spammer or anything else, with the new Google groups, like there used to be. William On Thu, Mar 29, 2012 at 2:53 AM, wrote: > > http://dilapuccini.com.br/ne

Re: [sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread Raniere Gaia Silva
Jason, thanks for the tip. It work. You will open a trac for it? I can do it? Thanks, Raniere Gaia -- 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 a

[sage-support] Re: %cython failing in notebook because of accessing the wrong directory

2012-03-28 Thread Maarten Derickx
Le mercredi 28 mars 2012 23:19:55 UTC+2, Maarten Derickx a écrit : > > Dear All, > > I've setup my own sage server (running sage 4.8 on debian) with two > accounts. One called "sagerunner" wich actually runs the notebook and one > called sageslave wich runs the calculations. To be more precise

[sage-support] %cython failing in notebook because of accessing the wrong directory

2012-03-28 Thread Maarten Derickx
Dear All, I've setup my own sage server (running sage 4.8 on debian) with two accounts. One called "sagerunner" wich actually runs the notebook and one called sageslave wich runs the calculations. To be more precise notebook is started with the argument server_pool=["sageslave@localhost"]. But

[sage-support] Re: Double indexed variables

2012-03-28 Thread Adam Sorkin
This works fine when the variable is of type sage.symbolic.expression.Expression but when I make the polynomial ring PolynomialRing(QQ, a), it breaks. Here is the specific code: a = var( 'a1comma2', latex_name='a_{ %d, %d }' % (1,2)) a; view(a); type(a); a1comma2a1,2 vars = PolynomialRing(Q

[sage-support] Re: Using Python new style string formatting in Sage

2012-03-28 Thread Nils Bruin
On Saturday, March 24, 2012 11:01:15 PM UTC-7, Dima Pasechnik wrote: > Given that not every Integer fits into an int, this would be asking for > trouble. Rather, Sage should specify its own format for Integer, etc. > true, but Python handles the overflow gracefully by returning a long instead,

[sage-support] Re: Sage installation on windows : browser cannot connect

2012-03-28 Thread Matthias L
I've tried, but the firewall settings don't have any influence, and also the port forwarding should be correctly configured. Am Mittwoch, 28. März 2012 16:56:36 UTC+2 schrieb Jean-Pierre Flori: > > I think I had the same problem although the VirtualBox port forwarding was > correctly configured

[sage-support] Re: Sage installation on windows : browser cannot connect

2012-03-28 Thread Jean-Pierre Flori
I think I had the same problem although the VirtualBox port forwarding was correctly configured and I could not resolve it in the little time I had. My late conclusion was that maybe the Windows firewall is blocking the connection (even though it's a local one...) ? Could you try connecting to th

[sage-support] Sage installation on windows : browser cannot connect

2012-03-28 Thread Matthias L
Dear group, I've tried to install Sage on Windows 7 following the installation guide linked below. It seems to work until step 4, I get the same console window as shown in the screen shot there ("Open your web browser"). But if I do so, I can't connect to Sage and receive a 404 error instead.

[sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread Jason Grout
On 3/28/12 8:18 AM, Raniere Gaia Silva wrote: Jason, Before I send the email I already evaluate (i.e., latex) the cell at least twice but the cross-references don't work, IMHO, the Sage don't keep all the files create when evaluate the cell and because of it the cross-references don't work. I try

Re: [sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread Raniere Gaia Silva
Jason, Before I send the email I already evaluate (i.e., latex) the cell at least twice but the cross-references don't work, IMHO, the Sage don't keep all the files create when evaluate the cell and because of it the cross-references don't work. I try to fix it in misc/latex.py but have success. R

[sage-support] Re: Separation of constants.

2012-03-28 Thread Jason Grout
On 3/28/12 5:42 AM, Dan Drake wrote: On Tue, 27 Mar 2012 at 11:21PM -0700, Eric Kangas wrote: I have this long chain of terms with with many constant terms. I would like to know if there is a way to separate the constant terms from the terms with the variable I am trying to solve for with the so

[sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread Jason Grout
On 3/28/12 2:18 AM, P Purkayastha wrote: I think since the current notebook runs on jsmath, it is not possible to do that. The very newest version of mathjax has support for labels. There is a plan to move to mathjax from jsmath, but for now, I guess you won't be able to do this. But the OP ha

Re: [sage-support] Separation of constants.

2012-03-28 Thread Dan Drake
On Tue, 27 Mar 2012 at 11:21PM -0700, Eric Kangas wrote: > I have this long chain of terms with with many constant terms. I would like > to know if there is a way to separate the constant terms from the terms > with the variable I am trying to solve for with the solve function. So I > don't have

Re: [sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread Raniere Gaia Silva
Thanks for the answer. -- 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

[sage-support] Re: Cross-reference in LaTeX

2012-03-28 Thread P Purkayastha
I think since the current notebook runs on jsmath, it is not possible to do that. The very newest version of mathjax has support for labels. There is a plan to move to mathjax from jsmath, but for now, I guess you won't be able to do this. jsmath has some sort of equation numbering and labeling

[sage-support] Re: Double indexed variables

2012-03-28 Thread P Purkayastha
something like a11 = var('a11', latex_name='a_{1,1}') Then, view(a11) will show you the latex representation. On Wednesday, March 28, 2012 7:41:41 AM UTC+8, Adam Sorkin wrote: > > I need to use the notation of doubly indexed variables, e.g., a_{i,j} in > latex. Currently, the variables belong to