Creating a Presentation with LaTeX Beamer – Including Images from Graphics Files

August 7th, 2010

It will often be more efficient to generate graphics in an external software package and then include these files in a LaTeX beamer presentation. The standard LaTeX approach to including graphics can be utilised to perform this task.


Fast Tube by Casper

The graphicx is useful for including graphics files in a presentation and this package has a command \includegraphics where we specify the name of the image file to be included and (optionally) some formatting information such as the dimensions of the image in our document.

As an example if we wanted to include a jpg file then we would include a command like this:

\includegraphics{plot}

and if we wanted to scale in the horizontal or vertical dimension then we can specify the height and width to use:

\includegraphics[height=8cm,width=12cm]{plot}

There are other options as part of the graphicx package that can be used to adjust the display of the image as required.

Other useful resources are provided on the Supplementary Material page.

4 responses to “Creating a Presentation with LaTeX Beamer – Including Images from Graphics Files”

  1. aL3xa says:

    Great tutorial, bad Supplementary Material link! =)
    Remove form href = “”
    this is a correct link: http://www.wekaleamstudios.co.uk/supplementary-material/

  2. Ralph says:

    Thank you for pointing that out. Not sure why that link wasn’t working properly.

  3. aL3xa says:

    You have very strict HTML syntax remover! =) Line break was inserted in the href attribute of the link!

  4. Ralph says:

    Indeed. It also didn’t help that I was copying and paste the code from post to post so repeating the mistake. 🙂