On Sep 26, 2008, at 6:33 PM, Russell Adams wrote:

I've gotten a basic export to Prosper working for a presentation I'm
writing to give this weekend.

Here is the extra portion for .emacs:
(setq org-export-latex-classes (cons '("prosper"
   "% BEGIN Prosper Defaults
\\documentclass[pdf, contemporain]{prosper}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage[colorlinks,linkcolor=blue]{hyperref}
% END Prosper Defaults

"
   ("\\begin{slide}{%s}" . "\\begin{slide}{%s}"))
                                   org-export-latex-classes))

Unfortunately it doesn't appear that I can add a closure for the
slide, so a manual "\end{slide}" must go at the end of each.

As a hack, until we get around to define a closure: I guess you could live with a single empty first slide?

Then you can do


("\\end{slide}\n\\begin{slide}{%s}" . "\\end{slide}\n\\begin{slide} {%s}"))
                                   org-export-latex-classes))

And just put a single \begin{slide} at the beginning and a single \end{slide} at the end.....

- Carsten


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to