Function: org-bibtex-check

org-bibtex-check is an interactive and byte-compiled function defined in ol-bibtex.el.gz.

Signature

(org-bibtex-check &optional OPTIONAL)

Documentation

Check the current headline for required fields.

With prefix argument OPTIONAL also prompt for optional fields.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol-bibtex.el.gz
(defun org-bibtex-check (&optional optional)
  "Check the current headline for required fields.
With prefix argument OPTIONAL also prompt for optional fields."
  (interactive "P")
  (save-restriction
    (org-narrow-to-subtree)
    (let ((type (let ((name (org-bibtex-get org-bibtex-type-property-name)))
                  (when name (intern (concat ":" name))))))
      (when type (org-bibtex-fleshout type optional)))))