From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Error exporting to temp buffer Date: Thu, 19 Mar 2009 18:36:08 -0400 Message-ID: <11742.1237502168@alphaville.usa.hp.com> References: <83tz5qgic0.fsf@cam.ac.uk> <20090319215914.GA4933@thinkpad> <8763i5p3jk.fsf@kassiopeya.MSHEIMNETZ> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LkQrp-00058H-Sp for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 18:37:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LkQrl-00055H-6Y for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 18:37:37 -0400 Received: from [199.232.76.173] (port=45505 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LkQrl-000558-1t for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 18:37:33 -0400 Received: from g5t0007.atlanta.hp.com ([15.192.0.44]:10745) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LkQrk-00006Q-MF for emacs-orgmode@gnu.org; Thu, 19 Mar 2009 18:37:32 -0400 In-Reply-To: Message from Sebastian Rose of "Thu, 19 Mar 2009 23:10:23 BST." <8763i5p3jk.fsf@kassiopeya.MSHEIMNETZ> 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: Sebastian Rose Cc: emacs-orgmode@gnu.org Sebastian Rose wrote: > David Maus writes: > > Cannot reprocude this either. C-x b org-bug , paste sample, C-c C-e > > H gives an *Org HTML Export* buffer with the exported sample. > > Same here. > > Same here, but I was wondering: the function that Leo fingers looks like this ,---- | (defun org-export-html-preprocess (parameters) | ;; Convert LaTeX fragments to images | (when (plist-get parameters :LaTeX-fragments) | (org-format-latex | (concat "ltxpng/" (file-name-sans-extension | (file-name-nondirectory | org-current-export-file))) | org-current-export-dir nil "Creating LaTeX image %s")) | (message "Exporting...")) `---- and when I step through it, the when expression evaluates to nil, so the whole thing is skipped. So it may be some setting in Leo's setup or maybe something is missing from the fragment, that would make that expression non-nil. So my question is: What do I have to do to make (plist-get parameters :LaTeX-fragments) non-nil? Nick