Bibliography formatter syntax: A question about dates
Posted: Tue Mar 05, 2013 5:10 am
Hi,
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:
Note the asterisk (*) tucked into the date field: it is a symbol that, according to the manual, is used to treat the value it is attached to as a name. One would therefore expect it to be inconsequential when used with dates, yet it turns out that without it I never get the closing curly bracket to display. In other words, instead of
Bookends produces
While the asterisk works for me, as far as I can tell it is a hack. Am I missing something or did I run into a tiny bug?
Thanks.
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.