[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] Re: org mode and reftex
From: |
francois |
Subject: |
[Orgmode] Re: org mode and reftex |
Date: |
Fri, 13 Jul 2007 11:16:55 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Carsten Dominik <dominik <at> science.uva.nl> writes:
> How about
> (and (buffer-file-name)
> (file-exists-p (buffer-file-name))
> (reftex-parse-all))
hi,
I have still the same error. It seems that the cause is not reftex-parse-all.
Even removed, i am facing with same problem. Here is my minimalist
org-mode-setup hook.
(defun my-org-mode-setup ()
(load-library "reftex")
(reftex-set-cite-format
'((?b . "[[bib::%l]]")
(?n . "[[note::%l]]")
(?c . "\\cite{%l}")))
(define-key org-mode-map "\C-c\C-g" 'reftex-citation)
(flyspell-mode)
)
did I do something wrong?