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.

228 lines
3.6 KiB

---
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
```
 
---
 
### Unread books
 
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes"
Where TimeStamp < date(today) - dur(100 years)
where SourceType = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
```
&emsp;
---
&emsp;
### Read books
&emsp;
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where TimeStamp < date(today) and TimeStamp > date(today) - dur(100 years)
where SourceType = "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
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where Language = "FR"
where SourceType = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### English literature
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where Language = "EN"
where SourceType = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### International literature
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where Language != "FR" AND Language != "EN"
where SourceType = "Book"
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
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where contains(Tag,"Novel")
where SourceType = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### Essay
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where contains(Tag,"Essay")
where SourceType = "Book"
Where file.name != "Template Pocket Source"
3 years ago
Sort file.name ascending
3 years ago
```
&emsp;
---
&emsp;
#### Biography
```dataview
Table without id file.link as "Title", Author, PublishedDate as "Published Date", Language, Tag as "Themes", TimeStamp as "Date read"
Where contains(Tag,"Biography")
where SourceType = "Book"
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"
where SourceType = "Book"
Flatten file.tags as tags
Group by tags
```
&emsp;
---
&emsp;
### High Level tasks
&emsp;
&emsp;
&emsp;