I am building a BibLaTeX style for Bookends (a sort of doomed effort, generally speaking, given the enormous number of required fields, far higher than the number of Bookends placeholders—but this is another issue altogether).
My definition for articles is the following:
Code: Select all
`@article{`w`,`
~author = {~a~}, ~
~translator = {~u3*~}, ~
~title = {~t~}, ~
{~shorttitle = {~s~}, ~^}
~titleaddon = {~u20~}, ~
~journaltitle = {~j~}, ~
~volume = {~v~}, ~
~number = {~i~}, ~
~date = {~d*~}, ~
~pages = {~p-~}, ~
~urldate = {~u4~}, ~
~editor = {~u8*~}, ~
~issuetitle = {~u12~}, ~
~publisher = {~u~}, ~
~url = {~z~}, ~
~month = {~u13~}, ~
~hyphenation = {~u16~}, ~
~note = {~u19~}, ~
~entrysubtype = {~u14~}~
`}`
¬
Code: Select all
@article{Winkler2006,
…
date = {2006},
…
}
Code: Select all
@article{Winkler2006,
…
date = {2006
…
}
Thanks.