From mboxrd@z Thu Jan 1 00:00:00 1970 From: francois Subject: handling notes/bibliography Date: Fri, 13 Jul 2007 22:47:18 +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 1I9TvK-0002TJ-K1 for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 18:47:42 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I9TvJ-0002Sm-K3 for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 18:47:42 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I9TvJ-0002Sj-Gg for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 18:47:41 -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 1I9TvJ-0005dH-3i for emacs-orgmode@gnu.org; Fri, 13 Jul 2007 18:47:41 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I9Tv8-0000IW-Uf for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 00:47:31 +0200 Received: from 150.255.97-84.rev.gaoland.net ([84.97.255.150]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Jul 2007 00:47:30 +0200 Received: from francois.temp1 by 150.255.97-84.rev.gaoland.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Jul 2007 00:47:30 +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. Even if there is no perfect solution, I would like to get feedbacks from people using 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/article.pdf][AbibtexKey]] some notes * another article title [[file:///location/to/the/pdf/article/article.pdf][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 follow the link, i go to the attached notes, and may easily open the pdf article. To insert a reference, I use reftex and I 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.