From mboxrd@z Thu Jan 1 00:00:00 1970 From: francois.lagarde@cea.fr (=?iso-8859-1?Q?Fran=E7ois?= Lagarde) Subject: dealing with a bibliography Date: Fri, 13 Jul 2007 15:53:13 +0200 Message-ID: <87ejjcz9yu.fsf@is003308.saclay.cea.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I9LcF-0006EO-0N for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 09:55:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I9LcD-0006Av-3F for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 09:55:25 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I9LcD-0006Ag-0T for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 09:55:25 -0400 Received: from cirse.extra.cea.fr ([132.166.172.102]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I9LcC-0006nL-F6 for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 09:55:24 -0400 Received: from nephilia.intra.cea.fr (nephilia.intra.cea.fr [132.166.88.33]) by cirse.extra.cea.fr (8.13.8/8.13.8/CEAnet-Internet.7.0) with ESMTP id l6DDtHdx024368 for ; Fri, 13 Jul 2007 15:55:17 +0200 Received: from muguet2.intra.cea.fr (muguet2.intra.cea.fr [132.166.192.7]) by nephilia.intra.cea.fr (8.13.8/8.13.8) with ESMTP id l6DDtH9L015594 for ; Fri, 13 Jul 2007 15:55:17 +0200 (envelope-from francois.lagarde@cea.fr) Received: from is003308.saclay.cea.fr (is003308.saclay.cea.fr [132.166.134.48]) by muguet2.intra.cea.fr (8.13.8/8.13.8/CEAnet-Intranet-out-1.0) with ESMTP id l6DDtG5r032154 for ; Fri, 13 Jul 2007 15:55:16 +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, Writing a draft of a article and handling bibliography and attached notes is always difficult for me. Even if there is no perfect solution, I would like= to get feedbacks on how do people use org to deal with that. Currently, my organisation is the following: - I have a bibtex file. - I have another file where are lectures/notes on *all* articles. the structure is the following: --8<------ myNotes.org * article title [[file:///location/to/the/pdf/article/][Abibtexkey]] some notes * another article title [[file:///location/to/the/pdf/article/][AnotherBibtexkey]] some notes --- Now when i want to make a draft of a article, i create a new org file. And = use reftex to query/navigate my bibliography.bib --8<----- myDraft.org #+LINK: bib file:~/path/to/the/bibfile.bib::%s #+LINK: note file:~/path/to/the/myNotes.org::%s # \bibliography{biblio} to tell to reftex what is the bibliography file related work [[note::Abibtexkey]] --- now when I open the link I directly go the attached notes, and may easily o= pen the article. To insert a reference, I use reftex and customized the citation format: (defun my-org-mode-setup () (when (and (buffer-file-name) (file-exists-p (buffer-file-name))) (load-library "reftex") (and (buffer-file-name) (file-exists-p (buffer-file-name)) (reftex-parse-all)) (reftex-set-cite-format '((?b . "[[bib::%l]]") (?n . "[[note::%l]]")))) (define-key org-mode-map "\C-c\C-g" 'reftex-citation) ) (add-hook 'org-mode-hook 'my-org-mode-setup) hoping that it may be helpful. --=20 Fran=E7ois