Variable: bib-assoc
bib-assoc is a variable defined in bib-mode.el.gz.
Value
((" *$" . "%A ") ("%A ." . "%A ") ("%A $" . "%T ") ("%T " . "%D ")
("%D " . "%J ") ("%J ." . "%V ") ("%V " . "%N ") ("%N " . "%P ")
("%P " . "%K ") ("%K " . "%W ") ("%W " . "%X ") ("%X " . "")
("%J $" . "%B ") ("%B ." . "%E ") ("%E ." . "%E ") ("%E $" . "%I ")
("%I " . "%C ") ("%C " . "%P ") ("%B $" . "%R ") ("%R " . "%I "))
Documentation
Describes bibliographic database format.
A line beginning with the car of an entry is followed by one beginning with the cdr.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bib-mode.el.gz
(defconst bib-assoc
'((" *$" . "%A ")
("%A ." . "%A ")
("%A $" . "%T ")
("%T " . "%D ")
("%D " . "%J ")
("%J ." . "%V ")
("%V " . "%N ")
("%N " . "%P ")
("%P " . "%K ")
("%K " . "%W ")
("%W " . "%X ")
("%X " . "")
("%J $" . "%B ")
("%B ." . "%E ")
("%E ." . "%E ")
("%E $" . "%I ")
("%I " . "%C ")
("%C " . "%P ")
("%B $" . "%R ")
("%R " . "%I "))
"Describes bibliographic database format.
A line beginning with the car of an entry is followed by one beginning
with the cdr.")