# ♯ Calibre Library
## Reading Now
```dataview
table without id
link(file.link, title) as Title,
Authors,
embed(link(Cover)) as Cover,
Tags
from "robot/Calibre Library" and (#now or #reading)
```
## Favorites
```dataview
table without id
link(file.link, title) as Title,
Authors,
embed(link(Cover)) as Cover,
date-read as "Date Read",
Tags
from "robot/Calibre Library"
sort date-read DESC
where
Rating = 5
```