diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-03-12 22:11:35 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-03-12 22:11:35 -0500 |
commit | e29293b313d6dae4066ffafd9b80695acb290526 (patch) | |
tree | a58087c82e77611628bdb8f92f7076ea7cbf9909 /lisp | |
parent | ba4882f8f15a50c4622cd5503f7864a267587190 (diff) | |
download | emacs.d-e29293b313d6dae4066ffafd9b80695acb290526.tar.gz |
bib: Shorten list of unimportant title words
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-bib.el | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/lisp/km-bib.el b/lisp/km-bib.el index 1795587..c94cc35 100644 --- a/lisp/km-bib.el +++ b/lisp/km-bib.el @@ -25,24 +25,9 @@ (require 'org) (defvar km/bibtex-unimportant-title-words - '("a" "aboard" "about" "above" "absent" "across" "after" "against" - "along" "alongside" "amid" "amidst" "among" "amongst" "an" "and" - "around" "as" "aslant" "astride" "at" "athwart" "atop" - "barring" "before" "behind" "below" "beneath" "beside" "besides" "between" - "beyond" "but" "by" "despite" "down" "during" "except" "failing" - "following" "for" "from" "in" "inside" "into" "like" - "mid" "minus" "near" "next" "nor" "notwithstanding" "of" "off" - "on" "onto" "opposite" "or" "out" "outside" "over" "past" - "per" "plus" "regarding" "round" "save" "since" "so" "than" - "the" "through" "throughout" "till" "times" "to" "toward" "towards" - "under" "underneath" "unlike" "until" "up" "upon" "via" "vs." - "when" "with" "within" "without" "worth" "yet") - "Words to ignore when running `km/bibtex-use-title-case'. -These are taken from -http://lanecc.libguides.com/content.php?pid=38483&sid=295540 and -have only been modified to remove duplicates. This means that -there are some unlikely words in there, but you never know when -the next article you read will have \"athwart\" in the title.") + '("a" "an" "and" "as" "at" "but" "by" "for" "in" "nor" + "of" "on" "or" "out" "so" "the" "to" "up" "yet") + "Words to ignore when running `km/bibtex-use-title-case'.") (defun km/bibtex-use-title-case () "Convert title of current BibTeX entry to title case. |