diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-08 00:33:52 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-08 00:33:52 -0500 |
commit | 8f4381025f64ff2ab59c60b65dc5ac42c9276a5b (patch) | |
tree | 88452833e111efac3596430b942f23651c8e6fae /bog.el | |
parent | 3c7d5239355f37af89f47b1808f02c05e58277b7 (diff) | |
download | bog-8f4381025f64ff2ab59c60b65dc5ac42c9276a5b.tar.gz |
DOC: Provide bibtex-autokey settings
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -41,9 +41,20 @@ (defcustom bog-citekey-format "\\([0-9]*[a-z]+[-a-z]*\\)\\([0-9]\\{4\\}\\)\\([a-z]+\\)" "Regex used to match study citekey. + By default, this matches any sequence of lower case letters (allowing hyphenation) that is followed by 4 digits and -then lower case letters." +then lower case letters. + +The default format corresponds to the following BibTeX autokey +settings: + + (setq bibtex-autokey-year-length 4 + bibtex-autokey-titleword-length nil + bibtex-autokey-titlewords-stretch 0 + bibtex-autokey-titlewords 1 + bibtex-autokey-year-title-separator \"\") +" :group 'bog :type 'string) |