# The Book of Disquiet
|  | **The Book of Disquiet** is a work by the Portuguese author Fernando Pessoa (1888–1935). Published posthumously, The Book of Disquiet is a fragmentary lifetime project, left unedited by the author, who introduced it as a "factless autobiography." The publication was credited to Bernardo Soares, one of the author's alternate writing names, which he called semi-heteronyms, and had a preface attributed to Fernando Pessoa, another alternate writing name or orthonym. |
|-|-|
| | wikipedia:: [The Book of Disquiet](https://en.wikipedia.org/wiki/The_Book_of_Disquiet) |
---
## Also By Or In Or Of `= this.file.name`
```dataview
TABLE WITHOUT ID
file.link AS Name, by AS By, in AS In, of AS Of, date AS Date, year AS Year
FROM #Type
WHERE
(
(
any(contains(by, this.by))
AND
by
)
OR
(
any(contains(in, this.in))
AND
in
)
OR
(
any(contains(of, this.of))
AND
of
)
OR
(
any(contains(in, this.file.name))
OR
any(contains(in, this.file.link))
)
OR
(
any(contains(of, this.file.name))
OR
any(contains(of, this.file.link))
)
AND
file.name !=this.file.name
)
SORT file.etags DESC, date DESC, year DESC
```