--- readstatus: false dateread: title: "{{ title }}" year: {{ date | format('YYYY') }} authors: {% for type, creators in creators | groupby('creatorType') %} {% for creator in creators %} - "{% if creator.name %}{{ creator.name }}{% else %}{{ creator.lastName }}, {{ creator.firstName }}{% endif %}" {% endfor %} {% endfor %} citekey: "{{ citekey }}" {% if itemType == "journalArticle" %} journal: "{{ publicationTitle }}" {% endif %} {% if volume %} volume: {{ volume }} {% endif %} {% if issue %} issue: {{ issue }} {% endif %} {% if itemType == "bookSection" %} book: "{{ publicationTitle }}" {% endif %} {% if publisher %} publisher: "{{ publisher }}" {% endif %} {% if place %} location: "{{ place }}" {% endif %} {% if pages %} pages: {{ pages }} {% endif %} --- # Indexing Information ## DOI [{{ DOI }}](https://doi.org/{{ DOI }}) ## ISBN [{{ ISBN }}](https://www.isbnsearch.org/isbn/{{ ISBN }}) ## Tags: {% for t in tags %}#{{ t.tag | replace(' ', '-') | replace('&', 'and') | replace('<', '') | replace('>', '') | replace('#', '') | replace('*', '') | replace('(', '') | replace(')', '') | replace('[', '') | replace(']', '') }}{% if not loop.last %}, {% endif %}{% endfor %} >[!Abstract] >{% if abstractNote %}{{abstractNote}}{% endif %} >[!note] Markdown Notes >{% if markdownNotes %}{{markdownNotes}}{% else %}{{ "None!" }}{% endif %} # Annotations {% macro calloutHeader(type, color) %} {% if type == "highlight" %} Quote {% endif %} {% if type == "text" %} Note {% endif %} {% endmacro %} {% persist "annotations" %} {% set newAnnotations = annotations | filterby("date", "dateafter", lastImportDate) %} {% if newAnnotations.length > 0 %} {% for a in annotations %} > {{calloutHeader(a.type, a.color)}} > {{a.annotatedText}} > {% if a.comment %}{{a.comment}}{% endif %} {% endfor %} {% endif %} {% endpersist %} ### Imported: {{importDate | format("YYYY-MM-DD h:mm a")}}