Can somebody suggest me Style for this format?

Hi, am struck at some points. I use the harvard style but it displays 'author et al.' style for multiple authors in bibliography also. I need the harvard type of style but should display all the authors names in the bibliography (while it still keeps the 'et al' in the citations).
Please suggest me which style suites this requirement. And please suggest if any style provides the option for chronological order of citations as well as bibliography also.

awaiting replies
  • Probably easier to fix that yourself in the style than to find one that does exactly what you want.
    general instructions are here:
    http://www.zotero.org/support/csl_simple_edits

    Specifically, for the et al. issue find:

    <bibliography>
    <option name="hanging-indent" value="true"/>
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="1"/>
    <sort>

    and change it to
    <bibliography>
    <option name="hanging-indent" value="true"/>
    <option name="et-al-min" value="99"/>
    <option name="et-al-use-first" value="98"/>
    <sort>

    For the sort issue in the citation, find
    <option name="disambiguate-add-names" value="true"/>
    <option name="disambiguate-add-givenname" value="true"/>
    <layout prefix="(" suffix=")" delimiter="; ">

    and change it to

    <option name="disambiguate-add-names" value="true"/>
    <option name="disambiguate-add-givenname" value="true"/>
    <sort>
    <key macro="year-date"/>
    </sort>
    <layout prefix="(" suffix=")" delimiter="; ">

    Are you sure you really want the bibliography in chronological order? That doesn't seem to make any sense, but if that's really what you want, find

    <sort>
    <key macro="author"/>
    <key variable="title"/>
    </sort>

    and change to
    <sort>
    <key macro="year-date"/>
    <key macro="author"/>
    <key variable="title"/>
    </sort>
  • It worked! great! Thank you very much
    Thank you
Sign In or Register to comment.