What part of the CSL style should be changed in order change a dot by comma in conference item?

Hi,

I am dealing with a customize style available here=> http://pastebin.com/GR9NJnWu

Related to item "conference", I couldn't find in which part of the style I could change a dot by comma in conference item. Example abover:

All reference=> VASCONCELOS, A. M. N. Estatísticas de mortalidade por causas: uma avaliação da qualidade da informação. In: ENCONTRO NACIONAL DE ESTUDOS POPULACIONAIS, 10, 2008, Belo Horizonte. Anais... Belo Horizonte: ABEP. 2008. p. 151-166.

Change from (dot - after ABEP)=> Belo Horizonte: ABEP. 2008.

To (comma - after ABEP)=> Belo Horizonte: ABEP, 2008.

I have an Zotero item in which the author is [Van de Ven, Andrew].

Thanks in advance for any help!!!
  • <group delimiter=". " suffix=". ">
    <text macro="publisher"/>
    <text macro="issued"/>
    <text variable="page" prefix="p. "/>
    <text macro="access"/>
    </group>

    This sets the delimiter between those four elements to ". ".

    <group delimiter=". " suffix=". ">
    <group delimiter=", ">
    <text macro="publisher"/>
    <text macro="issued"/>
    </group>
    <text variable="page" prefix="p. "/>
    <text macro="access"/>
    </group>

    should do the trick. I don't know what you're referring to with the author, that seems unrelated.
  • Many thanks. It worked great!
Sign In or Register to comment.