Trying to add a punctuation mark after date in a bibliography
I have make a reference style that writes bibliography items as
[1] Maneiro I et al. 2002Harmful Algae
I'd really like to add a period and a space after the year so it looks like.
[1] Maneiro et al. 2002. Harmful Algae
I've tried putting in the macro for author, and in the bibliography itself and somehow, no matter what I do, I can't seem to get any punctuation to actually appear.
Example here
https://github.com/cramjaco/UltraconciseZot/blob/main/isme-concise-01b.csl
In which case I've tried to add punctuation to both places with no luck.
I'd also like to remove the initial after the last name, and I'm having some trouble figuring out how to do that as well, so guidance there would also be appreciated.
Thank you.
[1] Maneiro I et al. 2002Harmful Algae
I'd really like to add a period and a space after the year so it looks like.
[1] Maneiro et al. 2002. Harmful Algae
I've tried putting in the macro for author, and in the bibliography itself and somehow, no matter what I do, I can't seem to get any punctuation to actually appear.
Example here
https://github.com/cramjaco/UltraconciseZot/blob/main/isme-concise-01b.csl
In which case I've tried to add punctuation to both places with no luck.
I'd also like to remove the initial after the last name, and I'm having some trouble figuring out how to do that as well, so guidance there would also be appreciated.
Thank you.
So it was
<<group>>
<<text macro="year-date" />>
<</group>>
<<group delimiter = ".">>
<<text macro="year-date" />>
<</group>>
No apparent difference. I've saved the later as an example here. Its the same as the previous, but with the delimiter added to the year-date field in the bibliography. It gives the same result as not adding the delimter.
https://github.com/cramjaco/UltraconciseZot/blob/main/isme-concise-01c.csl
What am I missing here?
Note: I'm using <<>> to delimit code because the single greater than and less than signs make the code vanish from the final version.