The first thing you have to do is to open a .TEX document, and to make some declarations. I personaly use the TEXMAKER editor, and MikTek 2.8 under windows, but I guess pretty much everything could be transposed to other editors and/or platforms. Texmaker does exist on Mac and Linux, so that is a good start for portability.
The first line of your .tex document should be:
thus telling the compiler that you are using Beamer. The next three lines were to declare the general theme, the color theme and some additional feature you can find on beamer. Thus I had:
But I recently found out a web page where you could design your own theme, and in a single file, include all the characteristics you want, including color theme, outer theme, inner theme, etc. You can find such an application here.
Using this small but very usefull applet, I re-designed my themes, and ended up with two files, one I called beamerthemecours.sty, and which I uses for my teaching presentations, the other I called beamerthemelimhp.sty, and which I use for conferences.
You have to put the .sty file in the same folder of your .tex file. So my files look like this
or like that:
You need next to put your title, the name of the authors, the name of your institution, and the date. For the title, you'd have to provide a "short title" between brackets, and the name of the author doing the presentation, also between brackets. So it would look like:
After that, well you need to have things being done: you have to tell that you are actually starting the document, and declare your first slide:
Compiling this file, you will get a first slide like this:
And to give you an idea of what the presentation would look like with my other theme, here is what you'd get:
You would have noticed that I actually created here not one, but two slides; the second one would display the table of contents, which would be automatically generated using the \tableofcontents function. Similarly, the first slide would be automatically generated using the information you provided in \title, \author, \institute and \date, by the function \titlepage.
Entering a new slide would be very easy, and would be done through the two commands:
Nowadays, more and more video projectors are able to display presentations in wide screen. While they are still able to display in the classical 4:3 screen ratio, this is done by discarding pixels on the side of the image, so I think it should be avoided.
The way of doing this is actually quite simple, and goes by the use of the `beamerposter' package. As the name of the package clearly says, this is supposed to be used for beamer to help prepare a poster, so you have to tell the package quite a few things, and so this is what you could write:
The main reason for writing sections and subsections would be to provide data for the function \tableofcontents; however, there is more to it, namely what was the 'smoothbars' outertheme before, which provides small bullets on top of each slide, each bullet representing a different slide. Section names will be fully writen on top of each slide, and bullets representing slides of the same subsection will be grouped during the slideshow: the active slide bullet will be filled, the bullets representing the slides of the same subsection will be in bold.
Let's try something like that, after the same initial declarations:
To add a logo was quite tricky to me , it took me some time to figure it all out. Technically, what you will do is to put at a constant absolute position the same image on each slide. To do that, you need a package that will allow you to reach this position. So before the \begin{document} command, you will need to insert the line:
followed immediately by a command to sort of provide a scale by the following lines:
Then, still before the \begin{document} command, you'll need to declare a new command, such as this one:
Unfortunately, I couldn't find a simple way to force the logo on each slide automatically. You will have to declare each slide by adding the \MyLogo command:
and so, this is what I would get, providing my own 'logo.png' file, e.g. for the same previous contents slide:
By now, you do understand why the blue-and-yellow color theme makes sense: these are the colors of my lab's logo...
There are several ways of putting a clock, including redefining the logo and allowing a javascript function in it; it's not very difficult to do, but does consume a lot of computer resources for some reason. So instead, I redesigned the 'date' field, as follow.
First you need to introduce before the \begin{document} the tdclock package:
where timeinterval is actually the time waited before refreshing the clock. With 60, you will get the exact time in minutes.
On the first slide, you will need to initiate the clock. So the first slide would be declared as follow:
Here comes the trick: I don't think I need the date on every slide. If I reopen the document months after the presentation, having it on the first slide is enough; and during the real presentation, everybody knows the date. So I change the way the \date command is working by writing, between the first and the second slide:
and so, you will now have on each slide the time, followed but the time you have actually spent on your presentation; so if the chairman has let the previous speaker take too much time, he won't be able to blame you...
Blocks are just great to emphasize some text. Their declaration is pretty straightforward, so here is the same text written three times, once normally, next in a title-free block, and then in a full block
Note that if you don't want a title, you have to provide an empty title; otherwise, Beamer will consider the first letter of your block as the title, and it will be ugly. Here is what you get:
Blocks exist as "block", "exampleblock" and "alertblock"; there are no differences between them without title due to my personal choices when I designed my themes, but a strong difference when you consider the blocks with the titles:
Inserting images is pretty straightforward: you just need to use the \includegraphics command. But unfortunately, depending on the way you compile your text, it may or may not work depending on the file format of your image. With one system it may be EPS files, for the other PNG files. I didn't figure out why, I think it's a difference between latex and pdflatex compilers... not quite sure.
Anyway, here is the code
You have to pay attention to the scale you want your image to be displayed; sometimes an image you think to be small will appear to be huge, and may overlap the rest of your slides.
You may also want to put your image somewhere else than where it actually is. My advice : either use a multicolumn environment, as described above, or just center the image using:
... will display successively the three slides hereunder:
What is very important is that if your displaying the second 'display' of your slide, what does not belong to it does not exist. On the contrary, using the \invisible command, the text not displayed does exist, but is invisible, so the general display of the slide does not change, since everything is there, even if you may not be able to see it.
... will display successively the three slides hereunder:
You will have noticed that there is a white line on the third slide; this is because the second line, even though it is invisible, is still there.
Note that technically, it is always the same slide on the three view, and so, if yoy look carefully at the slide number (bottom right), it will not change until you reach the \end{frame} command
Now, technically, both are very versatile: you may use \invisible or \only in a block, or you may use a block or an \includeimage inside an \invisible or an \only. So for example you may, e.g. in your conclusion slide display progressively three blocks:
Here, note that I put \pause twice, because the blocks will be displayed in three time; this command is just there to tell beamer that despite the fact that I am going to click, it is not supposed to go to the next slide yet. I also coud displayed the third block before the second, just by putting \invisible<1-2> in front of the second, and \invisible<1> in front of the third.
Within the same block, you may also display your text progressively: