Vue lecture

Yale MeSH Analyzer

Outil, mis à disposition par la bibliothèque de Yale, permettant de voir les termes MESH des articles d'intérêt sur un sujet (max. 20) en un seul coup d'œil pour voir comment on peut les trouver

Il suffit pour cela d'insérer une liste de PMID dans le champs de recherche.


Permalien

Is there any way to get a list of current tags ? - Zotero Forums

Pour récupérer la liste de tous les marqueurs d'une sélection de références de sa bibliothèque Zotero et le nombre d'occurrences de chacun :

  1. sélectionner les références souhaitées
  2. ouvrir menu Tools > Developer > Run Javascript
  3. coller le code javascript ci-dessous dans le champ Code
  4. cliquer sur le bouton Exécuter
var items = ZoteroPane.getSelectedItems();
var tagCounts = new Map();
for (let item of items) {
    let tags = item.getTags();
    for (let { tag } of tags) {
        if (!tagCounts.has(tag)) {
            tagCounts.set(tag, 1);
        }
        else {
            let num = tagCounts.get(tag);
            tagCounts.set(tag, num + 1);
        }
    }
}
var str = "";
for (let [tag, num] of [...tagCounts.entries()].sort()) {
    str += tag + "\t" + num + "\n";
}

👍 Ce code fonctionne aussi bien pour les bibliothèques de groupe que pour la bibliothèque Zotero personnelle.


Permalien

Is there any way to get a list of current tags ? - Zotero Forums

Pour récupérer la liste de tous les marqueurs de sa bibliothèque Zotero personnelle et le nombre d'occurrences de chacun :

  1. ouvrir menu Tools > Developer > Run Javascript
  2. coller le code javascript ci-dessous dans le champ Code
  3. cliquer sur le bouton Exécuter
var rows = await Zotero.DB.queryAsync("SELECT name AS tagname, COUNT(*) AS num FROM tags JOIN itemTags USING (tagID) GROUP BY tagname ORDER BY UPPER(tagname) ASC");
var lines = [];
for (let row of rows) {
lines.push(row.tagname + '\t' + row.num);
}
return lines.join('\n');

⚠️ Ce code ne fonctionne que pour la bibliothèque Zotero personnelle, pas pour les bibliothèques de groupe.


Permalien

windingwind/zotero-actions-tags Action Scripts · Discussions · GitHub

Scripts partagés par la communauté d'utilisateur·trice·s du module Actions & tags pour Zotero 7, parmi lesquels il y en a quelques-uns qui paraissent particulièrement intéressants :

Bulk Edit Multiple Items : https://github.com/windingwind/zotero-actions-tags/discussions/343
Enhanced Duplicate Detection : https://github.com/windingwind/zotero-actions-tags/discussions/382
Detects if the current item has duplicate items : https://github.com/windingwind/zotero-actions-tags/discussions/133
When DOI is empty, get DOI from URL : https://github.com/windingwind/zotero-actions-tags/discussions/358
Customize color labels of reader : https://github.com/windingwind/zotero-actions-tags/discussions/211
Batch Tag Operations: https://github.com/windingwind/zotero-actions-tags/discussions/351
Extract Abstract Keywords : https://github.com/windingwind/zotero-actions-tags/discussions/136
Convert Rayyan Include/Exclude and Labels to Zotero Tags : https://github.com/windingwind/zotero-actions-tags/discussions/354
Update Arxiv Paper to latest version or published version : https://github.com/windingwind/zotero-actions-tags/discussions/363
Update Date Added : https://github.com/windingwind/zotero-actions-tags/discussions/344
Collection Tags : https://github.com/windingwind/zotero-actions-tags/discussions/245

À tester !


Permalien

VeriXiv

VeriXiv (pronounced very-kive) is a verified preprint server, enabling the rapid availability of new research findings. Preprints are the version of a research paper shared prior to peer review and publication in a journal. Unlike many preprint servers, VeriXiv will conduct a series of rigorous pre-publication checks to support research integrity.

VeriXiv supports researchers in complying with the Gates Foundation’s refreshed Open Access policy that requires all their funded research to be made available as a preprint from January 2025.


Permalien
❌