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.
Thanks for describing this -- it works great!
The \end{slide} issue is a drag though. In fact, I'm now wondering if it's possible to have a backward compatible change to org-export-latex-classes that adds optional 3rd and 4th sectioning strings to close each section so that the structure is:
(class-name
header-string
(unnumbered-section numbered-section
[unnumbered-section-close numbered-section-close])
...)