From mboxrd@z Thu Jan 1 00:00:00 1970 From: francois Subject: org mode and reftex Date: Thu, 12 Jul 2007 14:34:16 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8zuq-0007zP-Gc for emacs-orgmode@gnu.org; Thu, 12 Jul 2007 10:45:12 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8zup-0007xu-Pe for emacs-orgmode@gnu.org; Thu, 12 Jul 2007 10:45:12 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8zup-0007xe-Lg for emacs-orgmode@gnu.org; Thu, 12 Jul 2007 10:45:11 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I8zup-0004hj-6v for emacs-orgmode@gnu.org; Thu, 12 Jul 2007 10:45:11 -0400 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1I8zug-00068l-98 for emacs-orgmode@gnu.org; Thu, 12 Jul 2007 16:45:03 +0200 Received: from is003308.intra.cea.fr ([132.166.134.48]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Jul 2007 16:45:02 +0200 Received: from francois.temp1 by is003308.intra.cea.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Jul 2007 16:45:02 +0200 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: emacs-orgmode@gnu.org hello, I use org 5.02/GNU Emacs 22.0.91.1 I configured reftex to handle my biblio. It inserts a citation in this way [[bib:myKey]] where #+LINK: bib file:~/mydocs/mybib.bib::%s To customize this citation I have defined in my .emacs (defun my-org-mode-setup () (load-library "reftex") (reftex-parse-all) ; to make reftex aware of the biblio ; # \bibliography{biblio} (reftex-set-cite-format '((?b . "[[bib::%l]]") (?n . "[[note::%l]]") (?c . "\\cite{%l}"))) (define-key org-mode-map "\C-c\C-g" 'reftex-citation) ) everything works fine. but when I export my file to any format, some reftex functions appear to be triggered and returns me this message: Loading reftex...done reftex-TeX-master-file: Need a filename for this buffer, please save it first any idea? I do not know if this problem concerns more org than reftex..