Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4658af5
Revert "Update associacao-brasileira-de-normas-tecnicas-ufrgs.csl"
POBrien333 Sep 23, 2025
7f01583
MHRA: Move locator with archival references
adunning Sep 25, 2025
9c11e44
Merge branch 'master' into pr/7813
POBrien333 Sep 25, 2025
71aec89
Merge branch 'master' into mhra-archival-locator
adunning Sep 25, 2025
5ced27b
Update associacao-brasileira-de-normas-tecnicas-ufrgs.csl
adunning Sep 25, 2025
a68b383
Update associacao-brasileira-de-normas-tecnicas-ufrgs.csl
adunning Sep 25, 2025
3b6d2a9
Create languages-society-and-policy.csl
adunning Nov 13, 2025
a3dcfd7
Create journal-of-the-northern-renaissance.csl
adunning Nov 13, 2025
f0a25b6
Missing abbreviations
adunning Nov 13, 2025
0b2632a
Create european-journal-of-theatre-and-performance.csl
adunning Nov 13, 2025
ebb7bee
Create brepols-author-date.csl
adunning Nov 13, 2025
37174a1
Merge remote-tracking branch 'upstream/master' into mhra-archival-loc…
adunning Nov 13, 2025
792848d
Fix additional IPM style sheet link
adunning Nov 13, 2025
25e72cd
Create brepols-notes.csl
adunning Nov 13, 2025
97e14e3
MHRA author-date with place of publication
adunning Nov 13, 2025
7132c58
Fix ID
adunning Nov 13, 2025
9b97893
Handle serial/archival use of `number`
adunning Nov 18, 2025
0e44c78
Merge remote-tracking branch 'upstream/master' into mhra-archival-loc…
adunning Nov 18, 2025
0092f05
Always italicize `part-title` with a chapter
adunning Nov 23, 2025
3696101
Use `volume-title` with online articles
adunning Nov 23, 2025
4438a78
Update Instrumenta Patristica et Mediaevalia with latest MHRA
adunning Nov 23, 2025
8bcb46d
Update timestamp
adunning Nov 23, 2025
25fa25d
Use official <title>
adunning Nov 24, 2025
b17942a
Fix published `interview` without an `author`
adunning Dec 3, 2025
fdeac51
Allow short forms of personal communications
adunning Dec 7, 2025
4d3a372
Merge remote-tracking branch 'upstream/master' into mhra-archival-loc…
adunning Dec 9, 2025
eb47505
Use 'introduction to' over 'introduction in'
adunning Dec 9, 2025
5bd22c0
Simplify file names
adunning Dec 9, 2025
1c02701
Consistent conditional for chapter as introduction
adunning Dec 9, 2025
9b1e415
Introductions with `container-title` in shortened notes
adunning Dec 9, 2025
e5add5b
Abbreviated references to reviews with `reviewed-author`
adunning Dec 9, 2025
929a7fa
Create folk-music-journal.csl
adunning Dec 10, 2025
cfbf5df
Add `form="short"` on more variables
adunning Dec 17, 2025
52f0f5c
Allow short `container-title` in monographic usage
adunning Dec 17, 2025
1ef6462
Use `issued` in short letter description
adunning Dec 19, 2025
34257e7
Do not abbreviate `performer` label
adunning Dec 21, 2025
1651020
Support an untitled introduction to a special issue or supplement
adunning Dec 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Always italicize part-title with a chapter
  • Loading branch information
adunning committed Nov 23, 2025
commit 0092f05f49b71a2ad910ceefb02d7bb4675b862b
27 changes: 25 additions & 2 deletions modern-humanities-research-association-author-date-no-url.csl
Original file line number Diff line number Diff line change
Expand Up @@ -1061,8 +1061,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1061,8 +1061,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1063,8 +1063,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
27 changes: 25 additions & 2 deletions modern-humanities-research-association-author-date.csl
Original file line number Diff line number Diff line change
Expand Up @@ -1063,8 +1063,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
27 changes: 25 additions & 2 deletions modern-humanities-research-association-notes-no-url.csl
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -989,8 +989,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
27 changes: 25 additions & 2 deletions modern-humanities-research-association-notes-publisher-place.csl
Original file line number Diff line number Diff line change
Expand Up @@ -991,8 +991,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -989,8 +989,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
27 changes: 25 additions & 2 deletions modern-humanities-research-association-notes-subsequent-ibid.csl
Original file line number Diff line number Diff line change
Expand Up @@ -991,8 +991,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down
27 changes: 25 additions & 2 deletions modern-humanities-research-association-notes.csl
Original file line number Diff line number Diff line change
Expand Up @@ -990,8 +990,31 @@
</else-if>
<!-- Other types are formatted based on presence of `container-title` -->
<else-if variable="container-title">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
<choose>
<if match="any" type="article-journal article-magazine article-newspaper periodical post-weblog review review-book">
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</if>
<else-if match="any" type="interview paper-conference">
<choose>
<if match="any" variable="collection-editor compiler editor editorial-director">
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</if>
<else>
<!-- serial usage -->
<!-- Quotes, title case -->
<text quotes="true" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else>
<!-- monographic usage -->
<!-- Italics, title case -->
<text font-style="italic" text-case="title" variable="part-title"/>
</else>
</choose>
</else-if>
<else-if match="any" type="article dataset document interview manuscript paper-conference personal_communication speech thesis webpage">
<!-- Container-like but not necessarily with `container-title` -->
Expand Down