TransWikia.com

Is there a specialized Pdf viewer for Latex-Beamer presentations on Linux?

TeX - LaTeX Asked by con-f-use on June 29, 2021

Most of the time when presenting a talk people connect their laptop to a video projector. So they effectively have an extra screen at their disposal. Because of that many Software options for presentations use the extra screen of the laptop to display notes, time left for the talk, a preview of the next slide and such information to the presenter.

I’m using LaTeX-Beamer which outputs a pdf. I’d like to have notes, a preview of the next slide and the time I have left for my talk displayed to me on the laptop screen, while the projector shows the regular presentation slides.

Ideally this program should work under Linux (Ubuntu 12.04). Does such a program exist?

11 Answers

So pdfpc on github (which is a forked and improved version of the pdf-presenter-console) is the closest thing I found.

Features

It has all the features I looked for. Regular slides on the projector, view of the next slide and the current one on the laptop. It pre-caches the slides for fast switch and can provide an overview with thumbnails for each slide (quick selection). It also plays videos. With the n one can edit notes that are stored in a text file in the same directory as the PDF, or it can show beamer slides on the side screen.

Usage

To use, one has to invoke pdfpc with a PDF file like this in terminal:

pdfpc presentation.pdf

Of course one can add it to the list of applications to open PDF's with in your file-manager to make it easier. There are command line options to interchange screens, set the timer, and have it count down instead of up.

The rest is straight forward and documented in the man pages. Ubuntu man-pages are outdated, so one should consult the man pages on the site. I made a request for importing LaTeX-Beamer notes.

The latest version (4.0 and up) supports LaTeX-Beamer notes. Just use --notes={left,right,top,bottom} to match the setting in your "beamer" document:

usepackage{pgfpages}
setbeameroption{show notes}
setbeameroption{show notes on second screen=right}

With the above, you would use --notes=right.

Installation / Compilation

For Windows PCs it might be a pain in the rear to compile, since the requirements state:

  • Vala Compiler Version >=0.11.0
  • Gnu compiler collection
  • CMake Version >=2.6
  • Gtk+ 2.x
  • libPoppler with glib bindings

Which is a handful to install and get running. For Ubuntu, other Debian distros and Arch, it's a piece of cake as there are packages in the repositories.

Correct answer by con-f-use on June 29, 2021

Browsing around this morning, I came across pympress.

It is cross-platform as it is written in python, and has the presenter look & feel you're looking for, with a window to show slides on screen and another for your laptop with time, slide numbers, next slide preview, annotations, etc.

A few other nice features are native support for beamer notes on second screen, embedded videos, and more.

Answered by Thomas Arildsen on June 29, 2021

In case you're still interested, I have written a small viewing application in C++, called "dspdfviewer" for "Dual-Screen PDF Viewer".

Its built specifically for latex-beamer, and it's "show notes on second screen" option. This latex-beamer option will give you a double-width PDF, where the right part are your beamer-notes, and the right part can include a small preview of the current/next page. Check out the beamerguide for details. Only, I did not find a viewing application to correctly display those kinds of PDFs.

My program splits the PDF file in half and renders the left half in fullscreen on the "primary" screen (intended for the audience) and the second half together with some timers on the "secondary" screen (your notebook for example).

It currently works with Debian wheezy, and Ubuntu 11.10 (Oneiric) and newer.

You can download it for Ubuntu on the ppa https://launchpad.net/~dannyedel/+archive/dspdfviewer

The sourcecode is available at https://github.com/dannyedel/dspdfviewer, and the documentation is available as man page (included in the deb packages as "man dspdfviewer").

Answered by Danny Edel on June 29, 2021

I tested only a few minutes, but it is worth to take a look to

Impressive - Is a presentation program that displays slideshows of image files (JPEG, PNG, TIFF and BMP) or PDF documents. Rendering is done via OpenGL, which allows for some "eye candy" effects.

Installation is simply apt-get install impressive in Debian based distributions. Complete features are better explained in impressive -h,man impressive and impressive /usr/share/doc/impressive/demo.pdf but off the top of my head there are options for automatically advance, show timer an progress bar, control display aspect ratio, background rendering (by default active), cache modes, rotating, scaling and shuffling pages, use a custom cursor, make transitions, etc.

I have found mostly interesting the possibility of highlight boxes with the mouse during the presentation and even save and restore this for a second session as well as the spot light mode (a highlight circle around the mouse) and the overview mode (with Tab to quickly select a thumbnail with the mouse) , but you can also include options to include sound and videos, adjust gamma and black level with options or sort keys, mark pages with the skip flag, etc.

Answered by Fran on June 29, 2021

There is also slider which is designed to be lightweight and specialised. It is designed to allow the use of notes on a second screen etc. Since it is relatively new, it may be worth watching even if a feature you need isn't yet currently implemented. (It has changed quite a lot since I started playing with it.)

Answered by cfr on June 29, 2021

My favorite pdf reader is Mupdf: (1) Firstly, the rendering of the popler-engine used in most pdf-viewers is horribly and mupdf's rendering is far superior (2) it's the reference pdf-viewer from ghostscript project

(3) Is quite easy to use it just with a keyboard (what makes the mupdf-pdf-viewer (and onmupdf based reader)) great for presentations

Answered by jlk on June 29, 2021

As of September 2017 under opensuse, Leap 42.3, I googled again for a PDF viewer which allows to use the second screen option of beamer.

MuPDF doesn't support a second screen with notes at all. dspdfviewer wasn't available as a package for opensuse, so I didn't try. pdfpc worked out of the box, but you can't play embedded content, e.g. a video from it, if the video was linked with this command (given in the beamer manual, but see the comment of giordano below):

  movie[externalviewer]{includegraphics[width=0.87textwidth,angle=180]{IMG-0898}}{IMG-0899.mkv}

Finally I came across pympress, which turned out to be under active development. I installed it as root from command line:

python3 -m pip install pympress

pympress started my video and I'll invest some more time testing it.

Answered by Keks Dose on June 29, 2021

I made a web-based viewer which simply opens the slides and the notes on separate windows, keeping them in sync. The windows can be moved freely and expanded (F11) on another monitor like any window.

It accepts double-width LaTeX-Beamer PDFs which can be generated using setbeameroption{show notes on second screen=right}.

The application works in a web browser and doesn't require any installation. The PDF is rendered locally and the app can work offline (kept in the browser's cache). It has been tested with recent versions of Firefox (61) and Chrome (67).

It is available at https://beamerviewer.pacien.org/. A demo can also be found here.

The source code is available on this GitHub repository.

Answered by Pacien on June 29, 2021

I wrote a tool called BeamerPresenter (based on QT5 and poppler), which shows presentation and notes for the speaker in two separate windows. Presentation and notes can be provided as two separate pdf files or as a single file with the LaTeX beamer option “show notes on second screen”.

It supports multimedia content, animations (by showing slides in rapid succession), slide transitions, special treatment of overlays and prerendering of slides to cache. For the speaker it offers navigation by scrolling, key bindings (aware of overlays), a table of contents and an overview of the slides.

Answered by phys-pol on June 29, 2021

I found the 'PDF Presenter Console' in the Ubuntu Software Center, works well for me with showing next slide and time!

Edit: Here is a screenshot of how it looks on my 2 screens: enter image description here

Answered by Leanora on June 29, 2021

I used okular.

sudo apt update
sudo apt install okular

Open the pdf presentation and use "presentation mode" as View >> Presentation. You are good to go. With this I can play my mp4 and other animations as well.

Answered by Mujib on June 29, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP