This commit is contained in:
Oscar Plaisant
2024-12-25 22:30:24 +01:00
parent 4a9afe51fa
commit 602a41e7f8
2098 changed files with 11681 additions and 2271 deletions

View File

@@ -6,7 +6,7 @@ title:: "Liste de toutes les citations"
> [!smallquery]+ Citations par auteur
> ```dataview
> LIST rows.file.link
> FROM #citation AND -"templates"
> FROM #t/citation AND -"templates"
> FLATTEN author
> GROUP BY author+" "
> SORT author
@@ -15,7 +15,7 @@ title:: "Liste de toutes les citations"
> [!query]- Nombre de citations par auteur
> ```dataview
> LIST WITHOUT ID length(rows) + " citations de " + key
> FROM #citation AND -"templates"
> FROM #t/citation AND -"templates"
> GROUP BY author
> SORT length(rows) DESC
> ```
@@ -23,7 +23,7 @@ title:: "Liste de toutes les citations"
> [!query]- Nombre de citations par source
> ```dataview
> LIST WITHOUT ID length(rows) + " citations de \"" + key + "\""
> FROM #citation AND -"templates"
> FROM #t/citation AND -"templates"
> GROUP BY source
> SORT length(rows) DESC
> ```