File Renaming using {{ first Page }} and {{ journalAbbreviation }}
I like to name my files like so:
{{ authors max="1" suffix="_" }}
{{ journalAbbrevation case="camel" }}
{{ volume }}
{{ year prefix="(" suffix=")" }}
{{ firstPage }} {{ title truncate="100" }}
However, I find that the firstPage and journalAbbreviation fields are often not populated, so this template does not work right away, unfortunately.
Conceivably, when these fields are empty, the firstPage could be derived from {{ pages }}, and the journalAbbreviation from {{ publicationTitle }}, automagically - would that be a useful improvement/enhancement?
(For firstPage I can come up with something like {{ pages replaceFrom="-.*" replaceTo="" }} as a fix, plus but no such simple workaround for the short journal name... and it looks clumsy, with the conditional to check for empty firstPage...)
{{ authors max="1" suffix="_" }}
{{ journalAbbrevation case="camel" }}
{{ volume }}
{{ year prefix="(" suffix=")" }}
{{ firstPage }} {{ title truncate="100" }}
However, I find that the firstPage and journalAbbreviation fields are often not populated, so this template does not work right away, unfortunately.
Conceivably, when these fields are empty, the firstPage could be derived from {{ pages }}, and the journalAbbreviation from {{ publicationTitle }}, automagically - would that be a useful improvement/enhancement?
(For firstPage I can come up with something like {{ pages replaceFrom="-.*" replaceTo="" }} as a fix, plus but no such simple workaround for the short journal name... and it looks clumsy, with the conditional to check for empty firstPage...)