Created
June 29, 2026 06:16
-
-
Save ebbertd/643b48e646a89c7535634e806dcf7feb to your computer and use it in GitHub Desktop.
Obsidian Zotero Literature Note Template
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
| --- | |
| Title: "{{title | escape}}" | |
| Year: {{date | format("YYYY")}} | |
| Authors: | |
| {% for creator in creators %}{% if creator.creatorType == "author" %}- "[[Authors/{{creator.firstName}} {{creator.lastName}}]]" | |
| {% endif %}{% endfor %} | |
| Citekey: "@{{citekey}}" | |
| Imported: {{importDate | format("YYYY-MM-DD")}} | |
| {% if publicationTitle %}Journal: {{publicationTitle}}{% endif %} | |
| {% if DOI %}DOI: {{DOI}}{% endif %} | |
| tags: | |
| status: | |
| --- | |
| ### Reference | |
| {{bibliography}} | |
| Zotero PDF Link: {{pdfZoteroLink}} | |
| ### Notes | |
| {% persist "notes" %}{% if isFirstImport %} | |
| {% endif %}{% endpersist %} | |
| ### In-text annotations | |
| {% for annotation in annotations -%} | |
| {%- if annotation.annotatedText -%} | |
| > [!quote]{% if annotation.colorCategory %} {{annotation.colorCategory}}{% endif %} | |
| > {{annotation.annotatedText | safe}} | |
| > | |
| > [Page {{annotation.pageLabel}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.pageLabel}}&annotation={{annotation.id}}) | |
| {%- endif %} | |
| {% if annotation.comment %} | |
| **Comment:** {{annotation.comment | safe}} | |
| [Page {{annotation.pageLabel}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.pageLabel}}&annotation={{annotation.id}}) | |
| {% endif %} | |
| {%- if annotation.imageRelativePath -%} | |
| ![[{{annotation.imageRelativePath}}]] | |
| {% endif %} | |
| {% endfor -%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment