46 lines
1.3 KiB
Markdown
46 lines
1.3 KiB
Markdown
---
|
|
category: literaturenote
|
|
tags: {% if allTags %}{{allTags}}{% endif %}
|
|
citekey: {{citekey}}
|
|
dateread:
|
|
---
|
|
|
|
> [!Cite]
|
|
> {{citekey}}
|
|
|
|
>[!md]
|
|
{% for type, creators in creators | groupby("creatorType") -%}
|
|
{%- for creator in creators -%}
|
|
> **{{"First" if loop.first}}{{type | capitalize}}**::
|
|
{%- if creator.name %} {{creator.name}}
|
|
{%- else %} {{creator.lastName}}, {{creator.firstName}}
|
|
{%- endif %}
|
|
{% endfor %}~
|
|
{%- endfor %}
|
|
> **Title**:: {{title}}
|
|
> **Year**:: {{date | format("YYYY")}}
|
|
> **Citekey**:: {{citekey}} {%- if itemType %}
|
|
> **itemType**:: {{itemType}}{%- endif %}{%- 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 %}{%- if DOI %}
|
|
> **DOI**:: {{DOI}} {%- endif %}{%- if ISBN %}
|
|
> **ISBN**:: {{ISBN}} {%- endif %}
|
|
|
|
|
|
> [!Abstract]
|
|
> {%- if abstractNote %}
|
|
> {{abstractNote}}
|
|
> {%- endif -%}.
|
|
>
|
|
# Notes
|
|
```dataview
|
|
TABLE WITHOUT ID file.link AS "Notizen"
|
|
WHERE contains(file.outlinks, this.file.link)
|
|
```
|
|
|