Re: Mathematica 6.0 Out[] tags
- To: mathgroup at smc.vnet.net
- Subject: [mg79694] Re: Mathematica 6.0 Out[] tags
- From: Jon McLoone <jonm at wolfram.co.uk>
- Date: Thu, 2 Aug 2007 03:45:38 -0400 (EDT)
- References: <f8pkf4$34j$1@smc.vnet.net>
On Aug 1, 10:40 am, tomfabtas... at hotmail.com wrote: > Hi, > > I am creating a report in a Mathematica 6.0 notebook. However, I > don't want the Out[] tags to show beside the graphs. Is there anyway > I can supress the Out[] tags ? > > Thanks, > Tom The simplest way is to suppress them for the entire notebook using either the option inspector ShowCellLabel -> False or by evaluating SetOptions[EvaluationNotebook[], ShowCellLabel -> False] Alternatively you can send the output to the notebook via Print, or similar, rather than letting it be returned as output. Print[Plot[x,{x,0,1}]] Or construct a the report as a document output to the current EvaluationNotebook. CreateDocument[{ TextCell["My report", "Title"], Plot[x, {x, 0, 10}] }] Jon McLoone http://members.wolfram.com/jonm