[email protected] writes:
>> Here is what I have in this variable for my letter class:
>>
>> ,----
>> | ("letter_private"
>> "\\documentclass[fontsize=11pt,strey_privat]{scrlttr2}\n\\LoadLetterOption{DIN}\n[NO-DEFAULT-PACKAGES]\n[PACKAGES]\n[EXTRA]"
>> | ("\\section{%s}" . "\\section*{%s}")
>> | ("\\subsection{%s}" . "\\subsection*{%s}")
>> | ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
>> `----
I think this letter class is wrong. Here is mine for beamer (note the
"\[" before the options to be substituted by the export process):
--8<---------------cut here---------------start------------->8---
(add-to-list 'org-latex-classes
'("beamer"
"\\documentclass[presentation]{beamer}
\[DEFAULT-PACKAGES]
\[PACKAGES]
\[EXTRA]"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
--8<---------------cut here---------------end--------------->8---
> Looking at how org produces the pdf file it uses the "nonstopmode" in
> the command line arguments to pdflatex. So when I used xelatex with this
> option:
>
> xelatex -interaction=nonstopmode test.tex
This tell latex to continue compiling even if there are errors. I'm not
sure you want to rely on this.
Alan