Re: Get rid of left margin reserved for In/Out labels
- To: mathgroup at smc.vnet.net
- Subject: [mg124686] Re: Get rid of left margin reserved for In/Out labels
- From: Simon <simonjtyler at gmail.com>
- Date: Tue, 31 Jan 2012 05:38:56 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jg5q9f$h5d$1@smc.vnet.net>
- Reply-to: comp.soft-sys.math.mathematica at googlegroups.com
To get rid of the CellLabels, you can use the ShowCellLabel option. Either in the notebooks stylesheet:
Cell[StyleData["Input"],
CellMargins->{{10, 10}, {5, 10}},
ShowCellLabel->False]
Cell[StyleData["Output"],
CellMargins->{{10, 10}, {10, 5}},
ShowCellLabel->False]
or in the notebook itself:
SetOptions[EvaluationNotebook[], ShowCellLabel -> False]
The preference switch Alexei mentioned is just setting the same option for $FrontEnd (you can also set it for the session using $FrontEndSession).