vault backup: 2025-02-10 09:49:39
This commit is contained in:
parent
d6d5619189
commit
02450f3483
@ -4,47 +4,47 @@ dateread:
|
|||||||
title: "{{ title }}"
|
title: "{{ title }}"
|
||||||
year: {{ date | format('YYYY') }}
|
year: {{ date | format('YYYY') }}
|
||||||
authors:
|
authors:
|
||||||
{% for type, creators in creators | groupby('creatorType') %}
|
{% for type, creators in creators | groupby('creatorType') -%}
|
||||||
{% for creator in creators %}
|
{% for creator in creators %}
|
||||||
- "{% if creator.name %}{{ creator.name }}{% else %}{{ creator.lastName }}, {{ creator.firstName }}{% endif %}"
|
- "{% if creator.name %}{{ creator.name }}{% else %}{{ creator.lastName }}, {{ creator.firstName }}{% endif %}"
|
||||||
{% endfor %}
|
{% endfor -%}
|
||||||
{% endfor %}
|
{% endfor -%}
|
||||||
citekey: "{{ citekey }}"
|
citekey: "{{ citekey }}"
|
||||||
{% if itemType == "journalArticle" %}
|
{% if itemType == "journalArticle" -%}
|
||||||
journal: "{{ publicationTitle }}"
|
journal: "{{ publicationTitle }}"
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if volume %}
|
{% if volume -%}
|
||||||
volume: {{ volume }}
|
volume: {{ volume }}
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if issue %}
|
{% if issue -%}
|
||||||
issue: {{ issue }}
|
issue: {{ issue }}
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if itemType == "bookSection" %}
|
{% if itemType == "bookSection" -%}
|
||||||
book: "{{ publicationTitle }}"
|
book: "{{ publicationTitle }}"
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if publisher %}
|
{% if publisher -%}
|
||||||
publisher: "{{ publisher }}"
|
publisher: "{{ publisher }}"
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if place %}
|
{% if place -%}
|
||||||
location: "{{ place }}"
|
location: "{{ place }}"
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
{% if pages %}
|
{% if pages -%}
|
||||||
pages: {{ pages }}
|
pages: {{ pages }}
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
---
|
---
|
||||||
# Indexing Information
|
# Indexing Information
|
||||||
{% if DOI %}
|
{% if DOI -%}
|
||||||
## DOI
|
## DOI
|
||||||
[{{ DOI }}](https://doi.org/{{ DOI }})
|
[{{ DOI }}](https://doi.org/{{ DOI }})
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
|
|
||||||
{% if ISBN %}
|
{% if ISBN -%}
|
||||||
## ISBN
|
## ISBN
|
||||||
[{{ ISBN }}](https://www.isbnsearch.org/isbn/{{ ISBN }})
|
[{{ ISBN }}](https://www.isbnsearch.org/isbn/{{ ISBN }})
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
|
|
||||||
## Tags:
|
## Tags:
|
||||||
{% for t in tags %}#{{ t.tag
|
{% for t in tags -%}#{{ t.tag
|
||||||
| replace(' ', '-')
|
| replace(' ', '-')
|
||||||
| replace('&', 'and')
|
| replace('&', 'and')
|
||||||
| replace('<', '')
|
| replace('<', '')
|
||||||
@ -55,15 +55,17 @@ pages: {{ pages }}
|
|||||||
| replace(')', '')
|
| replace(')', '')
|
||||||
| replace('[', '')
|
| replace('[', '')
|
||||||
| replace(']', '')
|
| replace(']', '')
|
||||||
}}{% if not loop.last %}, {% endif %}{% endfor %}
|
}}{% if not loop.last -%}, {% endif %}{% endfor %}
|
||||||
|
|
||||||
- ["] {{title}} #Reading
|
- ["] {{title}} #Reading
|
||||||
|
|
||||||
|
{% if abstractNote -%}
|
||||||
>[!Abstract]
|
>[!Abstract]
|
||||||
>{% if abstractNote %}{{abstractNote}}{% endif %}
|
>{{abstractNote}}{% endif -%}
|
||||||
|
|
||||||
|
{% if markdownNotes -%}
|
||||||
>[!note] Markdown Notes
|
>[!note] Markdown Notes
|
||||||
>{% if markdownNotes %}{{markdownNotes}}{% else %}{{ "None!" }}{% endif %}
|
>{{markdownNotes}}}{% endif -%}
|
||||||
|
|
||||||
>[!seealso] Related Papers
|
>[!seealso] Related Papers
|
||||||
>{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %}
|
>{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %}
|
||||||
@ -71,24 +73,27 @@ pages: {{ pages }}
|
|||||||
# Annotations
|
# Annotations
|
||||||
{# Process non-Purple highlights #}
|
{# Process non-Purple highlights #}
|
||||||
{% for a in annotations %}
|
{% for a in annotations %}
|
||||||
{% if a.type == "highlight" and a.colorCategory != "Purple" %}
|
{% if a.type == "highlight" and a.colorCategory != "Purple" -%}
|
||||||
{% if a.colorCategory == "Yellow" %}
|
{% if a.colorCategory == "Yellow" -%}
|
||||||
>[!attention] Highlight
|
>[!attention] Highlight
|
||||||
{% elif a.colorCategory == "Green" %}
|
{% elif a.colorCategory == "Green" -%}
|
||||||
>[!done] Quote
|
>[!done] Quote
|
||||||
{% elif a.colorCategory == "Orange" %}
|
{% elif a.colorCategory == "Orange" -%}
|
||||||
>[!question] Don't Understand
|
>[!question] Don't Understand
|
||||||
{% elif a.colorCategory == "Red" %}
|
{% elif a.colorCategory == "Red" -%}
|
||||||
>[!fail] Possibly Incorrect
|
>[!fail] Possibly Incorrect
|
||||||
{% else %}
|
{% else -%}
|
||||||
>[!quote] Other Highlight
|
>[!quote] Other Highlight
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
|
> ```
|
||||||
> *{{ a.annotatedText }}*
|
> *{{ a.annotatedText }}*
|
||||||
> {% if a.comment %}
|
> ```
|
||||||
|
> {% if a.comment -%}
|
||||||
> >[!note] Note
|
> >[!note] Note
|
||||||
> >{{ a.comment }}
|
> >{{ a.comment }}
|
||||||
> {% endif %}
|
>
|
||||||
{% endif %}
|
{% endif -%}
|
||||||
|
{% endif -%}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
## Tasks
|
## Tasks
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user