Skip to content

Conversation

@stephan-new
Copy link

@stephan-new stephan-new commented Oct 29, 2025

CSL Styles Pull Request Template

You're about to create a pull request to the CSL styles repository.
If you haven't done so already, see https://github.com/citation-style-language/styles/blob/master/CONTRIBUTING.md for instructions on how to contribute, and https://github.com/citation-style-language/styles/blob/master/STYLE_REQUIREMENTS.md for the requirements a style must meet before acceptance.
In addition, please fill out the pull request template below.

Description

Fixed:

  1. The symbol before page numbers in short citations has been changed to a colon.
  2. The separator between information blocks in bibliography has been changed to a half-width period.
  3. Use “Anonym” to indicate missing author in cited references.

Added:

  1. Use “o. O.” to indicate missing publication location.

Checklist

  • Check that you've added a link to the style you used as a template in the <info> block at the beginning of the file with rel="template".
  • Check that you've added a link to the style guidelines with rel="documentation".
  • Check that you've added yourself as the <author> of the style or <contributor> for a style update.
  • Check that you've used the correct terms or labels instead of hardcoding into affixes (e.g., <text variable="page" prefix="pp. "/>).
  • Check that you've not used <text value="... if not absolutely necessary.
  • Check that you've not changed line 1 of the style.

Fixed:
1. The symbol before page numbers in short citations has been changed to a colon. 
2. The separator between information blocks in bibliography has been changed to a half-width period.
3. Use “Anonym” to indicate missing author in cited references.

Added:
Use “o. O.” to indicate missing publication location.
@github-actions
Copy link

Awesome! You just created a pull request to the Citation Styles Language styles repository. One of our human volunteers will try to get in touch soon (usually within a week). In the meantime, I will run some automated checks. You should be notified of the results in a few minutes.

If you haven't done so yet, please make sure your style validates and follows all our other Style Requirements.

To update this pull request, visit the "Files changed" tab above, click on the ellipsis button in the top-right corner of your style, and then select "Edit file" to start editing:

If you have any questions, please leave a comment and we'll get back to you. While we usually respond in English, feel free to write in whatever language you're most comfortable.

@github-actions
Copy link

😃 Your submission passed all our automated tests.

Below are some sample citations generated based on your proposed changes:

interkulturelle-germanistik-gottingen.csl (modified style)
(CSL search by example 2012; Hancké/Rhodes/Thatcher 2007)
(Fenner et al. 2019; Mares 2001)

CSL search by example (2012). Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.
Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories. In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.
Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy. Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.
Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers? In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage. Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.
 (CSL search by example 2012; Hancké/Rhodes/Thatcher 2007)<br/>
 (Fenner et al. 2019; Mares 2001)<br/>
 <hr/>
-CSL search by example (2012): Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.<br/>
-Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories: In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.<br/>
-Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy: Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.<br/>
-Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers?: In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage: Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.<br/>
+CSL search by example (2012). Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.<br/>
+Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories. In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.<br/>
+Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy. Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.<br/>
+Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers? In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage. Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.<br/>

@@ -1,4 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this whole UpdateLog

<text variable="publisher-place"/>
</if>
<else>
<text value="o. O."/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use the correct term.

</sort>
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=", ">
<!-- 修改:短引用页码前符号改为冒号 -->
Copy link
Contributor

@POBrien333 POBrien333 Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this comment and the ones in lines 305+315.

</author>
<contributor>
<name>SS</name>
<email>Datenschutz</email>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you don't want to share your email, just remove this line.
But I'd personally put your name here, not just SS.

@github-actions
Copy link

😃 Your submission passed all our automated tests.

Below are some sample citations generated based on your proposed changes:

interkulturelle-germanistik-gottingen.csl (modified style)
(CSL search by example 2012; Hancké/Rhodes/Thatcher 2007)
(Fenner et al. 2019; Mares 2001)

CSL search by example (2012). Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.
Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories. In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.
Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy. Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.
Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers? In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage. Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.
 (CSL search by example 2012; Hancké/Rhodes/Thatcher 2007)<br/>
 (Fenner et al. 2019; Mares 2001)<br/>
 <hr/>
-CSL search by example (2012): Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.<br/>
-Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories: In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.<br/>
-Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy: Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.<br/>
-Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers?: In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage: Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.<br/>
+CSL search by example (2012). Citation style editor. Online: http://editor.citationstyles.org/searchByExample/, zuletzt geprüft am: 15. Dezember 2012.<br/>
+Fenner, Martin/Crosas, Mercè/Grethe, Jeffrey S./Kennedy, David/Hermjakob, Henning/Rocca-Serra, Phillippe/Durand, Gustavo/Berjon, Robin/Karcher, Sebastian/Martone, Maryann/Clark, Tim (2019): A data citation roadmap for scholarly data repositories. In: Scientific Data 6 (1), 28. doi: 10.1038/s41597-019-0031-8.<br/>
+Hancké, Bob/Rhodes, Martin/Thatcher, Mark (Hg.) (2007): Beyond varieties of capitalism: Conflict, contradictions, and complementarities in the European economy. Oxford: Oxford University Press. doi: 10.1093/acprof:oso/9780199206483.001.0001.<br/>
+Mares, Isabela (2001): Firms and the welfare state: When, why, and how does social policy matter to employers? In: Hall, Peter A./Soskice, David (Hg.): Varieties of capitalism: The institutional foundations of comparative advantage. Oxford: Oxford University Press, 184–212. doi: 10.1093/0199247757.003.0005.<br/>

@POBrien333 POBrien333 added the waiting-for-response-from-contributor The ticket/pull request is awaiting input from the contributor/depositor label Nov 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

waiting-for-response-from-contributor The ticket/pull request is awaiting input from the contributor/depositor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants