emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* handling notes/bibliography
@ 2007-07-13 22:47 francois
  0 siblings, 0 replies; only message in thread
From: francois @ 2007-07-13 22:47 UTC (permalink / raw)
  To: emacs-orgmode

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.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-07-13 22:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-13 22:47 handling notes/bibliography francois

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).