Variable: org-bibtex-tags-are-keywords
org-bibtex-tags-are-keywords is a customizable variable defined in
ol-bibtex.el.gz.
Value
nil
Documentation
Convert the value of the keywords field to tags and vice versa.
When non-nil, comma-separated entries in a bibtex entry's keywords field will be converted to Org tags. Note: spaces will be escaped with underscores, and characters that are not permitted in Org tags will be removed.
When non-nil, local tags in an Org entry will be exported as
a comma-separated string of keywords when exported to bibtex.
If org-bibtex-inherit-tags is non-nil, inherited tags will also
be exported as keywords. Tags defined in org-bibtex-tags or
org-bibtex-no-export-tags will not be exported.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol-bibtex.el.gz
(defcustom org-bibtex-tags-are-keywords nil
"Convert the value of the keywords field to tags and vice versa.
When non-nil, comma-separated entries in a bibtex entry's keywords
field will be converted to Org tags. Note: spaces will be escaped
with underscores, and characters that are not permitted in Org
tags will be removed.
When non-nil, local tags in an Org entry will be exported as
a comma-separated string of keywords when exported to bibtex.
If `org-bibtex-inherit-tags' is non-nil, inherited tags will also
be exported as keywords. Tags defined in `org-bibtex-tags' or
`org-bibtex-no-export-tags' will not be exported."
:group 'org-bibtex
:version "24.1"
:type 'boolean)