Skip to content

[Leo's fork of] BibRetrieve: An Emacs library for searching and downloading BibTeX entries from the web.

License

Notifications You must be signed in to change notification settings

duetosymmetry/bibretrieve

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is the README file for Leo's fork of BibRetrieve.

Requirements

AUCTeX 11.87 is needed to run the current version of bibretrieve.

Installation

  • Clone the repository:
mkdir -p ~/.emacs.d
cd ~/.emacs.d
git clone git://github.com/pzorin/bibretrieve.git
  • Add instructions e.g. to init.el to load BibRetrieve:
(add-to-list 'load-path "~/.emacs.d/bibretrieve")
; Recompile if .el is newer than .elc
(byte-recompile-directory "~/.emacs.d/bibretrieve" 0)
(load "bibretrieve")

Usage

M-x bibretrieve or C-u M-x bibretrieve.

Configuration

BibRetrieve can be configured with customize, but it is probably easier to edit e.g. init.el directly.

To configure the backends used, set the variable bibretrieve-backends. This is an alist with the names of the backends as keys and the timeouts as values. The default configuration is:

(setq bibretrieve-backends '(("mrl" . 10) ("arxiv" . 5) ("zbm" . 5)))

The following backends are included in the repository.

Backend Key
ADS "ads"
MathSciNet "msn"
Citebase "citebase"
Inspire "inspire"
Zentralblatt MATH "zbm"

If you want to add a backend, read the Commentary section in the source file bibretrieve.el.

Network requests are handled by mm-url, by default this uses the library url. If you want to use an external program, like wget or curl, put it in the variable mm-url-program and set the variable mm-url-use-external to t.

Acknowledgments

This program has been inspired by bibsnarf. The functions that create the urls for most backends are taken from there.

This programs also uses lot of function of RefTeX. The selection process is entirely based on reftex-sel. Many function have also been adapted from there.

About

[Leo's fork of] BibRetrieve: An Emacs library for searching and downloading BibTeX entries from the web.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Emacs Lisp 100.0%