Dual head presentation of pdfs created with latex beamer class

I am using Latex for assignments, papers and presentations quite a long time. However, until recently, I did not know a solution for dual head presentation of pdfs created with the latex beamer class.
This changed with the finding of Impressive. So if you want to create a pdf with notes on the second screen you first have to set up your beamer class like this:

\documentclass{beamer}
 
\usepackage[utf8x]{inputenc}
\usepackage{default}
\usepackage{pgfpages} %This is needed for notes presentation!
\setbeameroption{show notes on second screen}
 
\begin{document}
 \begin{frame}
 \frametitle{Note Test}
   This is the frame text
  \note[item]{Note for a itemized note list}
  \note{Note for a continuous note text}
 \end{frame}
\end{document}

 

After that install impressives requirements and impressive itself. Then the following command will start the presentation on a beamer and notebook both with a 1024x768 resolution:

 ./impressive.py -g 2048x768 "pdfname.pdf"

Normally notes will be rendered on the right screen. So you have to set up the beamer as "left of" your notebook. With xrandr this can be accomplished like this or similar depending on your available outputs:

 xrandr --output VGA1 --left-of LVDS1 --output LVDS1 --mode 1024x768

Be sure to use the same aspect ratio and resolution on notebook and beamer. Otherwise you will get cropped slides and/or black borders.

Update: Someone pointed me to this useful article which achieved similar results by only using XrandR's scaling and positioning parameters.

Happy presenting!
Phillip

Hint

Maybe the following paper will be helpful:

http://tug.org/pracjourn/2010-1/dohmen

Thank you for the hint

Thank you for the hint. I added it to the end of the article.

Post new comment

  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • Email addresses and mailto: links will be obfuscated to hide them from spambots but still be readable to javascript-enabled browsers.
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <drupal5>, <drupal6>, <javascript>, <php>, <python>, <ruby>. The supported tag styles are: <foo>, [foo].
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.