--- Alias: ["Reading", "Reading list"] Tag: ["Book"] Date: 2021-09-25 DocType: "Personal" Hierarchy: "Root" 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" Sort file.link ascending ```   ---   ### Read books   ```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" Sort file.link ascending ```   ---   ### Tag Navigation   ```dataview Table without id tags as "Tags" where SourceType = "Book" Flatten file.tags as tags Group by tags ```   ---   ### High Level tasks