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.

3.6 KiB

Alias Tag Date DocType Hierarchy location CollapseMetaTable
Reading
Reading list
Book
2021-09-25 Personal Root
51.514678599999996
-0.18378583926867909
Yes

Parent:: Lifestyle


name Create New Note
type note(New Note) template
action Template Note
id NewNote

^button-ReadingNewNote

name Create New Source
type note(New Source) template
action Template Source
id NewNote

^button-ReadingNewSource

name Save
type command
action Save current file
id Save

^button-ReadingMSave

Folder map

title: Summary
collapse: open
This note enables to navigate all books and readings in this Vault.

style: number


Unread books

	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.name ascending


Read books

	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.name ascending


Navigation by language

French literature

	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"
	Sort file.name ascending


English literature

	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"
	Sort file.name ascending


International literature

	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"
	Sort file.name ascending


Navigation by type

Novel

	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"
	Sort file.name ascending


Essay

	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"
	Sort file.name ascending


Biography

	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"
	Sort file.name ascending


Tag Navigation

	Table without id tags as "Tags"
	where SourceType = "Book"
	Flatten file.tags as tags
	Group by tags


High Level tasks