Looking for a style with author last name all in capitals

Hello,
I am looking for a style for "Journal of Evolutionary Psychology".
References inside and outside of the text should include authors names in CAPITAL.
Any suggestions which style would be the closest? I will then change the rest manually.
Thanks,
Sigal

http://www.akademiaikiado.hu/main.php?folderID=1615&articleID=3980&ctag=articlelist&iid=1

References in the text should follow the author-date format without comma. Where there are more than three authors, the name of the first author should be used, followed by et al. Publications by the same author(s) in the same year should be listed as e.g., 1999a, 1999b. List the references in chronological order in the text and in alphabetical order at the end of the paper. The style and punctuation of references should conform to that used in the journal. See the following examples:

(BRYDEN, GEORGE and INCH, 1990)
BRYDEN, M. P., GEORGE, J. and INCH, R. (1990): Sex differences and the role of figural complexities. Perceptual and Motor Skills, 70, 460-470.

DENNETT, D. (1991): Consciousness Explained. Boston-New York: Little Brown.
SMITH, B. G. (1998): Evolution of new metabolic functions. In: Nei, M., Koehn, R. K. (eds): Evolution of Genes and Proteins. Sunderland, MA: Sinauer, pp. 234-455.
  • If you are familiar with citation creation of csl, the capitalized author can easily be done especially at the citation and bibliography command lines, by using text-case="uppercase"
    The following options can give the in-text citation as required after your macro set up.

    <citation>
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="1"/>
    <option name="et-al-subsequent-min" value="4"/>
    <option name="et-al-subsequent-use-first" value="1"/>
    <option name="disambiguate-add-year-suffix" value="true"/>
    <option name="collapse" value="year"/>
    <sort>
    <key variable="year"/>
    </sort>
    <layout prefix="(" suffix=")" delimiter="; ">

    Will come back if more is required.
  • Thanks,
    I can try but I do not understand csl.
    I opened the Zotero Reference test pane, and found the closest style (APA with and).

    Where should I place the line:
    text-case="uppercase"?
    Sigal
  • First this style is closer <title>American Political Science Association</title>
    1.To remove the comma sign before "and" check
    <macro name="author">
    <names variable="author">
    <name name-as-sort-order="first" and="text" sort-separator=", "
    delimiter=", " delimiter-precedes-last="always"/>
    <label form="short" prefix=", " suffix="." text-case="lowercase"/>

    TO
    delimiter=" " delimiter-precedes-last="always"/>

    AND
    <macro name="author-short">
    <names variable="author">
    <name form="short" and="text" delimiter=", " initialize-with=". "/>
    <substitute>

    TO
    <name form="short" and="text" delimiter=" " initialize-with=". "/>


    2.For Surnames capital and more than 3 authors to use et al. check this

    <citation>
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="1"/>
    <option name="et-al-subsequent-min" value="6"/>
    <option name="et-al-subsequent-use-first" value="1"/>
    <option name="disambiguate-add-year-suffix" value="true"/>
    <option name="disambiguate-add-names" value="true"/>
    <option name="disambiguate-add-givenname" value="true"/>
    <option name="collapse" value="year"/>
    <layout prefix="(" suffix=")" delimiter="; ">
    <group delimiter=", ">
    <group delimiter=" ">
    <text macro="author-short" text-case="uppercase"/>

    <bibliography>
    <option name="hanging-indent" value="true"/>
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="1"/>
    <sort>
    <key macro="author"/>
    <key variable="title"/>
    </sort>
    <layout>
    <text macro="author" suffix="." text-case="uppercase"/>
    <date variable="issued" prefix=" " suffix=".">

    All the best. If have challenges let us know.
  • Sorry. I don't understand. By check do you mean change? i.e., cut the first part, copy the second? or copy paste it all?
  • Sorry but what I meant was that if you go to zotero test pane and open the style APA, look for the lines and make the corrections. Let me still refer to the above.

    Remove comma from this line
    delimiter=", " delimiter-precedes-last="always"/>
    Correct one is now
    delimiter=" " delimiter-precedes-last="always"/>

    Remove comma from
    <name form="short" and="text" delimiter=", " initialize-with=". "/>
    Correct one is now
    <name form="short" and="text" delimiter=" " initialize-with=". "/>

    Under citation last line is already corrected
    <text macro="author-short" text-case="uppercase"/>
    Original line is
    <text macro="author-short" />
    (just insert text-case="uppercase" )

    Under Bibliography, the last but 2 line also already corrected
    Original line is
    <text macro="author" suffix="."/>
    ( Also insert test-case="uppercase" )

    When done, change the title in this line at the top of test pane to something esle
    <title>American Political Science Association</title>
    e.g. <title>APA modification</title>
    Change this line too
    <id>http://www.zotero.org/styles/apsa</id>;
    To something else
    e.g. <id>http://www.zotero.org/styles/APAmodify</id>;
    You can change the author and others

    To import your modifications into zotero, do the following:
    Select all (ctrl +A), copy (ctrl +C)
    In your Microsoft windows, open Notepad and past it there
    Save As, in the encoding field select UTF-8 from the pull-down menu.
    Also, in the save as type field select All Files
    Then give the file name e.g APAmodify.csl ( the extension csl is important, if you are not careful, notepad will give automatic .txt extension which will not work )
    Now close the file and drag it into an open fire fox window or click the gear icon and import it. When properly done, a window will show just click install and it is done
    you can open it from the test pane and try it by creating citations.

    All the best, hope this will help.
  • Thanks,
    Most things work right, I will change the rest manually
    Thank you for your patience
    Sigal
  • wow, awesome support larry - welcome to the forums!
    sigal - please make the style available once you have it done (just upload it somewhere) so we can post it to the repository.
  • Hi Sigal, hope still available. Just noticed that with a bit of effort you can complete your style with your desired formats. First check this web page if that is the right style closed to your format as initially said
    http://gist.github.com/257624
    The command lines have been itemized, so if you are interested then will show you how to edit line-by-line. Could have done it for you but I'm quite busy.
    All the best
  • Hi Larry
    Yesterday I patched up the references manually, oddly some worked and some did not.
    That's why I am not uploading it yet
    If I will submit to this journal again I may come back to this discussion and try again
    Thanks again for your help
    Sigal
  • You are welcome and a nice time.
Sign In or Register to comment.