This commit is contained in:
Oscar Plaisant
2024-05-28 11:16:33 +02:00
parent 4fb583f44a
commit ba4a8f79e1
104 changed files with 1413 additions and 4564 deletions

View File

@@ -3,8 +3,27 @@ sibling:: [[personnes]]
title:: "Liste de toutes les citations"
#PKM
```dataview
LIST title FROM #citation
WHERE file.name != "citation"
```
> [!smallquery]+ Citations par auteur
> ```dataview
> LIST rows.file.link
> FROM #citation AND -"templates"
> FLATTEN author
> GROUP BY author+" "
> SORT author
> ```
> [!query]- Nombre de citations par auteur
> ```dataview
> LIST WITHOUT ID length(rows) + " citations de " + key
> FROM #citation AND -"templates"
> GROUP BY author
> SORT length(rows) DESC
> ```
> [!query]- Nombre de citations par source
> ```dataview
> LIST WITHOUT ID length(rows) + " citations de \"" + key + "\""
> FROM #citation AND -"templates"
> GROUP BY source
> SORT length(rows) DESC
> ```