How to make presentation's sections names appear in header?

In header I would like to put sections names (say Aim, Experiment, Results, Conclusion) of my talk. The idea is when I am on "Experiment"  section's slides, all these names appear, say horizontally and only "Experiment" is visible while the other headings should blur or fade?.
So the question is:
How to break the presentation in sections or subsections?
How to make Keynote manage relevant section headings i.e. fading out irrelevant headings, colours, fonts
Of course I can write the names manually and for each slide do the necessay changes to the header. but lets face it: for 25+ slides this toturous.
I know probably I would have to reedit some master slides or this there any coding to be done?
I know this kind of things is rather simple in Beamer.
I would really welcome any bit of help. !!

this is a popular  straightforward and quick thing to do, its all set up manually
It took me less than two minutes to create 40 slides as you describe:
duplicate the blank master slide 4 times
create 4 text boxes on one of the duped masters with your titles using gray text, paste these into the 3 other dup master slides
change the text colour to orange of one text box in each of the new masters, so you have a different highlight colour in each master
create as many new slides  as you need then add one the 4 master layouts to a selection of the working slides
obviouly use colours and layout to suit your needs
when you need a new slide, just apply one of the master slide layouts

Similar Messages

  • How to make a new section visible in the server published version

    I use UPK 12 Client.
    When I click "Link a new section" in an existing Module, I can see it in the outline in the left pane in my UPK 12 Developer. When I then check-in all items, click Publish > select c: drive (a test folder) > Publish entire outline, the outcome includes the new section created.
    When I do the exact same procedure, but choose to click Publish > server (which is set up for my UPK) > Publish entire outline, the outcome does NOT include the new section created, but everything else yes.
    How to make the new section visible in the server published version?
    Thanks!
    Sille

    Hi Sille,
    Are you publishing over knowledge center? or is it publishing to a network drive? Once you check in the section save the module once and try again. See if it makes any difference.
    best regards,
    SD

  • Several contacts have the same email address. How can I choose which contact name appears on the address line in Mail?

    Several contacts have the same email address. How can I choose which contact name appears on the address line in Mail?

    you can't really, but you might be able to filter them by message content into folders for each, or color them with tags

  • How to make sure that schema name is not included with generated sqls

    How to make sure that schema name is not included with generated sqls with tableadapter wizard.
    What should I use? Oledb, ODT.NET, where can set that I want "pure" sqls, not schemas, not ", or anything like this
    I want
    "Select a,b from t1" ,not "select "a","b" from schema.t1"
    Also schema name is put in all parameters, all over the place... What if schema name changes. (b1test to b1prod)
    . I now manually edit XML files of dataset. It works but....
    thanks

    The full hardware :
    Processor Intel core due 3.00 MHz
    RAM:1.5GB
    psu:650 Watt (but i baught i cheap one so it may be actually about 400 watt)
    HD Disk:160 GB
    But about the power supply if it not able to run the VGA card ,Is it will not show any screen or it will not able to run the computer??

  • How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    See deggie's response in this post... https://discussions.apple.com/message/8531821#8531821

  • How to make use of 'Icon Name' in Logical link?

    I see the option 'Icon name' in 'define logical links' in SPRO. It does not however has an F4. I tried giving the name of image in the relevant skin. But no image appears besides the logical link. Is there something else that needs to be done to get an image besides workcenter link? How to make use of this 'Icon Name' in logical link?

    Hi,
    i guess this icon_name is not possible for every skin in CRM70.
    We use nova skin - here it is not possible.
    With default skin i saw icons for example on the salespro startpage.
    Kind regards
    Manfred

  • How to make a Shared mailbox folder appear on everyones mailbox automatically

    Hello, I need to find a way for a Shared mailbox
    folder to appear in everyone’s mailbox automatically – preferably in their favorites. We currently have a Public Folder where everyone in the company can drag or email any suspicious, fishing, etc.
    emails. Unfortunately that is not good enough for our company's upper management. They
    wants me to find a way to add a folder on everyone’s mailbox so they can easily find it under their favorites and drag any questionable messages to it.
    I created a Shared mailbox for this purpose and a folder and I gave everyone access to it. Now
    I’m not sure how to make this folder appear automatically in everyone’s mailbox favorites. If there is a way to accomplish this I would appreciate any suggestions.  I wonder if there is a
    powershellcmdlet that can help me do this. Any assistance will be greatly appreciated. For now we are running on a mix environment Exchange 2010/2013, but pretty soon it will be 2013 only. Thanks in advance for your assistance.
     

    I wouldn't recommend this method, trust me this might become mess if doesn't go to right direction. People might use this shared mailbox for their
    own use. Best practice is to create a shared mailbox with some sensible name like [email protected] or
    something like that and then share it on the announcement board or send an announcement mail to all users and ask them to forward their spam, suspicious, fishing mails to this address.

  • How to make the swing drawings to appear in a specific jPanel?

    hi,
    I have a frame which I divided in two panels - one for the jComboBoxes/buttons and the other one for showing graphics. but the paint(Graphics g) overpaints it all =(
    how should my code look like if I want some rectangles (depending on the combo choices and on button click which means update) to appear in the second panel?
    the code's structure is like :
    import *;
    public class NewJFrame extends javax.swing.JFrame {
         private JPanel jPanel1;
    public static void main(String[] args) {
              NewJFrame inst = new NewJFrame();
              inst.setVisible(true);
         public NewJFrame() {
              super();
              initGUI();          
         public void paint(Graphics g) {
              g.fillRect (x, y, w, z)
         private void initGUI() {
              jPanel1 = new JPanel();
                   // combo boxes and buttons
                   // action listeners for them
              jPanel2 = new JPanel();
                   // the place where the rectangles should be shown
                   // and updated if combos are changed and button clicked
    }now, I wonder if anyone could possibly give me a hint how to make it correctly, because I'm really a total newb in Java and I can't find any good examples from www which I've search through for the solution.
    P.S. is there a plug-in for eclipse for visual programming of the graphics? =)
    thank You for the kindest help!
    J.M.

    You should not be mixing AWT and Swing component in
    a Swing application, so don't use a Canvas.
    If you need some custom painting then you should
    override the paintComponent() method of JComponent or
    JPanel and then add this component to the GUIwhat does mean the override the paintComponent() method of JComponent or JPanel?
    how can I add that component to the GUI?
    =)
    can you give a short code example, please! the code structure would be more than enough.
    J.

  • HT1338 how to make presentations in macbook pro?

    how to make slides n presentations on mac book pro?

    Keynote
    EDIT: Sorry linked to the iOS app on Mac it's part of iWorkbut you can buy it separately.

  • How to make Google custom search results appear on a new page?

    Anybody got any idea how to make the search results appear on a separate page? I'm using the Google custom search to get generated code to place on my pages, after providing some 'guidance' information on the look and feel of it. Normally, Google will provide you with a few options to choose from to determine how your results will look and by default one would choose the "two page" option whilst going thru the setup process. One page for the search box on your own page and one for the results page.
    However, if you don't want a 'google-generated' results page but want the layout that's in line with the look of your site AND have the search box already on there for any repeat searches it becomes more tricky. I tried doing it one way, which I found one a blog tutorial but so far no sucess. The 'search box' code that I inserted onto one of my pages to test didn't show up the search box at all in preview or the live page...
    Anybody got any generic code that can be adapted (that they know works) or know of any tutorial that explains how to achieve this? Preferably Google related, as I'm using its custom search.
    In addition, I believe that recently Google have deprecated the use of iframe in its search results pages so for anybody that was using an earlier version of this facility it may no longer work properly and hence the solution might have to be modified. Not an expert, so not sure how much this fact will affect the final code, just a thought.
    Any ideas/solutions will be greatly appreciated. Thanks.

    hello adrianm12, this should be possible through the metro settings ("search"). also see [https://bugzilla.mozilla.org/show_bug.cgi?id=941292 bug 941292]...

  • How can I change the brand name appearing on volume mixer?

    I tried changing the brand name of Mozilla Firefox. It changed the brand name which appears on the browser but it didn't changed the brand name appearing on volume mixer. So how can change that one too?

    then the signature will obviously be broken - i don't really know what backlash this will have, but it's definitely not worth the hassle (possibly windows giving error messages, anti-virus programs might report it as some threat and there might be problems with the firefox update mechanism, not to mention you'd have to repeat the procedure after every new update).

  • How to make TIME_STAMP as file name in log4j

    How can i make a time stamp as a file name when log4j make a file?
    eg:
    <param name="File" value="'HH-mm-ss-SSS'".log />is there any feature available.
    ThankQ
    Han

    For this behaviour you're looking at a javascript ...
    For dumb population then use Batch Processing inside Acrobat ..
    Jon

  • How to make Geological Cross Sections in Adobe Illustrator?

    I have been tasked with producing a geological cross section in Adobe Illustrator. It is a lengthy process, as I am new to the software. I never learned it in my GIS studies. I know that there is plenty of GIS software out there to produce x sections automatically (we have Petrel for example), but they want it done in Adobe Illustrator as it's not a data driven x section.
    Does anyone have any familiarity with doing such a thing? I am having to basically use the cutting tool to divide up a box into the sedimentary layers. Then I fill the cut shapes with the correct colour. Complications arise, however:
    I have to show wavy lines between some sedimentary layers to indicate a gap, or layers which aren't shown. I am using the distortion tool to automatically produce the wavy line, which means I need to:
    a. copy/paste the original area
    b. change the appearance so there is no fill, delete all strokes except the one which will turn into the wavy line, apply distortion
    c. copy/paste the original area
    d. change the appearance so there is no fill, delete the stroke that will turn into the wavy line, change stroke to black line
    This means I have 3 elements whenever there is a part of the cross section showing a wavy line:
    the area which has a fill but no stroke,
    the wavy line (derived from the area by deleting the fill and strokes which aren't wavy),
    the rest of the stroke around the area.
    Does anyone know of a faster way to do such a thing?
    I wish I could just draw a shape using some sort of line tool and AI would detect when there is a closed off area so I could then select a colour fill.
    Another problem is the cutting tool does not make it easy to produce matching curves:
    In this image you can see that there is a wrinkle across many sedimentary layers, but my cutting skills in Illustrator mean that the lines do not follow a nice uniform shape. Of course this is the case in the real world as well, although at the moment the image has a bit too much of a 'hand drawn' look to it. Part of the problem is that the cutting tool, usually helpfully, smooths out the cut line as one goes (digitising a smooth curve with a mouse is impossible!). Sometimes this smoothing has undesired effects. It would be good to know if I can apply an offset to another line when cutting.
    Is it right that I should be using the cutting tool as my primary way of setting up a x section, anyway?
    I'm thinking a better way to do all of this would be to somehow have a tool that enables me to select vertices across multiple lines in sedimentary layers, then drag them up or down. This would then apply the same amount of curve across the layers.

    Once you've set up your Pattern Swatches, this should take only a few minutes:
    Draw your paths with a minimum of anchorPoints. Click (mousedown, mouseup) to place a corner point. ClickDrag (mousedown, drag, mouseup) to place a smooth point.
    The top and bottom paths are now identical. When used to define a Blend, the program interpolates the paths between. The anchorPoints of the two original "key" paths of the Blend can still be selected and manipulated while the Blend is live; and the interpolated steps update accordingly.
    t
    There are several Libraries of pre-built Pattern Swatches you can load. Or you can create your own if none of the provided ones are what you want. The help files will show you the basics of creating a Pattern Swatch. Create one for each different pattern you want in the strata. Select the rectangle and the paths. Get the Live Paint Tool. Set the current Fill to one of the Patterns. Click between two of the strata lines. The selected objects will be converted to a so-called LivePaint Group, and you can proceed to apply other Pattern Swatches to the various areas.
    The Shape Builder tool can then be used to trim away the outboard portions of the strata lines, back to where they intersect the rectangle.
    JET
    Strata

  • How to make a test section of a large printout?

    Is there a way to print a test section of a large print? Let’s say I want to make a final print that will be 24” x 36”. Before using up a big sheet of paper and all the ink, I want to print a section of it onto smaller paper, like letter size.
    I realize I can sort of do this in Aperture by making a version, cropping it and printing that onto letter size paper. The problem with that is that I can’t make this match the scale and resolution of the final print. Maybe it’s close, but not exactly. I can turn off “best dpi” and set the dpi manually, so that makes it match in resolution; but how do I keep Aperture from scaling this cropped section?
    The kind of test section I'm trying to print should be the same scale and resolution as the final print; it should look like I had printed the final print and cut out a section of it - the test section should be exactly the same size and resolution as the cutout section from the final print. This helps me make final adjustments like sharpening and exposure.

    Yes to both. I set up the final print size in Aperture, and only loaded letter size paper in my printer. I even got a nice white border, so no over printing. It's a good way to check sharpness, colour, contrast, etc., before committing to the large sheet (I use the same type of paper, of course). My printer is an Epson 3800, and it has sensors for paper sizes.
    MBP C2D 2.33   Mac OS X (10.4.8)  

  • How to make a new line item appear in a sales order in VA01 transaction?

    Dear All,
    I am trying to create a SO with single line item with quantity 100.
    Upon hitting the 'Enter' key, if the available quantity is less than the requested quantity (say 20), it takes me to an availabilty control screen which has a push-button 'One-time delivery' on the application tool bar.
    Upon clicking on this button, it takes me back to the main screen of VA01 where I currently see only one line item with quantity 100 and confirmed quantity 20.
    My requirement here is to make two line items appear, one with quantity 20 and the other with quantity 80, once I navigate back to the main screen of VA01 after clicking on the push-button 'One-time delivery'.
    Please provide me your valuable inputs. Any kind of help is highly appreciated.
    Useful answers never go unrewarded.
    Regards,
    Sreekanth Reddy B.

    Hi Sreekanth ,
    creating line items based on the confirmation qty can be done thru config, not thru ABAP,standard SAP will gives you options to create a new line item for unconfirmed qtys.
    check with ur functional consultant or try to post in SD /APO forums.
    regards
    Prabhu

Maybe you are looking for