Created
October 4, 2025 23:22
-
-
Save i-blis/3c4956396512b1865b797c4b1b5320b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ if volume!="" }} | |
{{ if itemType=="book"}} | |
{{ title truncate="150"}} | |
{{volume prefix= " " suffix=" – "}} | |
{{ else }} | |
{{ title truncate="150" suffix=" – "}} | |
{{ endif }} | |
{{ else }} | |
{{ title truncate="150" suffic=" – "}} | |
{{ endif}} | |
{{ if itemType == "bookSection" }} | |
{{ authors name="given-family" max="3" suffix=" – " }} | |
{{ else }} | |
{{ creators name="given-family" max="3" suffix=" – " }} | |
{{ endif }} | |
{{ if itemType == "journalArticle" }} | |
{{ publicationTitle suffix=" – "}} | |
{{ elseif itemType == "bookSection" }} | |
{{ bookTitle suffix=" – "}} | |
{{ else }} | |
{{ publisher suffix=" – " }} | |
{{ endif }} | |
{{ year }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment