j14159 / paper-reading

Notes and bibliography for reading papers with Emacs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Papers and Notes

Bibliography and notes for attempting an Emacs-based paper reading process. Based on the following:

My initial .emacs additions for this are as follows:

(setq org-ref-bibliography-notes "~/Documents/papers/notes/notes.org"
      org-ref-default-bibliography '("~/Documents/papers/references/references.bib")
      org-ref-pdf-directory "~/Documents/papers/pdfs/")

(setq bibtex-completion-bibliography
      '("~/Documents/papers/references/references.bib"))

(setq bibtex-completion-library-path '("~/Documents/papers/pdfs"))

(setq helm-bibtex-notes-path "~/Dropbox/papers/notes/notes.org")

(add-to-list 'auto-mode-alist '("\\.pdf\\'" . pdf-view-mode))

(add-hook 'bibtex-mode-hook (lambda () (local-set-key (kbd "C-c b") 'helm-bibtex)))
(add-hook 'bibtex-mode-hook (lambda () (local-set-key (kbd "C-c n") 'org-ref-open-bibtex-notes)))
(add-hook 'org-mode-hook (lambda () (local-set-key (kbd "C-c i") 'interleave-mode)))
(add-hook 'pdf-view-mode-hook (lambda () (linum-mode -1)))

About

Notes and bibliography for reading papers with Emacs.


Languages

Language:TeX 100.0%