summaryrefslogtreecommitdiff
path: root/lisp/init-bib.el
blob: 7d91e93eaa076956ccbc974a7432b596a064815d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; Make cite key have form <last author last name><year><first word>.
(setq bibtex-autokey-year-length 4)
(setq bibtex-autokey-titleword-length nil)
(setq bibtex-autokey-titlewords-stretch 0)
(setq bibtex-autokey-titlewords 1)
(setq bibtex-autokey-year-title-separator "")

(setq bibtex-autokey-titleword-ignore
      '("A" "An" "On" "The" "Why" "How" "Where" "[0-9].*"))

;; Used by `bibtex-fill-entry'.
(setq bibtex-align-at-equal-sign t)

(provide 'init-bib)