Ask Your Question
1

How can hide %hide?

asked 2012-05-13 10:01:48 +0200

hsigrist gravatar image

When I type:

%hide
%latex
Hellow $\int f(x)dx$ some text

obtain "%hide" in the first line, how can I remove that.

edit retag flag offensive close merge delete

4 Answers

Sort by ยป oldest newest most voted
2

answered 2012-05-14 16:12:02 +0200

calc314 gravatar image

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.

edit flag offensive delete link more

Comments

As the public worksheets are not available anymore: Enter the latex math commands between $ signs for inline math and between $$ signs for display math: e.g. $\int\limits_0^1 f(x)$

twch gravatar imagetwch ( 2012-12-29 10:27:33 +0200 )edit
3

answered 2012-05-17 14:13:04 +0200

Jason Grout gravatar image

Do %hideall. You'll have to go into the worksheet source to edit the cell then, though.

edit flag offensive delete link more
0

answered 2012-12-06 12:05:27 +0200

PatrickSurry gravatar image

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>
edit flag offensive delete link more
0

answered 2012-05-13 19:20:11 +0200

ndomes gravatar image

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?

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-05-13 10:01:48 +0200

Seen: 1,744 times

Last updated: Dec 06 '12