|
[Date Index]
[Thread Index]
[Author Index]
Re: Creating a Banner for presentation
- To: mathgroup at smc.vnet.net
- Subject: [mg93642] Re: Creating a Banner for presentation
- From: "news.individual.net" <noemail at noemail.com>
- Date: Wed, 19 Nov 2008 05:40:58 -0500 (EST)
- References: <gfubvf$eh3$1@smc.vnet.net>
David who is so good at FE programming will probably come out with a
detailed answer, but in case, this does the job:
SetOptions[EvaluationNotebook[],
DockedCells -> Cell[BoxData[ToBoxes[rose]], TextAlignment -> Center]]
The answer lies in what Cell accepts as content (see documentation). There
might be a simpler way using the GraphicsData["type",data] as cell content,
but a 3min search in the documentation gave no info about what "type" should
be for the rose image... Guessing and using Graphics["Raster",rose] gives
a grey box... But the BoxData[ToBoxes[...]] way does the job.
Guy Lamouche
"Alexei Boulbitch" <Alexei.Boulbitch at iee.lu> wrote in message
news:gfubvf$eh3$1 at smc.vnet.net...
> Dear David,
> This is indeed a very good thing to be able to do. For this reason I would
> like to ask you to explain more about it.
> What I am missing is to be able to include an image as a banner cell,
> rather than only a text. I tried the following:
>
> rose = Import["ExampleData/rose.gif"];
>
> SetOptions[EvaluationNotebook[],
> DockedCells -> {Cell[Graphics[rose], "Title"]}]
>
> or
>
> SetOptions[EvaluationNotebook[],
> DockedCells -> {FEPrivate`FrontEndResource["FEExpressions",
> "SlideshowToolbar"],
> Cell[rose, "Section", TextAlignment -> Center]}]
>
>
> but this does not work. Could you please give a tip?
>
> Best, Alexei
>
>
>
>>Just a small (but important) update to my previous post on this. here
>>is a more useful template for how to go about this since it includes
>>the slide navigation elements:
>
>>SetOptions[EvaluationNotebook[],
> >DockedCells -> {FEPrivate`FrontEndResource["FEExpressions",
> > "SlideshowToolbar"],
> >Cell["this is it", "Section", TextAlignment -> Center]}]
>
>>Best,
>
>>David
>
>
> On Nov 16, 7:03 am, RG <gobithaa... at gmail.com> wrote:
>> Dear experts,
>>
>> I'm trying to make a powerpoint like presentation using Mathematica 6,
>> bu=
> t i
>> can't find any explaination in documentation on how to create banners
>> for my presentation. Nice example can be found
>> at:http://library.wolfram.=
> com/infocenter/Conferences/7002/.
>> Thanking you in advance,
>> jetro
>
>
> --
> Alexei Boulbitch, Dr., Habil.
> Senior Scientist
>
> IEE S.A.
> ZAE Weiergewan
> 11, rue Edmond Reuter
> L-5326 Contern
> Luxembourg
>
> Phone: +352 2454 2566
> Fax: +352 2454 3566
>
> Website: www.iee.lu
>
> This e-mail may contain trade secrets or privileged, undisclosed or
> otherwise confidential information. If you are not the intended recipient
> and have received this e-mail in error, you are hereby notified that any
> review, copying or distribution of it is strictly prohibited. Please
> inform us immediately and destroy the original transmittal from your
> system. Thank you for your co-operation.
>
>
>
Prev by Date:
Mathematica 7 is now available
Next by Date:
Re: Creating a Banner for presentation
Previous by thread:
Re: Creating a Banner for presentation
Next by thread:
Re: Creating a Banner for presentation
|