vault backup: 2025-04-07 13:53:32
This commit is contained in:
parent
140b7fbc29
commit
f78024ba64
4
.obsidian/graph.json
vendored
4
.obsidian/graph.json
vendored
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"collapse-filter": false,
|
"collapse-filter": false,
|
||||||
"search": "-\"Daily Note\" -\"Weekly Note\" -\"200 Library\" -path:\"900s Calendars\" ",
|
"search": "-\"Readme\" -\"Weekly\" -path:\"1 Daily Notes\" -path:\"900s Calendars\" ",
|
||||||
"showTags": false,
|
"showTags": false,
|
||||||
"showAttachments": false,
|
"showAttachments": false,
|
||||||
"hideUnresolved": false,
|
"hideUnresolved": false,
|
||||||
@ -67,6 +67,6 @@
|
|||||||
"repelStrength": 20,
|
"repelStrength": 20,
|
||||||
"linkStrength": 0.723958333333333,
|
"linkStrength": 0.723958333333333,
|
||||||
"linkDistance": 30,
|
"linkDistance": 30,
|
||||||
"scale": 0.03955078125,
|
"scale": 0.059326171875,
|
||||||
"close": true
|
"close": true
|
||||||
}
|
}
|
||||||
119
1000s Templates/Literature Note OLD.md
Executable file
119
1000s Templates/Literature Note OLD.md
Executable file
@ -0,0 +1,119 @@
|
|||||||
|
---
|
||||||
|
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
|
||||||
|
{% if DOI -%}
|
||||||
|
## DOI
|
||||||
|
[{{ DOI }}](https://doi.org/{{ DOI }})
|
||||||
|
{% endif -%}
|
||||||
|
|
||||||
|
{% if ISBN -%}
|
||||||
|
## ISBN
|
||||||
|
[{{ ISBN }}](https://www.isbnsearch.org/isbn/{{ ISBN }})
|
||||||
|
{% endif -%}
|
||||||
|
|
||||||
|
## Tags:
|
||||||
|
{% for t in tags -%}#{{ t.tag
|
||||||
|
| replace(' ', '-')
|
||||||
|
| replace('&', 'and')
|
||||||
|
| replace('<', '')
|
||||||
|
| replace('>', '')
|
||||||
|
| replace('#', '')
|
||||||
|
| replace('*', '')
|
||||||
|
| replace('(', '')
|
||||||
|
| replace(')', '')
|
||||||
|
| replace('[', '')
|
||||||
|
| replace(']', '')
|
||||||
|
}}{% if not loop.last -%}, {% endif %}{% endfor %}
|
||||||
|
{%- set in_read = false -%}
|
||||||
|
{%- for collection in collections -%}
|
||||||
|
{%- if collection.name == "Read" -%}
|
||||||
|
{%- set in_read = true -%}
|
||||||
|
{%- endif -%}
|
||||||
|
{%- endfor -%}
|
||||||
|
|
||||||
|
{% if in_read %}
|
||||||
|
- [x] {{title}} #Reading ✅ {{ importDate | format("YYYY-MM-DD") }}
|
||||||
|
{% else %}
|
||||||
|
- ["] {{title}} #Reading
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
|
{% if abstractNote -%}
|
||||||
|
>[!Abstract]
|
||||||
|
>{{abstractNote}}{% endif -%}
|
||||||
|
|
||||||
|
{% if markdownNotes -%}
|
||||||
|
>[!note] Markdown Notes
|
||||||
|
>{{markdownNotes}}}{% endif -%}
|
||||||
|
|
||||||
|
>[!seealso] Related Papers
|
||||||
|
>{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %}
|
||||||
|
|
||||||
|
# Annotations
|
||||||
|
## Notes
|
||||||
|
{# Process non-Purple highlights -#}
|
||||||
|
{% for a in annotations -%}
|
||||||
|
{% if a.type == "highlight" and a.colorCategory != "Purple" -%}
|
||||||
|
{% if a.colorCategory == "Yellow" %}
|
||||||
|
>[!attention] Highlight
|
||||||
|
{% elif a.colorCategory == "Green" %}
|
||||||
|
>[!done] Insight
|
||||||
|
{% elif a.colorCategory == "Orange" %}
|
||||||
|
>[!warning] S?
|
||||||
|
{% elif a.colorCategory == "Red" %}
|
||||||
|
>[!fail] Dubious
|
||||||
|
{% else %}
|
||||||
|
>[!quote] Other Highlight
|
||||||
|
{% endif -%}
|
||||||
|
> {{ a.annotatedText }}
|
||||||
|
{% if a.comment -%}
|
||||||
|
>
|
||||||
|
> *{{ a.comment }}*
|
||||||
|
{% endif -%}
|
||||||
|
{% endif -%}
|
||||||
|
{%- endfor %}
|
||||||
|
## Follow-Ups
|
||||||
|
{# Create a separate loop for Purple highlights as tasks #}
|
||||||
|
{% for a in annotations -%}
|
||||||
|
{% if a.type == "highlight" and a.colorCategory == "Purple" -%}
|
||||||
|
>[!example]
|
||||||
|
>{{ a.annotatedText }}
|
||||||
|
>- [ ] {{ a.comment }} #Follow-Up
|
||||||
|
|
||||||
|
{% if a.comment -%}
|
||||||
|
{% endif -%}
|
||||||
|
{% endif -%}
|
||||||
|
{% endfor -%}
|
||||||
|
|
||||||
|
### Imported: {{ importDate | format("YYYY-MM-DD h:mm a") }}
|
||||||
@ -1,9 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: I2C stuff
|
title: Literature Note rework
|
||||||
allDay: false
|
allDay: false
|
||||||
startTime: 13:30
|
startTime: 13:30
|
||||||
endTime: 14:00
|
endTime: 14:00
|
||||||
date: 2025-04-07
|
date: 2025-04-07
|
||||||
completed: null
|
completed: null
|
||||||
type: single
|
|
||||||
---
|
---
|
||||||
9
900s Calendars/Research/2025-04-08 I2C stuff.md
Normal file
9
900s Calendars/Research/2025-04-08 I2C stuff.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: I2C stuff
|
||||||
|
allDay: false
|
||||||
|
startTime: 12:30
|
||||||
|
endTime: 13:00
|
||||||
|
date: 2025-04-08
|
||||||
|
completed: null
|
||||||
|
type: single
|
||||||
|
---
|
||||||
@ -29,7 +29,7 @@
|
|||||||
- [[2025-03-31 Bus home and read Survey.md]]
|
- [[2025-03-31 Bus home and read Survey.md]]
|
||||||
- [[2025-03-31 Collect some literature reviews.md]]
|
- [[2025-03-31 Collect some literature reviews.md]]
|
||||||
- [[2025-04-07 Bus Home and HDD model paper.md]]
|
- [[2025-04-07 Bus Home and HDD model paper.md]]
|
||||||
- [[2025-04-07 I2C stuff.md]]
|
- [[2025-04-08 I2C stuff]]
|
||||||
- [[2025-04-07 Nonlinear control survey papers.md]]
|
- [[2025-04-07 Nonlinear control survey papers.md]]
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user