# 📑Literature Notes MOC
This is my Literature Notes MOC. It shows the most recent 20 created notes in each of my types of literature notes that are still tagged with inbox.
It's one of the many ways I can go through a [[Notemaking]] session by processing the literature notes that still have the inbox tag.
## 📚Books
```dataview
TABLE WITHOUT ID
file.link as "Books", Author as "Author", Rating as "Rating", DateFinished as "Date Finished", (date(today) - file.cday).day as "Days alive"
FROM "Literature Notes/Readwise/📚Books" and #📩 and #🟥
SORT file.cday desc
LIMIT 5
```
## ✍️Articles
```dataview
TABLE WITHOUT ID
file.link as "Articles", (date(today) - file.cday).day as "Days alive"
FROM "Literature Notes/Readwise/📰Articles" and #📩
SORT file.cday desc
LIMIT 5
```
## 🎙️Podcasts
```dataview
TABLE WITHOUT ID
file.link as "Podcasts", (date(today) - file.cday).day as "Days alive"
FROM "Literature Notes/Readwise/🎙️Podcasts" and #📩
SORT file.cday desc
LIMIT 5
```
## 📷Videos
```dataview
TABLE WITHOUT ID
file.link as "Videos", (date(today) - file.cday).day as "Days alive"
FROM "Literature Notes/Readwise/📷Videos" and #📩
SORT file.cday desc
LIMIT 5
```
## 🧑🏫Lectures
```dataview
table without id
file.link as "Lecture", (date(today) - file.cday).day as "Days alive"
from #🎓 AND !"Extras" AND #🟥
sort file.ctime desc
LIMIT 5
```
## 📽️Films
```dataview
table without id
file.link as "Films", (date(today) - file.cday).day as "Days alive"
FROM "Literature Notes/Readwise/📽️Films/"
sort file.ctime desc
LIMIT 5
```