Tabstopp in Bibliography
Ich muss in der Bibliografie nach dem Kurzverweis einen Tabstopp einfügen. (-> Bild)
Der Hanging-Intend passt da nicht. Gibt es da einen passenden Code?
Ich verwende den Basis-Zitierstil: "Hochschule Pforzheim - Fakultät für Wirtschaft und Recht (Deutsch)".
I have to add a tabstop in my bibliography. How can I implement this in the code?
The only thing I found was hanging intend, but this isn't quite right. Is threre a possibility to add this to Zotero?
I'm using the citation style "Hochschule Pforzheim - Fakultät für Wirtschaft und Recht (Deutsch)" as basis.
https://s3.amazonaws.com/zotero.org/images/forums/u13590533/zt1cokxxy0m9k4dwzy5f.png
Der Hanging-Intend passt da nicht. Gibt es da einen passenden Code?
Ich verwende den Basis-Zitierstil: "Hochschule Pforzheim - Fakultät für Wirtschaft und Recht (Deutsch)".
I have to add a tabstop in my bibliography. How can I implement this in the code?
The only thing I found was hanging intend, but this isn't quite right. Is threre a possibility to add this to Zotero?
I'm using the citation style "Hochschule Pforzheim - Fakultät für Wirtschaft und Recht (Deutsch)" as basis.
https://s3.amazonaws.com/zotero.org/images/forums/u13590533/zt1cokxxy0m9k4dwzy5f.png
<bibliography et-al-min="4" et-al-use-first="3" second-field-align="flush">
<sort>
<key macro="author"/>
<key macro="year-date"/>
<key variable="title"/>
</sort>
<layout suffix=".">
<group delimiter=" " suffix=":">
<text macro="author"/>
<date variable="issued" prefix="(" suffix=")">
<date-part name="year"/>
</date>
</group>
<group delimiter=" ">
<group delimiter=": ">
<group>
<choose>
<if type="book" match="any">
<text macro="legal_case"/>
<group delimiter=" " prefix=" ">
<text macro="title" suffix="."/>
<text macro="edition" suffix=","/>
<text macro="editor" suffix="."/>
</group>
<group prefix=" " suffix="." delimiter=", ">
<text macro="publisher"/>
<text variable="page" prefix=" " suffix=" pp"/>
</group>
</if>
<else-if type="chapter paper-conference" match="any">
<group delimiter=". ">
<text macro="title" prefix=" " suffix="."/>
<group delimiter=": ">
<text term="in" text-case="capitalize-first"/>
<group delimiter=" ">
<text macro="editor" suffix=":"/>
<text variable="container-title" font-style="italic" suffix="."/>
<text variable="collection-title" suffix="."/>
<text macro="edition"/>
<group delimiter=", ">
<text macro="publisher"/>
<group delimiter=" ">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
</group>
</group>
</group>
</group>
</else-if>
<else-if type="bill graphic legal_case legislation manuscript motion_picture report song thesis" match="any">
<text macro="legal_case"/>
<group prefix=" " delimiter=" ">
<text macro="title" suffix="."/>
<text macro="edition"/>
<text macro="editor" suffix="."/>
</group>
<group prefix=" " delimiter=", ">
<text macro="publisher"/>
<group delimiter=" ">
<label variable="page" form="short"/>
<text variable="page" prefix=" "/>
</group>
</group>
</else-if>
<else-if type="webpage post-weblog" match="any">
<group delimiter=", " suffix=".">
<text macro="title"/>
<text variable="container-title"/>
</group>
</else-if>
<else>
<group prefix=" " delimiter=" " suffix=".">
<text macro="title"/>
<text macro="editor"/>
</group>
<group delimiter=": " prefix=" ">
<text term="in" text-case="capitalize-first"/>
<group delimiter=", " prefix=" ">
<text variable="container-title" font-style="normal"/>
<text variable="volume" font-weight="normal"/>
<text variable="issue" form="short"/>
<text variable="page"/>
</group>
</group>
</else>
</choose>
</group>
</group>
<text macro="access"/>
</group>
</layout>
</bibliography>
Das hier genau befolgen: https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
second-field-align="flush" war, was mir gefehlt hat. Dachte, dass das nicht funktioniert, weil die Vorschau komisch war. Aber auf Word mit dem Sondereinzug "Hängend" und den Werten experimentieren und alles passt.