Upload new style onto Citation Style repository
Hi everyone, i just modified a new style named "Earthquake Engineering & Structural Dynamics (Wiley)" based upon other styles. How could i upload this style onto the Citation Style repository, please?
https://www.dropbox.com/s/qkn6z0nlph3pxtv/earthquake-engineering-and-structural-dynamics.csl?dl=0
There however exists some mistakes in this csl file which i cannot figure out. Could you please help me? Thanks!
Our validator shows two issues: http://validator.citationstyles.org/?url=https://gist.githubusercontent.com/rmzelle/2dfd10435ab115fb598d/raw/90f60b4506ecab604c7dae712a869649d9b7c639/earthquake-engineering-and-structural-dynamics.csl&version=1.0.1
First, the
<et-al/>
element should follow<name/>
See http://docs.citationstyles.org/en/stable/specification.html#et-al. So change:<names variable="author">
<name initialize-with="" delimiter=", " delimiter-precedes-last="always" name-as-sort-order="all" sort-separator=" "/>
<label form="long" prefix=", "/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
</substitute>
<et-al font-style="italic"/>
</names>
to
<names variable="author">
<name initialize-with="" delimiter=", " delimiter-precedes-last="always" name-as-sort-order="all" sort-separator=" "/>
<et-al font-style="italic"/>
<label form="long" prefix=", "/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
</substitute>
</names>
For the second issue, just change
<date date-parts="year" variable="issued">
to<date variable="issued">
.