From a271b9a757feed4271b499aead291177afb66fef Mon Sep 17 00:00:00 2001 From: Jonas Kulhanek Date: Tue, 10 Dec 2019 11:26:41 +0100 Subject: [PATCH] Fix config spec for citekey generation --- pubs/config/spec.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pubs/config/spec.py b/pubs/config/spec.py index a067ed4..42097ad 100644 --- a/pubs/config/spec.py +++ b/pubs/config/spec.py @@ -40,6 +40,8 @@ normalize_citekey = boolean(default=False) # %A: last name of the first author in PascalCase # %Y: four letter year of release (e.g. 2019) # %y: two last letters of release year (e.g. 19) +# %w: first word in the title in lowercase +# %W: first work in the title citekey_format = string(default='%a%Y') [formating]