Problems displaying author in all caps
Hi guys,
I have problems displaying the authors last name in all caps (I'm using the IEEE style as base).
I studied the csl schema at https://bitbucket.org/bdarcus/csl-schema/src/83f9cf9b53bd/csl.rnc and the according documentation and came up with this:
http://www.mediafire.com/?0apsn0y6qxz1x3v
(Sorry, the forum wouldn't let me post the whole thing)
Here is an examplary output:
[1]
Bruchez, E.; Vernet, A.: XML Pipeline Language (XPL) Version 1.0 (Draft), 2005 URL: http://www.w3.org/Submission/xpl/ (2011-03-09).
Would anyone be able to tell me why the author's last name still is not displaying as it should? I thank you in andvance for your time and effort.
Marc
I have problems displaying the authors last name in all caps (I'm using the IEEE style as base).
I studied the csl schema at https://bitbucket.org/bdarcus/csl-schema/src/83f9cf9b53bd/csl.rnc and the according documentation and came up with this:
http://www.mediafire.com/?0apsn0y6qxz1x3v
(Sorry, the forum wouldn't let me post the whole thing)
Here is an examplary output:
[1]
Bruchez, E.; Vernet, A.: XML Pipeline Language (XPL) Version 1.0 (Draft), 2005 URL: http://www.w3.org/Submission/xpl/ (2011-03-09).
Would anyone be able to tell me why the author's last name still is not displaying as it should? I thank you in andvance for your time and effort.
Marc
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Where did you find the link to https://bitbucket.org/bdarcus/csl-schema/src/83f9cf9b53bd/csl.rnc ? It links to the outdated CSL 0.8.1 schema. Uppercasing of last names is only possible in CSL 1.0 styles.
You first need to validate your CSL 0.8.1 style, upgrade it to CSL 1.0, and then introduce the last name uppercasing. See
http://www.zotero.org/support/dev/citation_styles#validation
and
http://citationstyles.org/downloads/upgrade-notes.html#updating-csl-0-8-styles
I did have some errors during validation that i got rid of, and updated the csl to 1.0.
I now managed to add the code to have the last name all caps. Thank you.
Although I'd like to add that the information at http://citationstyles.org/downloads/upgrade-notes.html#formatting-name-parts is partially wrong. Here is the correct code should anyone encounter a similar problem:
<names variable="author">
<name form="long">
<name-part name="family" text-case="capitalize-all"/>
</name>
</names>
(text-case, NOT font-variant)
Marc