You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

259 lines
4.8 KiB

---
QueryField: Themes
QueryTerm: Relationships
Alias: ["Reading", "Reading list"]
3 years ago
Tag: ["Lifestyle", "LifeHacks", "Book"]
Date: 2021-09-25
DocType: "Personal"
Hierarchy: "Root"
location: [51.514678599999996, -0.18378583926867909]
CollapseMetaTable: Yes
---
Parent:: [[Lifestyle]]
---
 
```button
name Create New Note
type note(New Note) template
action Template Note
id NewNote
```
^button-ReadingNewNote
```button
name Create New Source
type note(New Source) template
action Template Source
id NewNote
```
^button-ReadingNewSource
```button
name Save
type command
action Save current file
id Save
```
^button-ReadingMSave
 
# Folder map
 
```ad-abstract
title: Summary
collapse: open
This note enables to navigate all books and readings in this Vault.
```
 
```toc
style: number
```
 
---
 
### Quick Filter
 
```button
name Search Library
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
Current search parameter: `=this.QueryField`
 
```dataview
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
Where contains(choice(contains(this.QueryField,"Author"), Source.Author, choice(contains(this.QueryField,"Title"),file.link,choice(contains(this.QueryField,"Language"), Source.Language, choice(contains(this.QueryField,"Theme"), Tag, Source.Read)))), this.QueryTerm)
where Source.Type = "Book"
Where file.name != "Template Pocket Source"
Sort file.name ascending
```
 
---
 
### Unread books
 
```dataview
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes"
3 years ago
Where Source.Read < date(today) - dur(100 years)
where Source.Type = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
```
&emsp;
---
&emsp;
### Read books
&emsp;
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
Where Source.Read < date(today) and Source.Read > date(today) - dur(100 years)
where Source.Type = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
```
&emsp;
---
&emsp;
3 years ago
### Navigation by language
&emsp;
&emsp;
#### French literature
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
Where Source.Language = "FR"
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### English literature
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
Where Source.Language = "EN"
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### International literature
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
Where Source.Language != "FR" AND Source.Language != "EN"
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
### Navigation by type
&emsp;
&emsp;
#### Novel
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
3 years ago
Where contains(Tag,"Novel")
3 years ago
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### Essay
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
3 years ago
Where contains(Tag,"Essay")
3 years ago
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### Biography
```dataview
3 years ago
Table without id file.link as "Title", Source.Author as "Author", Source.Published as "Published Date", Source.Language as "Language", Tag as "Themes", Source.Read as "Date read"
3 years ago
Where contains(Tag,"Biography")
3 years ago
where Source.Type = "Book"
3 years ago
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
### Tag Navigation
&emsp;
```dataview
Table without id tags as "Tags"
3 years ago
where Source.Type = "Book"
Flatten file.tags as tags
Group by tags
```
&emsp;
---
&emsp;
### High Level tasks
&emsp;
&emsp;
&emsp;