• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/textmodes/

Lines Matching defs:year

230        ("year" "Year of publication"))
240 ("year" "Year of publication")
250 ("year" "Year of publication"))
262 ("year" "Year of publication")
276 ("year" "Year of publication")
284 ("year" "Year of publication"))
300 ("year" "Year of publication")
314 ("year" "Year of publication"))
331 ("year" "Year of publication")
346 ("year" "Year of publication"))
361 ("year" "Year of publication")
378 ("year" "Year of publication")
384 ("year" "Year of publication"))
395 ("year" "Year of publication")
401 ("year" "Year of publication"))
408 ("year" "Year of publication"))
423 ("year" "Year of publication"))
434 ("year" "Year of publication")))))
671 (defcustom bibtex-autokey-year-length 2
672 "Number of rightmost digits from the year field to incorporate into key.
764 (defcustom bibtex-autokey-name-year-separator ""
765 "String to be put between name part and year part of key.
770 (defcustom bibtex-autokey-year-title-separator ":_"
771 "String to be put between name part and year part of key.
2143 (defun bibtex-autokey-get-year ()
2144 "Return year field contents as a string obeying `bibtex-autokey-year-length'."
2145 (let ((yearfield (bibtex-autokey-get-field "year")))
2147 bibtex-autokey-year-length)))))
2207 Use the author/editor, the year and the title field.
2228 The year part:
2229 1. Build the year part of the key by truncating the content of the year
2230 field to the rightmost `bibtex-autokey-year-length' digits (useful
2232 2. If the year field (or any other field required to generate the key)
2259 1. Concatenate `bibtex-autokey-prefix-string', the name part, the year
2260 part and the title part. If the name part and the year part are both
2261 non-empty insert `bibtex-autokey-name-year-separator' between the two.
2262 If the title part and the year (or name) part are non-empty, insert
2263 `bibtex-autokey-year-title-separator' between the two.
2271 (year (bibtex-autokey-get-year))
2276 (equal year ""))
2277 bibtex-autokey-name-year-separator)
2278 year
2280 (equal year ""))
2282 bibtex-autokey-year-title-separator)
2594 (bibtex-autokey-year-length 4)
2595 (year (bibtex-autokey-get-year))
2609 `((" " . ,names) (" " . ,year) (": " . ,title)
2972 entry (for example, the year parts of the keys)."