Hi,
have you checked the documentation? See also the hint on the pressing of enter.
Your pattern would be somehow a combination of [authIniN] : The beginning of each author’s last name, using no more than N characters.
And [shortyear] : The last 2 digits of the publication year
Unfortunately, in this case the documentation is misleading for [authIniN]. @Siedlerchr I’ll try to update the documentation this week.
I don’t think it is possible to do for an arbitrary number of authors, however, [authN_M] returns an empty string if the author does not exist, so chaining 5+ of those should cover most use cases (something like [auth2_1][auth2_2]...)
I wasn’t sure if it was possible to use some regex-fu to get what I wanted from [authors], but I may just need to investigate that a bit further myself.
It’s really helpful to know that [authN_M] is empty when the author doesn’t exist though - thanks.