Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.7 KiB

4 years ago
  1. ;;; org-ref.el --- citations, cross-references and bibliographies in org-mode
  2. ;; Copyright(C) 2014-2016 John Kitchin
  3. ;; Author: John Kitchin <jkitchin@andrew.cmu.edu>
  4. ;; URL: https://github.com/jkitchin/org-ref
  5. ;; Version: 1.1.1
  6. ;; Keywords: org-mode, cite, ref, label
  7. ;; Package-Requires: ((dash "2.11.0") (htmlize "1.51") (helm "1.5.5") (helm-bibtex "2.0.0") (ivy "0.8.0") (hydra "0.13.2") (key-chord "0") (s "1.10.0") (f "0.18.0") (emacs "24.4") (pdf-tools "0.7"))
  8. ;; This file is not currently part of GNU Emacs.
  9. ;; This program is free software; you can redistribute it and/or
  10. ;; modify it under the terms of the GNU General Public License as
  11. ;; published by the Free Software Foundation; either version 2, or (at
  12. ;; your option) any later version.
  13. ;; This program is distributed in the hope that it will be useful, but
  14. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ;; General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with this program ; see the file COPYING. If not, write to
  19. ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20. ;; Boston, MA 02111-1307, USA.
  21. ;;; Commentary:
  22. ;;
  23. ;; Lisp code to setup bibliography, cite, ref and label org-mode links.
  24. ;; Also sets up reftex and helm for org-mode citations. The links are
  25. ;; clickable and do things that are useful.
  26. ;;
  27. ;; The default setup uses helm-bibtex.
  28. ;; You should really read org-ref.org in this package for details.
  29. ;;
  30. ;;; Code:
  31. (require 'org-ref-core)
  32. (require org-ref-completion-library)
  33. ;;* The end
  34. (provide 'org-ref)
  35. ;;; org-ref.el ends here