X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=org-ref.org;h=1776f66c8bd52525327423c462659621be6caf9e;hp=44aa74b7541844d857924bc3f64cd1fd6476c44c;hb=716e4f316ac36aa47d2234e9a626260bb055cd29;hpb=1ffc15fef433defae05f41f408d3d556eafb24c2 diff --git a/org-ref.org b/org-ref.org index 44aa74b..1776f66 100644 --- a/org-ref.org +++ b/org-ref.org @@ -371,6 +371,61 @@ The basic idea here is to get the mouse position, and if we can determine there #+RESULTS: : org-ref-mouse-messages-off +** Color-coded links +Here we make the org-ref links a different color. + +citations are green +refs are blue +labels are black + +mailto:john + +cite:sokalski-2012-optim-ta,zhang-2011-spatial-tio2,li-2012-heter-ceram,li-2013-photoc + +cite*:sokalski-2012-optim-ta,zhang-2011-spatial-tio2,li-2012-heter-ceram,li-2013-photoc + +citenum:sokalski-2012-optim-ta,zhang-2011-spatial-tio2,li-2012-heter-ceram,li-2013-photoc + +#+BEGIN_SRC emacs-lisp +(defcustom org-ref-colorize-links + nil + "When non-nil, change colors of links" + :group 'org-ref) + +(defcustom org-ref-cite-color + "forest green" + "Color of cite like links" + :group 'org-ref) + +(defcustom org-ref-ref-color + "royal blue" + "Color of ref like links" + :group 'org-ref) + +(defcustom org-ref-label-color + "black" + "Color of label links" + :group 'org-ref) + +(defvar org-ref-cite-re nil + "regexp for cite links") + +(setq org-ref-cite-re + (concat "\\(" (mapconcat 'identity org-ref-cite-types "\\|") "\\)" + ":\\([a-zA-Z0-9-_:]*,?\\)*")) + +(setq org-ref-cite-color "red" org-ref-colorize-links t) +(defface org-ref-cite-face + `((t (:inherit org-link :foreground "red"))) + "Color for cite links") + +(when org-ref-colorize-links + (highlight-regexp org-ref-cite-re 'org-ref-cite-face)) +#+END_SRC + +#+RESULTS: + + * Links Most of this library is the creation of functional links to help with references and citations. ** General utilities