emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] handling notes/bibliography


From: francois
Subject: [Orgmode] handling notes/bibliography
Date: Fri, 13 Jul 2007 22:47:18 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.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.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]