Ryan and Debi & Toren

Ubuntu: How to save handouts in OpenOffice Impress as PDFs

I’m not a computer programmer (sometimes I wish I was), so I’m going to guess that implementing the ability to save handouts as PDFs in OpenOffice.org’s Impress (OpenOffice’s version of Powerpoint) may be a very challenging programming task.  For those who have never used OpenOffice, one of its greatest features is the built-in ability to save documents as PDFs.  You can save your slides in Impress as PDFs, but if you want to put multiple slides on one page with lines for notes for your students (which is what I do with my discussion notes), there isn’t a way to directly export those handouts as PDFs.  You can customize the handouts, which is a very nice feature, but you can’t save them to PDF.

However, there is a way to work around this limitation.  It’s actually quite simple, but it took me about 30 minutes to figure out.  So, here’s another Ubuntu how to.

First, you need to install a PDF printer in Ubuntu.  This is actually quite easy, though I recommend you do it from the command line as it is even easier this way.  So, pull up a terminal and type:

sudo apt-get install cups-pdf
mkdir ~/PDF
sudo chmod u+x,a+x,+s /usr/lib/cups/backend/cups-pdf
sudo /etc/init.d/cups restart

(I found the above here.)

What does the above do?  First, it installs the CUPS PDF printer.  Second, it makes a directory in your “home” directory called “PDF,” which is where the PDF printer will send your documents when they are printed.  Third, and this is the part that is difficult to do from anywhere other than the command line, it adds access to the CUPS PDF printer to your User.  If you don’t do that, you can’t access the printer.  The last line simply restarts the CUPS printer.

You now have done the hardest part.  The next part is simply to set up your handouts in OpenOffice Impress:

Once you’ve done that, go up to “File->Print”.  Choose the “PDF” printer.  Then choose “handout” in the middle of the window and how many slides you want per page:

When you’re ready, hit “OK”.  Now, go check the “PDF” folder in your “home” directory and you should see a PDF there with the handouts.  Voila!  You can now create PDFs of handouts in Impress.

Notes:

1) You can set the printer to print in color by clicking on the “Properties” tab.  It’s set to print in “grayscale” by default.

2) You can also set the PDF printer as the default printer in Ubuntu.  Go to “System->Administration->Printing.”  You should see the PDF printer.  Right-click it and set as default.

3) Microsoft’s Powerpoint can’t do this either.  You have to install a PDF printer in Microsoft’s Powerpoint to achieve the same effect.

4) I have received an error after doing this before.  Apparently there was a “security” issue in that the PDF printer didn’t have some rights to access files.  The error said “cups-insecure-filter.”  I fixed this using these directions:

Open a terminal and type the following:

sudo chown -hR root /usr/lib/cups/filter
sudo chown -hR root /usr/lib/cups/backend
sudo chgrp -hR root /usr/lib/cups/filter
sudo chgrp -hR root /usr/lib/cups/backend

Exit mobile version