Add "in" before journal in bibliography

Hi, for the style "American Psychological Association 6th edition" my Bibliographie currently looks like:
...Title of Article. Jorunalname...
What I need is
...Title of Article. In: Jorunalname...
I could have just added the letters "In:" before Journalname, but the perfect solution would be that if I changed the language to eg Spanish, it would turn to "en".
  • Ok, I figured it out. I hope I didn't make any mistakes in the code. If anybody more experienced than me discovered an obvious mistake, please let me know.

    I changed


    <if type="chapter paper-conference entry-encyclopedia" match="any">
    <text term="in" text-case="capitalize-first" suffix=" "/>
    </if>


    to

    <if type="chapter paper-conference entry-encyclopedia" match="any">
    <text term="in" text-case="capitalize-first" suffix=": "/>
    </if>

    so that I get the colon after "In" for book chapters

    and changed

    <if type="article article-journal article-magazine article-newspaper" match="any">
    <text variable="container-title" font-style="italic" text-case="title"/>
    </if>

    to

    <if type="article article-journal article-magazine article-newspaper" match="any">
    <text term="in" text-case="capitalize-first" suffix=": "/>
    <text variable="container-title" font-style="italic" text-case="title"/>
    </if>

    in order to get the "In: " before the journal
Sign In or Register to comment.