Notebook font settings?
Is there any way to change the default set of fonts used in notebook? For interface, code editor and text output?
Is there any way to change the default set of fonts used in notebook? For interface, code editor and text output?
I don't know of any easy way. An inconvenient way: edit the file SAGE_ROOT/devel/sagenb/sagenb/data/sage/css/main.css
. For example, changing the line
body { background-color: white; }
to
body { background-color: white; font-family: impact, chicago; }
affects some of the fonts. Alternatively, notice that this file main.css
says at the beginning
/* Warning: These .css files are automatically generated and will be overwritten */
/* when they are next generated. Please edit the SASS source located at */
/* <sagenb-spkg-root>/sass/src. Kindly refer to the readme for editing */
/* instructions at <sagenb-spkg-root>/sass */
So you could follow these directions and instead read SAGE_ROOT/devel/sagenb/sass/readme.txt
and edit files in the directory SAGE_ROOT/devel/sagenb/sass/src/
, and then compile the changes using compass
.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2012-01-07 04:05:17 +0100
Seen: 808 times
Last updated: Jan 08 '12
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)
What state is preserved when I close a running notebook browser window?