> No, just requiring should do the trick. Can you check if > org-export-bibtex-preprocess does indeed end up in the hook?
It does now, inexplicably; thank you. And using the following code, I can process the doc with xelatex and bibtex (provided that <file>.bib accompanies <file>.org): (require 'org-latex) (setq org-export-latex-classes (cons '("article" "\\documentclass{article} \\usepackage{amsmath} \\usepackage{amssymb} \\usepackage{xunicode} \\usepackage{fixltx2e} \\usepackage{xltxtra} \\usepackage{graphicx} \\usepackage{longtable} \\usepackage{float} \\usepackage{wrapfig} \\usepackage{soul} \\usepackage{hyperref}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) org-export-latex-classes)) (setq org-latex-to-pdf-process '("xelatex -interaction nonstopmode %b" "bibtex %b" "xelatex -interaction nonstopmode %b" "xelatex -interaction nonstopmode %b")) This is fantastic! _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode