How can hide %hide?
When I type:
%hide
%latex
Hellow $\int f(x)dx$ some text
obtain "%hide" in the first line, how can I remove that.
Note that you can insert latex commands into text cells in Sage. To get a text cell, hover your mouse just higher on the page than a command cell. A blue line will appear, and then you shift-click. This creates a text box with a formatting palette. You can also enter latex commands in this box. You can't call special latex packages or create macros, but it does produce some very nice looking mathematics.
See http://sage.maa.org/home/pub/110/ for an example.
Do %hideall
. You'll have to go into the worksheet source to edit the cell then, though.
You can also hide input cells using CSS styling. If you want to hide input cells in the interactive worksheet, add a cell at the start of the worksheet like this:
%html <style> textarea.cell_input {display : none} </style>
But then you need to edit the worksheet source to change none
to inline
to see your input again. The other option is to hide all your input just in the print view, e.g. if you're producing a nicely formatted PDF of all your results. To do that:
%html <style> .cell_input_print {display : none} </style>
Why do you want to hide %hide? You need it to make the hidden code visible. Do you want to display an input cell that contains code as empty?
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2012-05-13 10:01:48 +0100
Seen: 1,834 times
Last updated: Dec 06 '12
getting blank cells in html.table
default startup options for sage notebook
Can two people use a notebook at the same time?
Notebook List Object Data Storage/Retrieval? (Start/Restart)
Short Cython Example In A Notebook Cell?
What happens in insecure mode?
Is notebook() mutually-exclusive from "./sage -gdb" mode?
Can I pause a computation rather than aborting it? (Interrupt Command)