From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Danenberg Subject: Re: org-exp-bibtex Date: Fri, 29 Jan 2010 06:24:41 -0600 Message-ID: <20100129122441.GA30190@klutometis.wikitex.org> References: <20100128162002.GA5393@klutometis.wikitex.org> <27753.1264696075@gamaville.dokosmarshall.org> <20100128232122.GC11759@klutometis.wikitex.org> <4A0F3CEB-52BB-4E87-ADBB-F94F933D3049@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NapuD-0007MF-Bf for emacs-orgmode@gnu.org; Fri, 29 Jan 2010 07:24:57 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NapuB-0007LT-G2 for emacs-orgmode@gnu.org; Fri, 29 Jan 2010 07:24:56 -0500 Received: from [199.232.76.173] (port=43417 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NapuA-0007LJ-RW for emacs-orgmode@gnu.org; Fri, 29 Jan 2010 07:24:54 -0500 Received: from klutometis.wikitex.org ([72.51.35.14]:44425) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NapuA-0007bS-B9 for emacs-orgmode@gnu.org; Fri, 29 Jan 2010 07:24:54 -0500 Content-Disposition: inline In-Reply-To: <4A0F3CEB-52BB-4E87-ADBB-F94F933D3049@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org > 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 .bib accompanies .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!