--- QueryField: Themes QueryTerm: Alcohol Alias: ["Reading", "Reading list"] 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" Where Source.Read < date(today) - dur(100 years) where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   ### Read 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", 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" Sort file.name ascending ```   ---   ### Navigation by language     #### French literature ```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 Source.Language = "FR" where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   #### English literature ```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 Source.Language = "EN" where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   #### International literature ```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 Source.Language != "FR" AND Source.Language != "EN" where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   ### Navigation by type     #### Novel ```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(Tag,"Novel") where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   #### Essay ```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(Tag,"Essay") where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   #### Biography ```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(Tag,"Biography") where Source.Type = "Book" Where file.name != "Template Pocket Source" Sort file.name ascending ```   ---   ### Tag Navigation   ```dataview Table without id tags as "Tags" where Source.Type = "Book" Flatten file.tags as tags Group by tags ```   ---   ### High Level tasks