lmc70 wrote:
> Thanks, Jason.
>
> %auto is helpful to evaluate the cells when reopen the worksheet.
> Sometimes it is a very frequent task to re-evaluate the resuls for
> different inputs. So it will be nice to have a BUTTON named EVALUATE
> ALL to execute all the cells from top down to the bottom. The refresh/
> reload doesn't help to do this even after saved the new inputs.
>
This is a menu option in the "Action" menu at the top of the page.
> Another question for the printing, can the frame lines of the cell be
> made invisible in the printout?
I'm sure they can. We need someone to adjust the CSS style for
printouts so that it looks nice! I'm not sure where that print css
information is stored, though. It looks like it might be in
sage/devel/sage/sage/server/notebook/css.py, where we see this:
/* used for printing */
div.cell_input_print {
background-color: white;
border-left: 1px solid #a8a8a8;
border-bottom: 1px solid #a8a8a8;
border-top: 1px solid #a8a8a8;
border-right: 1px solid #a8a8a8;
font-family: monospace;
font-size:12pt;
padding-left:5px;
padding-top:3px;
padding-bottom:0px;
margin-top:0px;
margin-bottom:0px;
line-height:1.2em;
width: 97%;
}
The border-left,right,top,bottom things are the things causing the
border, I think. Just change those, then start Sage with "sage -br" to
make your changes effective.
Jason
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---