Changes in the Bibliography
Hello all together,
I use a modified harvard7de style. The citations are modified to my needs but the style of my bibliography has to be modified too. I already tried to do it myself but unfortunately there hast to be changed quite much and i'm not the best in programming xml/csl.
This is what the "part of a book" entry looks like in the bibliography:
Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (2001): “Inszenierungen des Nationalen - einige einleitende Bemerkungen.” In: Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (eds.) Inszenierung des Nationalen : Geschichte, Kultur und die Politik der Identitäten am Ende des 20. Jahrhunderts. Köln: Böhlau pp. 7–15.
And thats how it should look:
Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (2001): „Inszenierungen des Nationalen - einige einleitende Bemerkungen.“ In: Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (Hg.): Inszenierung des Nationalen : Geschichte, Kultur und die Politik der Identitäten am Ende des 20. Jahrhunderts. Köln: Böhlau. S. 7–15.
Please watch the inter punctuation. There are some more full stops and colons.
I hope anyone can help me.
Thanks a lot in advance
Seven
I use a modified harvard7de style. The citations are modified to my needs but the style of my bibliography has to be modified too. I already tried to do it myself but unfortunately there hast to be changed quite much and i'm not the best in programming xml/csl.
This is what the "part of a book" entry looks like in the bibliography:
Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (2001): “Inszenierungen des Nationalen - einige einleitende Bemerkungen.” In: Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (eds.) Inszenierung des Nationalen : Geschichte, Kultur und die Politik der Identitäten am Ende des 20. Jahrhunderts. Köln: Böhlau pp. 7–15.
And thats how it should look:
Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (2001): „Inszenierungen des Nationalen - einige einleitende Bemerkungen.“ In: Binder, Beate; Kaschuba, Wolfgang; Niedermüller, Peter (Hg.): Inszenierung des Nationalen : Geschichte, Kultur und die Politik der Identitäten am Ende des 20. Jahrhunderts. Köln: Böhlau. S. 7–15.
Please watch the inter punctuation. There are some more full stops and colons.
I hope anyone can help me.
Thanks a lot in advance
Seven
BUT, if i remember it correctly, i changed the locale afterwords again.
I'll try to validate the style again and will give a report.
BUT, if i remember it correctly, i changed the locale afterwords again.
I'll try to validate the style again and will give a report.
I validated the style and it said: "validation successful".
<locale xml:lang="de">
<terms>
<term name="ibid">ebd</term>
</terms>
</locale>
Maybe you can already tell if something is wrong with it...?
default-locale="de-DE"
in the second line of the style (the one that starts with <style
If it does, post the style as fbennett asks you to.
I added default-locale="de-DE" to the code and the part-of-a-book-entries indeed looked much better. But there are still some things to be changed (see the example at the top of this topic).
I posted the code here: https://gist.github.com/2767547
Also i had problems with installing the code with the added command (i now use Zotero Standalone, before i used the firefox-plugin): I clicked on the +-sign under styles in the preferences. Zotero asked me, if i really wanted to install the style. I clicked ok but couldn't find the style in the list afterwards anymore...
Thanks for your help again!
you need to change link and id of your style as described in that link - else it won't show up.
For you other issue, as fbennett says, you'd need to be more specific.
Diederichsen, Diedrich (2007): „Allein mit der Gesellschaft. Was kommuniziert Pop-Musik?“ In: Huck, Christian; Zorn, Carsten (Hrsg.) Das Populäre der Gesellschaft Systemtheorie und Populärkultur. Wiesbaden: VS Verlag für Sozialwissenschaften / GWV Fachverlage GmbH, Wiesbaden, S. 322–335.
So there are two small changes to be made:
1. There should be a colon after (Hrsg.)
2. That strange A with a roof after "S." shouldn't be there
I posted the changed code again: https://gist.github.com/2786788
Furthermore i still can't install the style after changing it. As mentioned above i edit the style in the cal editor of Zotero Standalone. When i'm done i use the "Save..." command and in the following window i name the style and change the suffix to ".csl".
Then i go to preferences>styles, click on the + and choose the file i just saved. Zotero askes me "install style "" from ,filename‘?" which i answer with "yes". But the style neither shows up in the list, nor is the previous style overwritten (the entries look the same as they looked before i made my changes). As you can see in the posted code on github, i already changed id and link. I noticed that, every time i save the file, Zotero asks me "install style ""... ". So there is always those quotation marks with nothing in between, which makes me wondering, if Zotero even recognizes the id...
Thanks for your patience :-)
The one you're seeing is here:
<label variable="page" form="short" suffix=". " strip-periods="true"/>
but there are others.
As for saving the style - you need save the style from a text-editor - you can't directly save from the test pane. (We should make that clearer in the instructions - it used to be more explicit and somehow got lost).
For the colon after (Hrsg.)
find this
<names variable="editor" delimiter="; ">
<name name-as-sort-order="all" sort-separator=", " delimiter="; " delimiter-precedes-last="always" form="long"/>
<label form="short" prefix=" (" suffix=".)" strip-periods="true"/>
</names>
change to
<names variable="editor" delimiter="; ">
<name name-as-sort-order="all" sort-separator=", " delimiter="; " delimiter-precedes-last="always" form="long"/>
<label form="short" prefix=" (" suffix=".):" strip-periods="true"/>
</names>