30 lines
666 B
Markdown
30 lines
666 B
Markdown
up:: [[gestion]]
|
|
sibling:: [[personnes]]
|
|
title:: "Liste de toutes les citations"
|
|
#s/PKM
|
|
|
|
> [!smallquery]+ Citations par auteur
|
|
> ```dataview
|
|
> LIST rows.file.link
|
|
> FROM #t/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 #t/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 #t/citation AND -"templates"
|
|
> GROUP BY source
|
|
> SORT length(rows) DESC
|
|
> ```
|