Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
iGor milhit | 8deda1322a |
74
README.md
74
README.md
|
@ -5,14 +5,16 @@ id: 20230419101340
|
||||||
tags: [rdv-info, documentation, markdown]
|
tags: [rdv-info, documentation, markdown]
|
||||||
---
|
---
|
||||||
|
|
||||||
## [Markdown, introduction et compléments][projet]
|
## [Introduction à la prise de notes avec Markdown][1]
|
||||||
|
|
||||||
Ce répertoire contient le matériel utilisé pour les [deux « rendez-vous de
|
Ce répertoire contient le matériel utilisé pour le [rendez-vous de l'info
|
||||||
l'info scientifique » sur Markdown][rdv] proposés par la bibliothèque de
|
scientifique sur Markdown][2] proposés par la bibliothèque de l'Université de
|
||||||
l'Université de Genève :
|
Genève.
|
||||||
|
|
||||||
- [L'introduction à la prise de notes][intro].
|
Les sources du support de cours sont dans le fichier [`intro/intro.html`][4].
|
||||||
- [Aller plus loin avec Markdown][avancé].
|
|
||||||
|
La dernière version du support de cours au format PDF se trouve dans la
|
||||||
|
dernière [publication de version][3].
|
||||||
|
|
||||||
## Pré-requis
|
## Pré-requis
|
||||||
|
|
||||||
|
@ -21,45 +23,77 @@ l'Université de Genève :
|
||||||
|
|
||||||
## Génération du PDF
|
## Génération du PDF
|
||||||
|
|
||||||
|
Le support de cours est rédigé au format markdown, en utilisant des
|
||||||
|
fonctionnalités propres au `pandoc-markdown`. La génération du PDF s'appuie sur
|
||||||
|
`pagedjs`, un modèle HTML (`template.html`) et des règles de styles
|
||||||
|
(`styles.css`). Le fichier des règles de style est commenté, ce qui devrait
|
||||||
|
permettre de comprendre son fonctionnement.
|
||||||
|
|
||||||
Lancer les commandes depuis le répertoire contenant le fichier source au format
|
Lancer les commandes depuis le répertoire contenant le fichier source au format
|
||||||
Markdown, soit `./intro`, soit `./avancé`.
|
Markdown, à savoir `./intro`.
|
||||||
|
|
||||||
Pour générer le fichier HTML à servir par un serveur web pour le visualiser
|
Pour générer le fichier HTML à servir par un serveur web pour le visualiser
|
||||||
dans le navigateur, il faut utiliser `pandoc` avec les paramètres suivants (à
|
dans le navigateur, il faut utiliser `pandoc` avec les paramètres suivants (à
|
||||||
adapter au fichier à générer) :
|
adapter au fichier à générer) :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pandoc --standalone --to=html \
|
pandoc --to=html \
|
||||||
--template=../template.html --css=../style.css \
|
--template=../template.html --css=../style.css \
|
||||||
--toc --toc-depth=2 --citeproc \
|
--toc --toc-depth=2 --citeproc \
|
||||||
--output=intro.html intro.md
|
--output=intro.html intro.md
|
||||||
```
|
```
|
||||||
|
|
||||||
- `--standalone` pour obtenir tous les scritps javascript et les styles CSS
|
|
||||||
nécessaires à l'interface de visualisation et à la mise en forme voulue dans
|
|
||||||
le fichier HTML.
|
|
||||||
- `--to=html` pour convertir vers du HTML.
|
- `--to=html` pour convertir vers du HTML.
|
||||||
- `--template=` et `--css=` indiquent quels modèle et feuille de style
|
- `--template=` et `--css=` indiquent quels modèle et feuille de style
|
||||||
utiliser.
|
utiliser.
|
||||||
- `--toc` et `--toc-depth=2` générent la table des matière en n'allant pas plus
|
- `--toc` et `--toc-depth=2` génèrent la table des matière en n'allant pas plus
|
||||||
loin que les titres de niveau 2.
|
loin que les titres de niveau 2.
|
||||||
- `--citeproc` indique qu'il faut tenir compte des citations et générer la
|
- `--citeproc` indique qu'il faut tenir compte des citations et générer la
|
||||||
bibliographie.
|
bibliographie.
|
||||||
- `--output=` précise où et à quel nom générer le fichier de sortie.
|
- `--output=` précise où et à quel nom générer le fichier de sortie.
|
||||||
|
|
||||||
Pour générer directement le PDF :
|
Une fois le fichier HTML généré, il faut lancer un serveur web depuis la racine
|
||||||
|
du projet, par exemple avec `python` :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pandoc --standalone --citeproc \
|
python -m http.server
|
||||||
|
```
|
||||||
|
|
||||||
|
Puis, ouvrir le navigateur Chromium (ou Chrome) à l'URL
|
||||||
|
<http://localhost:8000>. En effet, Firefox supporte un peu moins bien
|
||||||
|
`pagedjs`, notamment pour l'impression en PDF. Pour éviter la coloration des
|
||||||
|
liens déjà visités, la fonction « navigation privée » est bien utile.
|
||||||
|
|
||||||
|
Cet affichage permet d'inspecter les règles CSS et de les modifier à la volée
|
||||||
|
pour comprendre comment améliorer le rendu, et d'imprimer la page web au format
|
||||||
|
PDF (`ctrl+p`).
|
||||||
|
|
||||||
|
Pour générer directement le PDF, deux possibilités s'ouvrent à vous, avec des
|
||||||
|
résultats différents. Soit en utilisant `pagedjs` directement avec `pandoc` :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pandoc --citeproc \
|
||||||
--to=pdf --pdf-engine=pagedjs-cli \
|
--to=pdf --pdf-engine=pagedjs-cli \
|
||||||
--css=../style.css --toc --toc-depth=2 \
|
--css=../style.css --toc --toc-depth=2 \
|
||||||
--output=intro.pdf intro.md
|
--output=intro.pdf intro.md
|
||||||
```
|
```
|
||||||
|
|
||||||
La différence ici est le format de destination (PDF) et le fait d'utiliser
|
Soit en utilisant `pagedjs` pour convertir le fichier HTML obtenu par pandoc
|
||||||
`pagedjs-cli` comme outil de composition du PDF.
|
plus haut :
|
||||||
|
|
||||||
[projet]: ./
|
```bash
|
||||||
[rdv]: https://www.unige.ch/biblio/index.php?cID=4127 "Présentation des 2 rendez-vous sur le site de la bibliothèque de l'Université de Genève"
|
pandoc --to=html \
|
||||||
[intro]: ./intro/intro.md
|
--template=../template.html --css=../style.css \
|
||||||
[avancé]: ./avancé/avancé.md
|
--toc --toc-depth=2 --citeproc \
|
||||||
|
--output=intro.html intro.md \
|
||||||
|
&& pagedjs-cli intro.html \
|
||||||
|
--css=../style.css \
|
||||||
|
-o intro.pdf
|
||||||
|
```
|
||||||
|
|
||||||
|
<!-- liens -->
|
||||||
|
|
||||||
|
[1]: ./
|
||||||
|
[2]: https://www.unige.ch/biblio/index.php?cID=4127
|
||||||
|
[3]: https://git.milhit.ch/igor/rdv-info-markdown/releases/latest
|
||||||
|
[4]: ./intro/intro.md
|
||||||
|
|
|
@ -5,6 +5,16 @@ id: 20230426090205
|
||||||
tags: [rdv-info, déroulé, markdown]
|
tags: [rdv-info, déroulé, markdown]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Checklist
|
||||||
|
|
||||||
|
- [ ] Polycopié généré et prêt au partage et ouvert pour s'y référer.
|
||||||
|
- [ ] URL du formulaire de feedback prête à être copiée-collée.
|
||||||
|
- [ ] Page HackMD ouverte avec un exemple de fichier markdown.
|
||||||
|
- [ ] Navigateur de fichier ouvert sur l'ensemble de notes et dans le dossier
|
||||||
|
`intro`.
|
||||||
|
- [ ] VScode ouvert avec l'ensemble de notes.
|
||||||
|
- [ ] Un terminal ouvert dans le dossier `intro` (pour la démo de pandoc).
|
||||||
|
|
||||||
## Présentation (2 min.)
|
## Présentation (2 min.)
|
||||||
|
|
||||||
- Présentation.
|
- Présentation.
|
||||||
|
@ -15,8 +25,11 @@ tags: [rdv-info, déroulé, markdown]
|
||||||
|
|
||||||
- Avantages des fichiers au format texte et de markdown pour la prise de notes.
|
- Avantages des fichiers au format texte et de markdown pour la prise de notes.
|
||||||
- Syntaxe de base.
|
- Syntaxe de base.
|
||||||
- Présentation d'éditeurs.
|
- Fonctionnalités attendues d'un éditeur.
|
||||||
- Aperçu des possibilités avancées.
|
- Aperçu des possibilités avancées :
|
||||||
|
- Ensemble de notes.
|
||||||
|
- Conversion vers d'autres formats (`pandoc`).
|
||||||
|
- Insertion d'une référence bibliographique.
|
||||||
|
|
||||||
## Présentation
|
## Présentation
|
||||||
|
|
||||||
|
@ -25,40 +38,62 @@ tags: [rdv-info, déroulé, markdown]
|
||||||
- Montrer le rendu et la structure.
|
- Montrer le rendu et la structure.
|
||||||
- Avantages du format texte :
|
- Avantages du format texte :
|
||||||
- Fichiers simples et légers.
|
- Fichiers simples et légers.
|
||||||
- Ne dépendant ni d'un logiciel particulier.
|
- Ne dépend pas d'un logiciel particulier.
|
||||||
- Pérennité.
|
- Pérennité.
|
||||||
- Portabilité.
|
- Portabilité.
|
||||||
- Sauvegarde, synchronisation, partage.
|
- Sauvegarde, synchronisation, partage.
|
||||||
- Recherche textuelle facilitée.
|
- Recherche textuelle facilitée.
|
||||||
- Favorise un riche écosystème pour utiliser ou manipuler les fichiers.
|
- Favorise un riche écosystème pour utiliser ou manipuler les fichiers.
|
||||||
|
- Inconvénients :
|
||||||
|
- Apprentissage simple au début, peut devenir plus ardu selon les besoins.
|
||||||
|
- La conversion nécessite l'installation de logiciels supplémentaires.
|
||||||
|
- L'usage de `pandoc` pour la conversion se fait dans en « ligne de
|
||||||
|
commande ».
|
||||||
|
- Le travail collaboratif est possible, mais selon les situations, elle peut
|
||||||
|
devenir plus complexe.
|
||||||
- Conclusion :
|
- Conclusion :
|
||||||
- Rapidité et légèreté adaptée à la prise de note.
|
- Rapidité et légèreté adaptée à la prise de note.
|
||||||
- Notes structurées, recherche textuelle efficace.
|
- Notes structurées, recherche textuelle efficace.
|
||||||
- Adapté pour documents simples (notes) ET pour documents complexes (thèse).
|
- Adapté pour documents simples (notes) ET pour documents complexes (thèse).
|
||||||
- Constitution d'une base de connaissance.
|
- Constitution d'une base de connaissance.
|
||||||
- Détail de la syntaxe depuis HackMD.
|
- Détail de la syntaxe depuis HackMD.
|
||||||
- Importance d'apprendre et d'utiliser régulièrement.
|
- Documentation en lien dans le support de cours (page 4).
|
||||||
|
- Générateur de tableau en ligne.
|
||||||
|
- Intérêt d'apprendre la syntaxe et de l'utiliser régulièrement.
|
||||||
- Titres.
|
- Titres.
|
||||||
- Paragraphes.
|
- Paragraphes.
|
||||||
- Italiques et gras.
|
- Italiques et gras.
|
||||||
- Liens. Sans et avec référence.
|
- Liens. Sans et avec référence.
|
||||||
- Image.
|
- Image.
|
||||||
- Éditeurs :
|
|
||||||
- Dédiés (typora, abricotine).
|
|
||||||
- Bases de connaissance (obsidian).
|
|
||||||
- Académique (Zettlr), intégration facilitée de Zotero.
|
|
||||||
- Généralistes (visual studio code). Si vous en utiliser déjà un. Si vous
|
|
||||||
avez un usage avancé.
|
|
||||||
- Fonctionnalités nécessaires :
|
- Fonctionnalités nécessaires :
|
||||||
- Prévisualisation.
|
- Prévisualisation (HackMD).
|
||||||
- Autocomplétion de la syntaxe.
|
- Autocomplétion de la syntaxe.
|
||||||
- Navigateur de fichiers.
|
- Navigateur de fichiers (VScode).
|
||||||
- Un plus :
|
- Un plus :
|
||||||
- Correcteur orthographique.
|
- Correcteur orthographique.
|
||||||
- Formatage automatique des tableaux.
|
- Formatage automatique des tableaux.
|
||||||
- Suivi des liens internes, entre fichiers.
|
- Suivi des liens internes, entre fichiers.
|
||||||
- Usages avancés :
|
- Usages avancés :
|
||||||
- Démo avec Visual Code.
|
- Démo avec Visual Code. Ouvrir le dossier `~/bc/`.
|
||||||
- Ouvrir README, suivre le lien.
|
- Ouvrir README, suivre un lien.
|
||||||
- Chercher le fichier rdv-info-déroulé.
|
- Chercher un fichier `ctrl+p`.
|
||||||
- Chercher la chaîne `rdv-info`.
|
- Chercher une chaîne avec `ctrl+shift+f`.
|
||||||
|
- Recherche et remplacer une chaîne avec `ctrl+shift+h`.
|
||||||
|
- Conversion simple de documents :
|
||||||
|
- Aller dans le dossier `~/dev/rdv-info-markdown/intro/`.
|
||||||
|
- Afficher le fichier `intro-déroulé.md`.
|
||||||
|
- Convertir en DOCX, ODT, PDF et montrer le résultat.
|
||||||
|
- Insertion d'une référence bibliographique :
|
||||||
|
- Monter que dans le dossier, il y a le fichier `references.bib`.
|
||||||
|
- Afficher le contenu du fichier et expliquer brièvement.
|
||||||
|
- Monter le *frontmatter* et expliquer.
|
||||||
|
- Ajouter le lien vers la bibliographie.
|
||||||
|
- Insérer une citation et le titre pour la bibliographie.
|
||||||
|
- Convertir en PDF.
|
||||||
|
|
||||||
|
## Après la présentation
|
||||||
|
|
||||||
|
- Partager le lien pour le formulaire de feedback : \
|
||||||
|
<https://formulaire.unige.ch/outils/limesurvey3/index.php/664325?&lang=fr>.
|
||||||
|
- Mentionner la possibilité d'ateliers pour aller plus loin.
|
||||||
|
|
||||||
|
|
237
intro/intro.md
237
intro/intro.md
|
@ -2,7 +2,7 @@
|
||||||
title: Introduction à la prise de note avec markdown
|
title: Introduction à la prise de note avec markdown
|
||||||
author:
|
author:
|
||||||
- Igor Milhit^[Uni CMU]
|
- Igor Milhit^[Uni CMU]
|
||||||
date: Printemps 2023
|
date: Printemps 2024
|
||||||
creation_date: 2023-04-19T11:35:14+02:00
|
creation_date: 2023-04-19T11:35:14+02:00
|
||||||
id: 20230419113601
|
id: 20230419113601
|
||||||
tags: [note, markdown]
|
tags: [note, markdown]
|
||||||
|
@ -17,12 +17,13 @@ toc-title: Table des matières
|
||||||
|
|
||||||
## Objectifs
|
## Objectifs
|
||||||
|
|
||||||
- Quel intérêt ? Pourquoi se mettre à rédiger avec markdown ?
|
- Avantages et inconvénients.
|
||||||
- Comment : aperçu de la syntaxe de base.
|
- Aperçu de la syntaxe de base.
|
||||||
- Qu'attendre d'un éditeur de texte (pour rédiger avec markdown) ?
|
- Les fonctionnalités minimales d’un éditeur.
|
||||||
- Bref aperçu des possibilités avancées :
|
- Bref aperçu des possibilités avancées :
|
||||||
- Ensemble de notes.
|
- Ensemble de notes.
|
||||||
- Conversion.
|
- Conversion dans d’autres formats.
|
||||||
|
- Insertion de références bibliographiques.
|
||||||
|
|
||||||
:::{#licence}
|
:::{#licence}
|
||||||
![Logo de la licence CC BY-SA 4.0](../static/by-sa.svg) \
|
![Logo de la licence CC BY-SA 4.0](../static/by-sa.svg) \
|
||||||
|
@ -32,43 +33,46 @@ toc-title: Table des matières
|
||||||
[cc-by-sa]: https://creativecommons.org/licenses/by-sa/4.0/deed.fr "Texte de la licence en français"
|
[cc-by-sa]: https://creativecommons.org/licenses/by-sa/4.0/deed.fr "Texte de la licence en français"
|
||||||
[sources]: https://git.milhit.ch/igor/rdv-info-markdown
|
[sources]: https://git.milhit.ch/igor/rdv-info-markdown
|
||||||
|
|
||||||
## Pourquoi ? [^0] {#1st-section}
|
## Définition, avantages et inconvénients[^0] {#first-section}
|
||||||
|
|
||||||
Le plus important pour *ses* propres habitudes de travail est de trouver des
|
Le plus important est de trouver des méthodes et des outils adaptés à *ses
|
||||||
méthodes et des outils adaptés à *ses besoins*. Ci-dessous sont listés quelques
|
besoins*. Ci-dessous sont listés quelques arguments en faveur de l'usage de
|
||||||
arguments en faveur de l'usage de la syntaxe markdown, mais aucune méthode ou
|
fichiers au format texte et de la syntaxe markdown, mais aucune méthode ou
|
||||||
outil n'est *la* solution miracle pertinente dans *tous* les contextes.
|
outil n'est *la* solution miracle pertinente dans *tous* les contextes.
|
||||||
|
|
||||||
L'information numérique est utile si elle est **structurée**. Un fichier PDF
|
### Définition
|
||||||
bien conçu donne accès dans la barre latérale à la table des matières pour
|
|
||||||
faciliter la navigation. Cette structure s'obtient, par exemple, avec l'usage
|
|
||||||
cohérent des styles et des niveaux de titre dans un traitement de texte. La
|
|
||||||
syntaxe markdown est une autre méthode, surprenante au début, mais qui s'avère
|
|
||||||
particulièrement efficace.[^1]
|
|
||||||
|
|
||||||
Markdown est une syntaxe qui permet, **simplement avec des éléments textuels**,
|
L'information numérique est utile si elle est **structurée**. La table des
|
||||||
de structurer (niveau de titres) et de mettre en forme du texte. Cette
|
matières d'un document numérique devrait être constituée de liens vers les
|
||||||
structure et cette mise en forme sont compréhensibles par des êtres humains et
|
sections. Cette structure peut s'obtenir par l'usage des styles et des niveaux
|
||||||
par des programmes informatiques. Aussi, les documents rédigés à l'aide de
|
de titre dans un traitement de texte (Microsoft Word, Libreoffice Writer,
|
||||||
markdown peuvent soit être lus tels quels, soit être traités par un
|
etc.). La syntaxe markdown est une autre méthode, très efficace.[^1]
|
||||||
programme pour afficher un « rendu » sous forme de page web, de document PDF ou
|
|
||||||
DOCX.
|
Markdown est *un langage de balisage léger*. Concrètement, il s'agit d'une
|
||||||
|
syntaxe qui permet, **uniquement avec des éléments textuels**, de structurer
|
||||||
|
(niveau de titres) et de mettre en forme du texte. Cette structure et cette
|
||||||
|
mise en forme sont compréhensibles par des êtres humains ou par des programmes
|
||||||
|
informatiques. Aussi, les documents rédigés à l'aide de markdown peuvent soit
|
||||||
|
être lus tels quels, soit être traités par un programme pour afficher un
|
||||||
|
« rendu » sous forme de page web, de document PDF ou DOCX.
|
||||||
|
|
||||||
La syntaxe markdown est relativement simple à apprendre et mémoriser. Aussi, la
|
La syntaxe markdown est relativement simple à apprendre et mémoriser. Aussi, la
|
||||||
rédaction au format markdown repose sur très peu de fonctionnalités du
|
rédaction au format markdown repose sur très peu de fonctionnalités du
|
||||||
logiciel. Le bloc note suffit, même si un peu plus de confort est souhaitable.
|
logiciel. Le bloc note suffit, même si un peu plus de confort est souhaitable.
|
||||||
|
|
||||||
Cette syntaxe est utilisée par de nombreux logiciels ou services en lignes pour
|
Cette syntaxe est utilisée par de nombreux logiciels ou services en lignes pour
|
||||||
la rédaction. C'est le cas des notes dans Zotero ou d'éditeurs en ligne
|
la rédaction. C'est le cas des notes dans Zotero ou d'éditeurs en ligne adaptés
|
||||||
adaptés au travail collaboratif ([HedgeDoc][hd], [HackMD][hm], etc.).
|
au travail collaboratif ([HedgeDoc][1], [HackMD][2], etc.).
|
||||||
|
|
||||||
|
### Avantages
|
||||||
|
|
||||||
Les fichiers utilisés ne sont composés que de caractères textuels. Aussi, ils
|
Les fichiers utilisés ne sont composés que de caractères textuels. Aussi, ils
|
||||||
sont :
|
sont :
|
||||||
|
|
||||||
- Simples et légers :
|
- Simples et légers :
|
||||||
- Ne dépendent pas d'un logiciel spécifique, ni d'un système d'exploitation.
|
- Ne dépendent pas d'un logiciel spécifique, ni d'un système d'exploitation.
|
||||||
- Pourront être lus et édités dans n'importe quel contexte, et probablement
|
- Pourront être ouverts et édités dans n'importe quel contexte, et
|
||||||
dans un avenir éloigné (pérennité).
|
probablement dans un avenir éloigné (pérennité).
|
||||||
- Rapides à ouvrir. Avec n'importe quel éditeur de texte (bloc note Windows,
|
- Rapides à ouvrir. Avec n'importe quel éditeur de texte (bloc note Windows,
|
||||||
Notepad++, TextEdit, Gedit, VIM, EMACS, etc.)
|
Notepad++, TextEdit, Gedit, VIM, EMACS, etc.)
|
||||||
- Faciles à sauvegarder, copier, synchroniser, partager.
|
- Faciles à sauvegarder, copier, synchroniser, partager.
|
||||||
|
@ -83,43 +87,71 @@ Grâce à ces propriétés, il est possible :
|
||||||
|
|
||||||
- De prendre des notes au clavier rapidement, de manière structurée, et avec
|
- De prendre des notes au clavier rapidement, de manière structurée, et avec
|
||||||
une recherche interne efficace.
|
une recherche interne efficace.
|
||||||
- De rédiger des documents simples ou complexes, petits comme une fiche de
|
- De rédiger des documents simples (une note) ou complexes (une thèse).
|
||||||
notes ou volumineux comme une thèse.
|
|
||||||
- De regrouper un ensemble de notes dans un « bloc note » numérique et de
|
- De regrouper un ensemble de notes dans un « bloc note » numérique et de
|
||||||
naviguer rapidement dans cet ensemble, de rechercher de l'information
|
naviguer dans cet ensemble, de rechercher de l'information .
|
||||||
facilement.
|
|
||||||
- De manière similaire, de regrouper un ensemble de fichiers pour constituer un
|
- De manière similaire, de regrouper un ensemble de fichiers pour constituer un
|
||||||
document complexe, comme un livre ou un article scientifique.
|
document complexe, comme un livre ou un article scientifique.
|
||||||
- Enfin de convertir à partir des même fichiers le document dans plusieurs
|
- Enfin de convertir à partir des mêmes fichiers le document dans plusieurs
|
||||||
formats pour une diffusion sur le web, la lecture dans un PDF ou un ePub.
|
formats pour une diffusion sur le web, la lecture dans un PDF ou un ePub
|
||||||
|
(compatible avec une liseuse électronique).
|
||||||
|
|
||||||
Enfin, il y a deux arguments de *geek* :
|
Enfin, les fichiers textuels sont particulièrement adaptés au suivi de
|
||||||
|
|
||||||
- Les fichiers textuels sont particulièrement adaptés pour en suivre
|
|
||||||
l'historique des modification (*versioning*), par exemple avec le logiciel
|
l'historique des modification (*versioning*), par exemple avec le logiciel
|
||||||
[Git][git].
|
[Git][3].
|
||||||
- Jouer avec markdown et les conversions dans de multiples format est vraiment
|
|
||||||
amusant, bien que parfois source de complications inutiles. 😅
|
|
||||||
|
|
||||||
[text]: https://www.arthurperret.fr/cours/format-texte.html
|
### Inconvénients
|
||||||
[hd]: https://hedgedoc.org/
|
|
||||||
[hm]: https://hackmd.io/
|
|
||||||
[git]: https://fr.wikipedia.org/wiki/Git "Article Wikipedia en français"
|
|
||||||
|
|
||||||
## Comment ?
|
Pour un usage simple, l'apprentissage n'est pas très difficile. La syntaxe de
|
||||||
|
base s'acquiert rapidement. Pour parvenir à rédiger des documents relativement
|
||||||
|
complexes (notes, citations et bibliographies, etc.), cet apprentissage est un
|
||||||
|
peu plus long. Afin de maîtriser la conversion dans différents formats, tout en
|
||||||
|
personnalisant la mise en forme des documents obtenus, il devient vite
|
||||||
|
nécessaire d'apprendre à utiliser d'autres outils, à modifier des modèles dans
|
||||||
|
les formats désirés (HTML, DOCX, peut-être LaTeX, etc.).
|
||||||
|
|
||||||
La syntaxe markdown est très souvent expliquée sur le web :
|
Certains éditeurs intègrent la fonction de conversion, mais elle repose sur
|
||||||
|
l'installation de logiciels annexes, principalement `pandoc`, mais aussi une
|
||||||
|
distribution LaTeX pour obtenir une conversion en PDF. Ces outils ne sont pas
|
||||||
|
si difficiles à installer. Surtout, ils sont libres, gratuits et disponibles
|
||||||
|
pour Windows, Mac OS ou Linux.
|
||||||
|
|
||||||
|
Pour utiliser `pandoc`, qui est l'outil de conversion le plus complet, il est
|
||||||
|
nécessaire de le faire « en ligne de commande » plutôt que dans une interface
|
||||||
|
graphique, avec la souris. C'est un élément en plus à apprendre, mais qui ouvre
|
||||||
|
beaucoup de possibilités.
|
||||||
|
|
||||||
|
Le travail collaboratif à plusieurs est toujours possible, mais selon les cas
|
||||||
|
avec une certaine friction. La situation la plus simple est d'utiliser un
|
||||||
|
éditeur en ligne qui offre des fonctionnalités d'édition à plusieurs. Souvent
|
||||||
|
cela est au prix de ne pouvoir disposer de toute la puissance de `pandoc`, du
|
||||||
|
moins directement.
|
||||||
|
|
||||||
|
Toujours dans le cas où toutes les personnes qui collaborent sont capables de
|
||||||
|
travailler avec les mêmes outils, elles peuvent toujours travailler ensemble en
|
||||||
|
se mettant d'accord sur un « workflow », par exemple grâce à `git` mentionné
|
||||||
|
plus haut. Mais c'est un outil de plus à apprendre. Et de nouvelles
|
||||||
|
possibilités à découvrir.
|
||||||
|
|
||||||
|
Enfin, si les personnes avec qui on collabore ne veulent ou ne peuvent pas
|
||||||
|
utiliser les mêmes méthodes, alors il faudra mettre en place un processus
|
||||||
|
d'export et d'import un peu complexe, mais en partie automatisable
|
||||||
|
[@perretMarkdownTraitementTexte2022].
|
||||||
|
|
||||||
|
## La syntaxe markdown
|
||||||
|
|
||||||
|
La syntaxe markdown est très bien documentée sur le web :
|
||||||
|
|
||||||
- La documentation « officielle » est disponible sur le site personnel d'un des
|
- La documentation « officielle » est disponible sur le site personnel d'un des
|
||||||
concepteurs de la syntaxe : <https://daringfireball.net/projects/markdown/>
|
concepteurs de la syntaxe : <https://daringfireball.net/projects/markdown/>
|
||||||
[@gruberMarkdown2004].
|
[@gruberMarkdown2004].
|
||||||
- Le site *flus* propose Une documentation en français et très claire :
|
- Le site *flus* propose Une documentation en français et très claire :
|
||||||
<https://flus.fr/carnet/markdown.html> [@fressinaudGuideMarkdown2022].
|
<https://flus.fr/carnet/markdown.html> [@fressinaudGuideMarkdown2022].
|
||||||
- Il y a plusieurs variantes de la syntaxe et un site essaie de proposer un
|
- Il y a plusieurs variantes (ou extensions) de la syntaxe et un site essaie de
|
||||||
standard. Il met à disposition un tutoriel interactif :
|
proposer un standard. Il met à disposition un tutoriel interactif :
|
||||||
<https://commonmark.org/help/> [@commonmarkCommonMark].
|
<https://commonmark.org/help/> [@commonmarkCommonMark].
|
||||||
- Arthur Perret a traduit en français ce même tutoriel, disponible sur sa page
|
- Arthur Perret a traduit en français ce même tutoriel, disponible sur sa page
|
||||||
qui explique ce qu'est markdown :
|
expliquant ce qu'est markdown :
|
||||||
<https://www.arthurperret.fr/cours/markdown.html> [@perretMarkdown2022].
|
<https://www.arthurperret.fr/cours/markdown.html> [@perretMarkdown2022].
|
||||||
|
|
||||||
Pour les tableaux, il est fortement conseillé :
|
Pour les tableaux, il est fortement conseillé :
|
||||||
|
@ -144,13 +176,16 @@ en deux grandes catégories :
|
||||||
Dans les deux cas, des fonctionnalités de base qui sont presque
|
Dans les deux cas, des fonctionnalités de base qui sont presque
|
||||||
incontournables :
|
incontournables :
|
||||||
|
|
||||||
- Une prévisualisation, le plus souvent sour la forme d'un *rendu* HTML.
|
- Une prévisualisation, le plus souvent sous la forme d'un *rendu* HTML. Cette
|
||||||
- La possibilité de naviguer dans une arborescence de fichiers.
|
fonctionnalité a l'avantage de permettre de se faire une idée du résultat
|
||||||
|
sans devoir générer le fichier final.
|
||||||
|
- La possibilité de naviguer dans une arborescence de fichiers, en général dans
|
||||||
|
une barre sur le côté de l'interface.
|
||||||
- Une autocomplétion, pour faciliter l'entrée de syntaxe avec des `[]` ou des
|
- Une autocomplétion, pour faciliter l'entrée de syntaxe avec des `[]` ou des
|
||||||
`()`.
|
`()`.
|
||||||
|
|
||||||
D'autres fonctionnalités ne sont pas indispensables, mais deviennent rapidement
|
D'autres fonctionnalités ne sont pas indispensables, mais deviennent rapidement
|
||||||
assez utiles :
|
utiles :
|
||||||
|
|
||||||
- La correction orthographique pour les langues dans lesquelles vous rédigez.
|
- La correction orthographique pour les langues dans lesquelles vous rédigez.
|
||||||
- Un formatage automatique des tableaux.
|
- Un formatage automatique des tableaux.
|
||||||
|
@ -166,7 +201,7 @@ votre appareil (ordinateur, tablette, téléphone) ou d'un service web.
|
||||||
**Typora** est éditeur qui met l'accent sur son interface épurée. Il est disponible
|
**Typora** est éditeur qui met l'accent sur son interface épurée. Il est disponible
|
||||||
pour tous les systèmes d'exploitation, payant. <https://typora.io/>
|
pour tous les systèmes d'exploitation, payant. <https://typora.io/>
|
||||||
|
|
||||||
![Interface de GhostWriter][gw]
|
![Interface de GhostWriter][6]
|
||||||
|
|
||||||
**GhostWriter** est libre et gratuit, pour Windows et Linux
|
**GhostWriter** est libre et gratuit, pour Windows et Linux
|
||||||
principalement.[^2] <https://ghostwriter.kde.org/fr/>
|
principalement.[^2] <https://ghostwriter.kde.org/fr/>
|
||||||
|
@ -183,29 +218,26 @@ se limite pas à l'édition de fichiers markdown, mais permet de constituer une
|
||||||
base de connaissance basée sur des notes, et cela de manière très complète.
|
base de connaissance basée sur des notes, et cela de manière très complète.
|
||||||
<https://obsidian.md/>
|
<https://obsidian.md/>
|
||||||
|
|
||||||
![Interface de Zettlr][zettlr]
|
![Interface de Zettlr][5]
|
||||||
|
|
||||||
**Zettlr** est libre et disponible pour tous les systèmes d'exploitation. Il
|
**Zettlr** est libre et disponible pour tous les systèmes d'exploitation. Il
|
||||||
est destiné à un usage académique, que ce soit pour construire une base de
|
est destiné à un usage académique, que ce soit pour construire une base de
|
||||||
connaissance à partir de notes ou pour rédiger un travail de mémoire ou un
|
connaissance à partir de notes ou pour rédiger un travail de mémoire ou un
|
||||||
article scientifique. Il intègre Zotero pour la gestion des références.
|
article scientifique. Il intègre Zotero pour la gestion des références.
|
||||||
|
|
||||||
En ligne, on peut mentionner à nouveau le service [HackMD][hm] ou le logiciel
|
En ligne, on peut mentionner à nouveau le service [HackMD][2] ou le logiciel
|
||||||
[HedgeDoc][hd] qui permet non seulement d'éditer des fichiers mardkown avec une
|
[HedgeDoc][1] qui permet non seulement d'éditer des fichiers markdown avec une
|
||||||
prévisualisation, mais également de le faire à plusieurs, de disposer d'un
|
prévisualisation, mais également de le faire à plusieurs, de disposer d'un
|
||||||
suivi des modfications et de commenter.
|
suivi des modifications et de commenter.
|
||||||
|
|
||||||
![Interface de l'éditeur HackMD][interface-hd]
|
![Interface de l'éditeur HackMD][4]
|
||||||
|
|
||||||
[interface-hd]: ../static/hackmd.png
|
|
||||||
[zettlr]: ../static/zettlr.png
|
|
||||||
[gw]: ../static/ghostwriter.png
|
|
||||||
|
|
||||||
### Éditeurs généralistes
|
### Éditeurs généralistes
|
||||||
|
|
||||||
*Généralistes* car ces éditeurs ne sont pas limités à l'édition de fichier
|
*Généralistes* car ces éditeurs ne sont pas limités à l'édition de fichier
|
||||||
markdown. Le plus souvent, ce sont des *éditeurs de texte*, en général utilisés
|
markdown. Le plus souvent, ce sont des *éditeurs de texte* utilisés
|
||||||
par des développeurs pour écrire du code informatique. Normalement, ils
|
par des développeurs pour écrire du code informatique. Le plus souvent, ils
|
||||||
disposent d'un écosystème d'extensions afin de s'adapter à des besoins
|
disposent d'un écosystème d'extensions afin de s'adapter à des besoins
|
||||||
spécifiques. De ce fait, ils sont très puissants.
|
spécifiques. De ce fait, ils sont très puissants.
|
||||||
|
|
||||||
|
@ -218,9 +250,7 @@ suivant, notamment :
|
||||||
- VIM ou neovim, libre et gratuit, pour tous les systèmes d'exploitation.
|
- VIM ou neovim, libre et gratuit, pour tous les systèmes d'exploitation.
|
||||||
- EMACS, libre et gratuit.
|
- EMACS, libre et gratuit.
|
||||||
|
|
||||||
![Interface de Visual Studio Code][vscode]
|
![Interface de Visual Studio Code][7]
|
||||||
|
|
||||||
[vscode]: ../static/vscode.png
|
|
||||||
|
|
||||||
## Aperçu des possibilités avancées
|
## Aperçu des possibilités avancées
|
||||||
|
|
||||||
|
@ -231,10 +261,10 @@ dans le même répertoires (y compris avec des sous répertoires) et de faire de
|
||||||
liens entre les fichiers (et même au sein d'un seul fichier).
|
liens entre les fichiers (et même au sein d'un seul fichier).
|
||||||
|
|
||||||
Certains éditeurs, ou certaines extensions d'éditeurs, proposent des facilités
|
Certains éditeurs, ou certaines extensions d'éditeurs, proposent des facilités
|
||||||
pour générer ces liens, au prix d'une syntaxe *ad hoc*. Mais il est
|
pour générer ces liens, au prix d'une syntaxe *ad hoc* (« wiki links »). Mais
|
||||||
parfaitement possible de le faire avec la syntaxe « normale » du lien.
|
il est parfaitement possible de le faire avec la syntaxe « normale » du lien.
|
||||||
|
|
||||||
![Lien depuis le fichier `README.md` vers le fichier `points-a-ameliorer.md`][lienEntreFichiers]
|
![Lien depuis le fichier `README.md` vers le fichier `points-a-ameliorer.md`][8]
|
||||||
|
|
||||||
La figure 5 montre sur la gauche une arborescence de fichiers, avec
|
La figure 5 montre sur la gauche une arborescence de fichiers, avec
|
||||||
des sous-répertoires, et dans le fichier affiché (`README.md`), un lien vers le
|
des sous-répertoires, et dans le fichier affiché (`README.md`), un lien vers le
|
||||||
|
@ -247,7 +277,7 @@ Code. Il y a 13 occurrences du terme dans 7 fichiers. Ce type de recherche est
|
||||||
facilité par le fait que ce sont des fichiers au format texte et se retrouve
|
facilité par le fait que ce sont des fichiers au format texte et se retrouve
|
||||||
dans la plupart des éditeurs généralistes de qualité.
|
dans la plupart des éditeurs généralistes de qualité.
|
||||||
|
|
||||||
![Recherche dans Visual Studio Code][rechCode]
|
![Recherche dans Visual Studio Code][9]
|
||||||
|
|
||||||
### Export vers d'autres formats
|
### Export vers d'autres formats
|
||||||
|
|
||||||
|
@ -262,16 +292,77 @@ parfois à l'aide de logiciels spécifiques. Par exemple, pour produire un
|
||||||
fichier PDF, il peut utiliser plusieurs méthodes, dont LaTeX, ce qui suppose
|
fichier PDF, il peut utiliser plusieurs méthodes, dont LaTeX, ce qui suppose
|
||||||
d'en avoir une version installée.
|
d'en avoir une version installée.
|
||||||
|
|
||||||
|
La commande pour une conversion simple est de la forme suivante :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pandoc --output fichier.docx fichier.md
|
||||||
|
```
|
||||||
|
|
||||||
|
Le format obtenu correspond à celui qui est indiqué en extension du nom de
|
||||||
|
fichier de sortie `--output`, ici du DOCX. Mais il est possible de
|
||||||
|
l'expliciter :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pandoc --to docx --output fichier.docx fichier.md
|
||||||
|
```
|
||||||
|
|
||||||
Le support de cours de cette introduction à markdown a été rédigée en markdown
|
Le support de cours de cette introduction à markdown a été rédigée en markdown
|
||||||
et est exportée en PDF grâce à `pandoc` et à *Paged.js*.[^3]
|
et est exportée en PDF grâce à `pandoc` et à *Paged.js*.[^3]
|
||||||
|
|
||||||
[lienEntreFichiers]: ../static/lien-entre-fichiers.png
|
### Citations et Bibliographie
|
||||||
[rechCode]: ../static/recherche-vscode.png
|
|
||||||
|
|
||||||
## Bibliographie
|
Pour insérer des citations et générer une bibliographie, il est nécessaire
|
||||||
|
d'avoir au moins une collection de références bibliographiques, par exemple
|
||||||
|
sous la forme d'un fichier `.bib`. Pour obtenir ce fichier, il est possible de
|
||||||
|
passer par Zotero et d'exporter une collection dans le format BibTex (ou Better
|
||||||
|
BibTex avec l'extension Zotero du même nom.)
|
||||||
|
|
||||||
[^0]: Cette section repose beaucoup sur la page [Format texte][text]
|
Dans ce fichier (et dans Zotero), on trouve pour chaque référence une « clé de
|
||||||
d'Arthur Perret [@perretFormatTexte2022].
|
citation » qui permet de l'identifier de manière unique. C'est cette clé que
|
||||||
|
l'on va insérer dans notre fichier markdown pour indiquer une citation. Elle
|
||||||
|
est insérée avec la syntaxe suivante : `[@clé-de-citation]`.
|
||||||
|
|
||||||
|
On peut encore ajouter à la fin de notre fichier un titre de deuxième niveau
|
||||||
|
avec le texte bibliographie, pour que `pandoc` puisse y insérer la
|
||||||
|
bibliographie.
|
||||||
|
|
||||||
|
Pour être en mesure de traiter ces informations, il faut utiliser l'option de
|
||||||
|
`--citeproc` intégrée dans `pandoc` :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pandoc --citeproc \
|
||||||
|
--to=pdf --pdf-engine=xelatex \
|
||||||
|
--bibliography=references.bib \
|
||||||
|
--output fichier.pdf fichier.md
|
||||||
|
```
|
||||||
|
|
||||||
|
Dans l'exemple ci-dessus, nous voyons l'option `--citeproc` et l'option
|
||||||
|
`--bibliography=` qui indique où se trouve le fichier des références
|
||||||
|
bibliographiques. Par défaut le style est Chicago, de type auteur-date.
|
||||||
|
|
||||||
|
Pour aller plus loin, le mieux est de consulter la [documentation
|
||||||
|
officielle][10] de `pandoc.`
|
||||||
|
|
||||||
|
## Bibliographie {#bibliography}
|
||||||
|
|
||||||
|
<!-- liens -->
|
||||||
|
|
||||||
|
[0]: https://www.arthurperret.fr/cours/format-texte.html
|
||||||
|
[1]: https://hedgedoc.org/
|
||||||
|
[2]: https://hackmd.io/
|
||||||
|
[3]: https://fr.wikipedia.org/wiki/Git "Article Wikipedia en français"
|
||||||
|
[4]: ../static/hackmd.png
|
||||||
|
[5]: ../static/zettlr.png
|
||||||
|
[6]: ../static/ghostwriter.png
|
||||||
|
[7]: ../static/vscode.png
|
||||||
|
[8]: ../static/lien-entre-fichiers.png
|
||||||
|
[9]: ../static/recherche-vscode.png
|
||||||
|
[10]: https://pandoc.org/MANUAL.html#citations
|
||||||
|
|
||||||
|
<!-- notes -->
|
||||||
|
|
||||||
|
[^0]: Cette section repose beaucoup sur la page [Format texte][0] d'Arthur
|
||||||
|
Perret [@perretFormatTexte2022].
|
||||||
[^1]: Markdown n'est pas le seul langage de balisage léger existant, bien que
|
[^1]: Markdown n'est pas le seul langage de balisage léger existant, bien que
|
||||||
ce soit le plus répandu. D'autres sont encore plus robustes ou puissants, comme
|
ce soit le plus répandu. D'autres sont encore plus robustes ou puissants, comme
|
||||||
*RestructuredText* ou *AsciiDoc*.
|
*RestructuredText* ou *AsciiDoc*.
|
||||||
|
|
|
@ -0,0 +1,370 @@
|
||||||
|
@article{bunchIndirectReferenceIntervals2022,
|
||||||
|
title = {Indirect Reference Intervals Using an {{R}} Pipeline.},
|
||||||
|
author = {Bunch, Dustin R.},
|
||||||
|
date = {2022-04},
|
||||||
|
journaltitle = {J Mass Spectrom Adv Clin Lab},
|
||||||
|
volume = {24},
|
||||||
|
eprint = {35252947},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {22--30},
|
||||||
|
location = {Netherlands},
|
||||||
|
issn = {2667-145X 2667-1468},
|
||||||
|
doi = {10.1016/j.jmsacl.2022.02.004},
|
||||||
|
abstract = {BACKGROUND: Indirect reference intervals require robust statistical approaches to separate the pathological and healthy values. This can be achieved with a data pipeline created in R, a freely available statistical programming language. METHODS: A data pipeline was created to ingest, partition, normalize, remove outliers, and identify reference intervals for testosterone (Testo; n ~=~7,207) and aspartate aminotransferase (AST; n ~=~5,882) using data sets from NHANES. RESULTS: The estimates for AST and Testo determined by this pipeline approximated current RIs. Care should be taken when using this pipeline as there are limitations that depend on the pathology of the analyte and the data set being used for RI estimation. CONCLUSIONS: R can be used to create a robust statistical reference interval pipeline.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC8889237},
|
||||||
|
keywords = {ANOVA Analysis of variance,AST aspartate aminotransferase,CLSI Clinical Laboratory Standards Institute,cmu,EHR electronic health record,IFCC International Federation of Clinical Chemistry and Laboratory Medicine,LC-MS/MS Liquid chromatography tandem mass spectrometry,LIS Laboratory informatics system,markdown,Mixtools,non lu,pubmed,R markdown,R markdown tutorial,Reference interval,RI reference interval,SDI Standard deviation index,SDR Standard deviation ratio,Testo Testosterone,TukeyHSD Tukey multiple pairwise-comparisons,z5 Critical z-score},
|
||||||
|
file = {/home/igor/Zotero/storage/YYP9JQTY/Bunch_2022_Indirect reference intervals using an R pipeline.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{chapmanExpectedPosterioriScoring2022,
|
||||||
|
title = {Expected a Posteriori Scoring in {{PROMIS}}(®).},
|
||||||
|
author = {Chapman, Robert},
|
||||||
|
date = {2022-06-03},
|
||||||
|
journaltitle = {J Patient Rep Outcomes},
|
||||||
|
volume = {6},
|
||||||
|
number = {1},
|
||||||
|
eprint = {35657454},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {59},
|
||||||
|
location = {Germany},
|
||||||
|
issn = {2509-8020},
|
||||||
|
doi = {10.1186/s41687-022-00464-9},
|
||||||
|
abstract = {BACKGROUND: The Patient-Reported Outcome Measurement Information System(®) (PROMIS(®)) was developed to reliably measure health-related quality of life using the patient's voice. To achieve these aims, PROMIS utilized Item Response Theory methods in its development, validation and implementation. PROMIS measures are typically scored using a specific method to calculate scores, called Expected A Posteriori estimation. BODY: Expected A Posteriori scoring methods are flexible, produce accurate scores and can be efficiently calculated by statistical software. This work seeks to make Expected A Posteriori scoring methods transparent and accessible to a larger audience through description, graphical demonstration and examples. Further applications and practical considerations of Expected A Posteriori scoring are presented and discussed. All materials used in this paper are made available through the R Markdown reproducibility framework and are intended to be reviewed and reused. Commented statistical code for the calculation of Expected A Posteriori scores is included. CONCLUSION: This work seeks to provide the reader with a summary and visualization of the operation of Expected A Posteriori scoring, as implemented in PROMIS. As PROMIS is increasingly adopted and implemented, this work will provide a basis for making psychometric methods more accessible to the PROMIS user base.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC9166925},
|
||||||
|
keywords = {cmu,markdown,non lu,pubmed,R markdown},
|
||||||
|
file = {/home/igor/Zotero/storage/7R2KLGBS/Chapman_2022_Expected a posteriori scoring in PROMIS(®).pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{commonmarkCommonMark,
|
||||||
|
title = {{{CommonMark}}},
|
||||||
|
author = {CommonMark},
|
||||||
|
url = {https://commonmark.org/},
|
||||||
|
urldate = {2023-04-25},
|
||||||
|
langid = {english},
|
||||||
|
organization = {CommonMark},
|
||||||
|
keywords = {cmu,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/ESNTHT9H/commonmark.org.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{considineToolEncourageMinimum2019,
|
||||||
|
title = {A {{Tool}} to {{Encourage Minimum Reporting Guideline Uptake}} for {{Data Analysis}} in {{Metabolomics}}.},
|
||||||
|
author = {Considine, Elizabeth C. and Salek, Reza M.},
|
||||||
|
date = {2019-03-05},
|
||||||
|
journaltitle = {Metabolites},
|
||||||
|
volume = {9},
|
||||||
|
number = {3},
|
||||||
|
eprint = {30841575},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
location = {Switzerland},
|
||||||
|
issn = {2218-1989},
|
||||||
|
doi = {10.3390/metabo9030043},
|
||||||
|
abstract = {Despite the proposal of minimum reporting guidelines for metabolomics over a decade ago, reporting on the data analysis step in metabolomics studies has been shown to be unclear and incomplete. Major omissions and a lack of logical flow render the data analysis' sections in metabolomics studies impossible to follow, and therefore replicate or even imitate. Here, we propose possible reasons why the original reporting guidelines have had poor adherence and present an approach to improve their uptake. We present in this paper an R markdown reporting template file that guides the production of text and generates workflow diagrams based on user input. This R Markdown template contains, as an example in this instance, a set of minimum information requirements specifically for the data pre-treatment and data analysis section of biomarker discovery metabolomics studies, (gleaned directly from the original proposed guidelines by Goodacre at al). These minimum requirements are presented in the format of a questionnaire checklist in an R markdown template file. The R Markdown reporting template proposed here can be presented as a starting point to encourage the data analysis section of a metabolomics manuscript to have a more logical presentation and to contain enough information to be understandable and reusable. The idea is that these guidelines would be open to user feedback, modification and updating by the metabolomics community via GitHub.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC6468746},
|
||||||
|
keywords = {cmu,data analysis,markdown,minimum guidelines,non lu,pubmed,R markdown,reporting,reproducibility},
|
||||||
|
file = {/home/igor/Zotero/storage/RSRUDDYS/Considine_Salek_2019_A Tool to Encourage Minimum Reporting Guideline Uptake for Data Analysis in.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{daasDynamicPublicationMedia2022,
|
||||||
|
title = {Dynamic Publication Media with the {{COPASI R Connector}} ({{CoRC}}).},
|
||||||
|
author = {Daas, Johanna C. J. and Förster, Jonas D. and Pahle, Jürgen},
|
||||||
|
date = {2022-06},
|
||||||
|
journaltitle = {Math Biosci},
|
||||||
|
volume = {348},
|
||||||
|
eprint = {35452633},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {108822},
|
||||||
|
location = {United States},
|
||||||
|
issn = {1879-3134 0025-5564},
|
||||||
|
doi = {10.1016/j.mbs.2022.108822},
|
||||||
|
abstract = {In this article we show how dynamic publication media and the COPASI R Connector (CoRC) can be combined in a natural and synergistic way to communicate (biochemical) models. Dynamic publication media are becoming a popular tool for authors to effectively compose and publish their work. They are built from templates and the final documents are created dynamically. In addition, they can also be interactive. Working with dynamic publication media is made easy with the programming environment R via its integration with tools such as R Markdown, Jupyter and Shiny. Additionally, the COmplex PAthway SImulator COPASI (http://www.copasi.org), a widely used biochemical modelling toolkit, is available in R through the use of the COPASI R Connector (CoRC, https://jpahle.github.io/CoRC). Models are a common tool in the mathematical biosciences, in particular kinetic models of biochemical networks in (computational) systems biology. We focus on three application areas of dynamic publication media and CoRC: Documentation (reproducible workflows), Teaching (creating self-paced lessons) and Science Communication (immersive and engaging presentation). To illustrate these, we created six dynamic document examples in the form of R Markdown and Jupyter notebooks, hosted on the platforms GitHub, shinyapps.io, Google Colaboratory. Having code and output in one place, creating documents in template-form and the option of interactivity make the combination of dynamic documents and CoRC a versatile tool. All our example documents are freely available at https://jpahle.github.io/DynamiCoRC under the Creative Commons BY 4.0 licence.},
|
||||||
|
langid = {english},
|
||||||
|
keywords = {*Software,*Systems Biology,cmu,COPASI,CoRC,Dynamic publication media,Jupyter,Kinetics,markdown,non lu,pubmed,R markdown,Systems biology},
|
||||||
|
file = {/home/igor/Zotero/storage/WJ5FCFZY/Daas et al_2022_Dynamic publication media with the COPASI R Connector (CoRC).pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@unpublished{deletrazModeTexteMarkdown2022,
|
||||||
|
type = {Atelier},
|
||||||
|
title = {En mode texte\,: Markdown, Stylo, Pandoc, Notebook…},
|
||||||
|
author = {Deletraz, Gaëlle and Rabaud, Julien},
|
||||||
|
date = {2022},
|
||||||
|
url = {https://markdown-somate2022.netlify.app},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
eventtitle = {So-Mate 2022},
|
||||||
|
langid = {fre},
|
||||||
|
venue = {Pau},
|
||||||
|
keywords = {cmu,markdown,non lu,pandoc,Publication scientifique}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{eyssetteUtiliserMarkdownPour2023,
|
||||||
|
type = {Mastodon post},
|
||||||
|
title = {Utiliser le Markdown pour tout faire.Le diaporama (fait en markdown bien sûr !) qui m'a servi de support lors de mon atelier pour la Journée…},
|
||||||
|
author = {Eyssette, Cédric (@eyssette@scholar.social)},
|
||||||
|
date = {2023-04-07},
|
||||||
|
url = {https://scholar.social/@eyssette/110158455766516456},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
abstract = {Utiliser le Markdown pour tout faire.Le diaporama (fait en markdown bien sûr !) qui m'a servi de support lors de mon atelier pour la Journée du Libre Éducatif 2023.https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire\#Markdown\#JDLE\#JDLE2023\#TeamEduc\#MastoProf},
|
||||||
|
langid = {french},
|
||||||
|
organization = {Mastodon},
|
||||||
|
keywords = {cmu,fediverse,markdown,mastodon,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/7FYFNED6/110158455766516456.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@unpublished{eyssetteUtiliserMarkdownPour2023a,
|
||||||
|
title = {Utiliser le markdown pour tout faire},
|
||||||
|
author = {Eyssette, Cédric},
|
||||||
|
date = {2023},
|
||||||
|
url = {https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
langid = {fre},
|
||||||
|
keywords = {cmu,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/I7CTE3X5/utiliser-le-markdown-pour-tout-faire.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{fressinaudGuideMarkdown2022,
|
||||||
|
type = {Site d'une application web},
|
||||||
|
title = {Guide Markdown},
|
||||||
|
author = {Fressinaud, Marien},
|
||||||
|
date = {2022-07-11},
|
||||||
|
url = {https://flus.fr/carnet/markdown.html},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
abstract = {Un guide simple pour apprendre Markdown.},
|
||||||
|
langid = {fre},
|
||||||
|
organization = {flus},
|
||||||
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/96VGWVYV/markdown.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{graysonMarkdownDynamicInterface2022,
|
||||||
|
title = {R {{Markdown}} as a Dynamic Interface for Teaching: {{Modules}} from Math and Biology Classrooms.},
|
||||||
|
author = {Grayson, Kristine L. and Hilliker, Angela K. and Wares, Joanna R.},
|
||||||
|
date = {2022-07},
|
||||||
|
journaltitle = {Math Biosci},
|
||||||
|
volume = {349},
|
||||||
|
eprint = {35623397},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {108844},
|
||||||
|
location = {United States},
|
||||||
|
issn = {1879-3134 0025-5564},
|
||||||
|
doi = {10.1016/j.mbs.2022.108844},
|
||||||
|
abstract = {Advancing technologies, including interactive tools, are changing classroom pedagogy across academia. Here, we discuss the R Markdown interface, which allows for the creation of partial or complete interactive classroom modules for courses using the R programming language. R Markdown files mix sections of R code with formatted text, including LaTeX, which are rendered together to form complete reports and documents. These features allow instructors to create classroom modules that guide students through concepts, while providing areas for coding and text response by students. Students can also learn to create their own reports for more independent assignments. After presenting the features and uses of R Markdown to enhance teaching and learning, we present examples of materials from two courses. In a Computational Modeling course for math students, we used R Markdown to guide students through exploring mathematical models to understand the principle of herd immunity. In a Data Visualization and Communication course for biology students, we used R Markdown for teaching the fundamentals of R programming and graphing, and for students to learn to create reproducible data investigations. Through these examples, we demonstrate the benefits of R Markdown as a dynamic teaching and learning tool.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC9487201},
|
||||||
|
keywords = {*Learning,*Students,Biology/education,cmu,Data visualization,Herd immunity,Humans,markdown,non lu,Pedagogy,pubmed,R markdown,Teaching programming},
|
||||||
|
file = {/home/igor/Zotero/storage/JQGHBHB5/Grayson et al_2022_R Markdown as a dynamic interface for teaching.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{gruberMarkdown2004,
|
||||||
|
type = {Site personnel},
|
||||||
|
title = {Markdown},
|
||||||
|
author = {Gruber, John},
|
||||||
|
date = {2004-12-17},
|
||||||
|
url = {https://daringfireball.net/projects/markdown/},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
langid = {english},
|
||||||
|
organization = {Daring Fireball},
|
||||||
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/J7WP5B3D/markdown.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{hershbergJBrowseRInterfaceJBrowse2021,
|
||||||
|
title = {{{JBrowseR}}: An {{R}} Interface to the {{JBrowse}} 2 Genome Browser.},
|
||||||
|
author = {Hershberg, Elliot A. and Stevens, Garrett and Diesh, Colin and Xie, Peter and De Jesus Martinez, Teresa and Buels, Robert and Stein, Lincoln and Holmes, Ian},
|
||||||
|
date = {2021-11-05},
|
||||||
|
journaltitle = {Bioinformatics},
|
||||||
|
volume = {37},
|
||||||
|
number = {21},
|
||||||
|
eprint = {34196689},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {3914--3915},
|
||||||
|
location = {England},
|
||||||
|
issn = {1367-4811 1367-4803},
|
||||||
|
doi = {10.1093/bioinformatics/btab459},
|
||||||
|
abstract = {MOTIVATION: Genome browsers are an essential tool in genome analysis. Modern genome browsers enable complex and interactive visualization of a wide variety of genomic data modalities. While such browsers are very powerful, they can be challenging to configure and program for bioinformaticians lacking expertise in web development. RESULTS: We have developed an R package that provides an interface to the JBrowse 2 genome browser. The package can be used to configure and customize the browser entirely with R code. The browser can be deployed from the R console, or embedded in Shiny applications or R Markdown documents. AVAILABILITY AND IMPLEMENTATION: JBrowseR is available for download from CRAN, and the source code is openly available from the Github repository at https://github.com/GMOD/JBrowseR/.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC8570803},
|
||||||
|
keywords = {*Genome,*Genomics,cmu,markdown,non lu,pubmed,R markdown,Software},
|
||||||
|
file = {/home/igor/Zotero/storage/LYEIF748/Hershberg et al_2021_JBrowseR.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{jaglaSCHNAPPsSingleCell2021,
|
||||||
|
title = {{{SCHNAPPs}} - {{Single Cell sHiNy APPlication}}(s).},
|
||||||
|
author = {Jagla, Bernd and Libri, Valentina and Chica, Claudia and Rouilly, Vincent and Mella, Sebastien and Puceat, Michel and Hasan, Milena},
|
||||||
|
date = {2021-12},
|
||||||
|
journaltitle = {J Immunol Methods},
|
||||||
|
volume = {499},
|
||||||
|
eprint = {34742775},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {113176},
|
||||||
|
location = {Netherlands},
|
||||||
|
issn = {1872-7905 0022-1759},
|
||||||
|
doi = {10.1016/j.jim.2021.113176},
|
||||||
|
abstract = {Single-cell RNA-sequencing (scRNAseq) experiments are becoming a standard tool for bench-scientists to explore the cellular diversity present in all tissues. Data produced by scRNAseq is technically complex and requires analytical workflows that are an active field of bioinformatics research, whereas a wealth of biological background knowledge is needed to guide the investigation. Thus, there is an increasing need to develop applications geared towards bench-scientists to help them abstract the technical challenges of the analysis so that they can focus on the science at play. It is also expected that such applications should support closer collaboration between bioinformaticians and bench-scientists by providing reproducible science tools. We present SCHNAPPs, a Graphical User Interface (GUI), designed to enable bench-scientists to autonomously explore and interpret scRNAseq data and associated annotations. The R/Shiny-based application allows following different steps of scRNAseq analysis workflows from Seurat or Scran packages: performing quality control on cells and genes, normalizing the expression matrix, integrating different samples, dimension reduction, clustering, and differential gene expression analysis. Visualization tools for exploring each step of the process include violin plots, 2D projections, Box-plots, alluvial plots, and histograms. An R-markdown report can be generated that tracks modifications and selected visualizations. The modular design of the tool allows it to easily integrate new visualizations and analyses by bioinformaticians. We illustrate the main features of the tool by applying it to the characterization of T cells in a scRNAseq and Cellular Indexing of Transcriptomes and Epitopes by Sequencing (CITE-Seq) experiment of two healthy individuals.},
|
||||||
|
langid = {english},
|
||||||
|
keywords = {*Sequence Analysis RNA,*Single-Cell Analysis,*Software,CITE-Seq,cmu,Humans,Leukocytes Mononuclear/*cytology/immunology,markdown,multi-omics data analysis,non lu,pubmed,R markdown,scRNA-seq,Shiny application},
|
||||||
|
file = {/home/igor/Zotero/storage/PEARJ76P/Jagla et al_2021_SCHNAPPs - Single Cell sHiNy APPlication(s).pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{kariyawasamDashboardstyleInteractivePlots2021,
|
||||||
|
title = {Dashboard-Style Interactive Plots for {{RNA-seq}} Analysis Are {{R Markdown}} Ready with {{Glimma}} 2.0.},
|
||||||
|
author = {Kariyawasam, Hasaru and Su, Shian and Voogd, Oliver and Ritchie, Matthew E. and Law, Charity W.},
|
||||||
|
date = {2021-12},
|
||||||
|
journaltitle = {NAR Genom Bioinform},
|
||||||
|
volume = {3},
|
||||||
|
number = {4},
|
||||||
|
eprint = {34988439},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {lqab116},
|
||||||
|
location = {England},
|
||||||
|
issn = {2631-9268},
|
||||||
|
doi = {10.1093/nargab/lqab116},
|
||||||
|
abstract = {Glimma 1.0 introduced intuitive, point-and-click interactive graphics for differential gene expression analysis. Here, we present a major update to Glimma that brings improved interactivity and reproducibility using high-level visualization frameworks for R and JavaScript. Glimma 2.0 plots are now readily embeddable in R Markdown, thus allowing users to create reproducible reports containing interactive graphics. The revamped multidimensional scaling plot features dashboard-style controls allowing the user to dynamically change the colour, shape and size of sample points according to different experimental conditions. Interactivity was enhanced in the MA-style plot for comparing differences to average expression, which now supports selecting multiple genes, export options to PNG, SVG or CSV formats and includes a new volcano plot function. Feature-rich and user-friendly, Glimma makes exploring data for gene expression analysis more accessible and intuitive and is available on Bioconductor and GitHub.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC8693569},
|
||||||
|
keywords = {cmu,markdown,non lu,pubmed,R markdown},
|
||||||
|
file = {/home/igor/Zotero/storage/ZQD2WXNN/Kariyawasam et al_2021_Dashboard-style interactive plots for RNA-seq analysis are R Markdown ready.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{masuttiRedigerManipulerDocuments2019,
|
||||||
|
title = {Rédiger et manipuler des documents avec Markdown},
|
||||||
|
author = {Masutti, Christophe},
|
||||||
|
date = {2019-05-08},
|
||||||
|
url = {https://golb.statium.link/post/20190528rediger-et-manipuler-des-documents-markdown/},
|
||||||
|
urldate = {2024-03-19},
|
||||||
|
langid = {fre},
|
||||||
|
organization = {Statium : blog},
|
||||||
|
keywords = {cmu,markdown,non lu,pandoc,publication numérique,Publication scientifique}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{ovadiaMarkdownLibrariansAcademics2014a,
|
||||||
|
title = {Markdown for {{Librarians}} and {{Academics}}},
|
||||||
|
author = {Ovadia, Steven},
|
||||||
|
date = {2014-04-03},
|
||||||
|
journaltitle = {Behavioral \& Social Sciences Librarian},
|
||||||
|
volume = {33},
|
||||||
|
number = {2},
|
||||||
|
pages = {120--124},
|
||||||
|
issn = {0163-9269, 1544-4546},
|
||||||
|
doi = {10.1080/01639269.2014.904696},
|
||||||
|
url = {http://www.tandfonline.com/doi/abs/10.1080/01639269.2014.904696},
|
||||||
|
urldate = {2023-05-02},
|
||||||
|
langid = {english},
|
||||||
|
keywords = {cmu,markdown,non lu,Publication scientifique},
|
||||||
|
file = {/home/igor/Zotero/storage/25MP4P3N/Ovadia_2014_Markdown for Librarians and Academics.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{paged.jsPagedJs,
|
||||||
|
title = {About {{Paged}}.Js?},
|
||||||
|
author = {Paged.js},
|
||||||
|
url = {https://pagedjs.org/about/},
|
||||||
|
urldate = {2024-03-08},
|
||||||
|
langid = {english},
|
||||||
|
organization = {Paged.js},
|
||||||
|
keywords = {édition numérique,non lu,publication numérique}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{pandocWritingThesisThinking2023,
|
||||||
|
type = {Mastodon post},
|
||||||
|
title = {Writing a \#thesis? {{Thinking}} about Doing It in \#{{Markdown}}? {{No}} Problem, {{Tom Pollard}} Has You Covered.{{https://github.com/tompollard/phd\_thesis\_ma…}}},
|
||||||
|
shorttitle = {Writing a \#thesis?},
|
||||||
|
author = {{pandoc}, (@pandoc@fosstodon.org)},
|
||||||
|
date = {2023-04-12},
|
||||||
|
url = {https://fosstodon.org/@pandoc/110184589069297715},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
abstract = {Writing a \#thesis? Thinking about doing it in \#Markdown? No problem, Tom Pollard has you covered.https://github.com/tompollard/phd\_thesis\_markdown},
|
||||||
|
langid = {english},
|
||||||
|
organization = {Mastodon},
|
||||||
|
keywords = {cmu,fediverse,markdown,mastodon,non lu,pandoc,Publication scientifique},
|
||||||
|
file = {/home/igor/Zotero/storage/T354LYSW/110184589069297715.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{perretFormatTexte2022,
|
||||||
|
title = {Format texte},
|
||||||
|
author = {Perret, Arthur},
|
||||||
|
date = {2022-12-11},
|
||||||
|
journaltitle = {Arthur Perret},
|
||||||
|
url = {https://www.arthurperret.fr/cours/format-texte.html},
|
||||||
|
urldate = {2023-04-18},
|
||||||
|
abstract = {Cette page explique ce qu’est le format texte et donne des arguments en faveur de son utilisation. Elle ouvre vers d’autres ressources pour explorer l’écosystème du format texte.},
|
||||||
|
langid = {fre},
|
||||||
|
keywords = {cmu,markdown,non lu,plain text},
|
||||||
|
file = {/home/igor/Zotero/storage/3IM8K4DU/format-texte.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{perretMarkdown2022,
|
||||||
|
title = {Markdown},
|
||||||
|
author = {Perret, Arthur},
|
||||||
|
date = {2022-12-11},
|
||||||
|
journaltitle = {Arthur Perret},
|
||||||
|
publisher = {arthurperret.fr/},
|
||||||
|
url = {https://www.arthurperret.fr/cours/markdown.html},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
abstract = {Cette page explique ce qu’est Markdown, le plus populaire des langages de balisage léger, et renvoie vers un tutoriel interactif en français.},
|
||||||
|
langid = {french},
|
||||||
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/HZNSDQ7S/markdown.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{perretMarkdownTraitementTexte2022,
|
||||||
|
title = {Markdown et traitement de texte~: une méthode pour collaborer},
|
||||||
|
shorttitle = {Markdown et traitement de texte},
|
||||||
|
author = {Perret, Arthur},
|
||||||
|
date = {2022-10-25},
|
||||||
|
url = {https://www.arthurperret.fr/blog/2022-10-25-markdown-traitement-de-texte-methode-pour-collaborer.html},
|
||||||
|
urldate = {2024-04-23},
|
||||||
|
langid = {fre},
|
||||||
|
organization = {arthurperret.fr},
|
||||||
|
keywords = {non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/TQEHEIHA/2022-10-25-markdown-traitement-de-texte-methode-pour-collaborer.html}
|
||||||
|
}
|
||||||
|
|
||||||
|
@software{pollardTemplateWritingPhD2023,
|
||||||
|
title = {Template for Writing a {{PhD}} Thesis in {{Markdown}}},
|
||||||
|
author = {Pollard, Tom},
|
||||||
|
date = {2023-04-17T04:40:26Z},
|
||||||
|
origdate = {2015-02-10T10:32:25Z},
|
||||||
|
url = {https://github.com/tompollard/phd_thesis_markdown},
|
||||||
|
urldate = {2023-04-17},
|
||||||
|
abstract = {Template for writing a PhD thesis in Markdown},
|
||||||
|
keywords = {cmu,markdown,non lu,pandoc,Publication scientifique,thesis-template}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{schneiderFacilitatingOpenScience2022,
|
||||||
|
title = {Facilitating Open Science Practices for Research Syntheses: {{PreregRS}} Guides Preregistration.},
|
||||||
|
author = {Schneider, Jürgen and Backfisch, Iris and Lachner, Andreas},
|
||||||
|
date = {2022-03},
|
||||||
|
journaltitle = {Res Synth Methods},
|
||||||
|
volume = {13},
|
||||||
|
number = {2},
|
||||||
|
eprint = {34921744},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {284--289},
|
||||||
|
location = {England},
|
||||||
|
issn = {1759-2887 1759-2879},
|
||||||
|
doi = {10.1002/jrsm.1540},
|
||||||
|
abstract = {Researchers increasingly engage in adopting open science practices in the field of research syntheses, such as preregistration. Preregistration is a central open science practice in empirical research to enhance transparency in the research process and it gains steady adoption in the context of conducting research synthesis. From an interdisciplinary perspective, frameworks and particularly templates are lacking which support researchers preparing a preregistration. To this end, we introduce preregRS, a template to guide researchers across disciplines through the process of preregistering research syntheses. We utilized an R Markdown template file to provide a framework that structures the process of preparing a preregistration. Researchers can write up the preregistration using the template file similar to filling out a form, with the template providing additional hints and further information for the decisions along the framework. We integrated the R Markdown template in an R package for easy installation and use, but also provide a browser-based option for users granting low-barrier access. PreregRS constitutes a first step to facilitate and support preregistration with research syntheses for all disciplines. It further adds to establishing open science practices in conducting research syntheses.},
|
||||||
|
langid = {english},
|
||||||
|
keywords = {*Surveys and Questionnaires,cmu,Empirical Research,markdown,non lu,open science,preregistration,pubmed,R markdown,R package}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{yuVeridicalDataScience2020,
|
||||||
|
title = {Veridical Data Science.},
|
||||||
|
author = {Yu, Bin and Kumbier, Karl},
|
||||||
|
date = {2020-02-25},
|
||||||
|
journaltitle = {Proc Natl Acad Sci U S A},
|
||||||
|
volume = {117},
|
||||||
|
number = {8},
|
||||||
|
eprint = {32054788},
|
||||||
|
eprinttype = {pmid},
|
||||||
|
pages = {3920--3929},
|
||||||
|
location = {United States},
|
||||||
|
issn = {1091-6490 0027-8424},
|
||||||
|
doi = {10.1073/pnas.1901326117},
|
||||||
|
abstract = {Building and expanding on principles of statistics, machine learning, and scientific inquiry, we propose the predictability, computability, and stability (PCS) framework for veridical data science. Our framework, composed of both a workflow and documentation, aims to provide responsible, reliable, reproducible, and transparent results across the data science life cycle. The PCS workflow uses predictability as a reality check and considers the importance of computation in data collection/storage and algorithm design. It augments predictability and computability with an overarching stability principle. Stability expands on statistical uncertainty considerations to assess how human judgment calls impact data results through data and model/algorithm perturbations. As part of the PCS workflow, we develop PCS inference procedures, namely PCS perturbation intervals and PCS hypothesis testing, to investigate the stability of data results relative to problem formulation, data cleaning, modeling decisions, and interpretations. We illustrate PCS inference through neuroscience and genomics projects of our own and others. Moreover, we demonstrate its favorable performance over existing methods in terms of receiver operating characteristic (ROC) curves in high-dimensional, sparse linear model simulations, including a wide range of misspecified models. Finally, we propose PCS documentation based on R Markdown or Jupyter Notebook, with publicly available, reproducible codes and narratives to back up human choices made throughout an analysis. The PCS workflow and documentation are demonstrated in a genomics case study available on Zenodo.},
|
||||||
|
langid = {english},
|
||||||
|
pmcid = {PMC7049126},
|
||||||
|
keywords = {cmu,computation,data science,markdown,non lu,prediction,pubmed,R markdown,stability},
|
||||||
|
file = {/home/igor/Zotero/storage/GWVCYDA6/Yu_Kumbier_2020_Veridical data science.pdf}
|
||||||
|
}
|
|
@ -7,13 +7,13 @@
|
||||||
eprint = {35252947},
|
eprint = {35252947},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {22--30},
|
pages = {22--30},
|
||||||
location = {{Netherlands}},
|
location = {Netherlands},
|
||||||
issn = {2667-145X 2667-1468},
|
issn = {2667-145X 2667-1468},
|
||||||
doi = {10.1016/j.jmsacl.2022.02.004},
|
doi = {10.1016/j.jmsacl.2022.02.004},
|
||||||
abstract = {BACKGROUND: Indirect reference intervals require robust statistical approaches to separate the pathological and healthy values. This can be achieved with a data pipeline created in R, a freely available statistical programming language. METHODS: A data pipeline was created to ingest, partition, normalize, remove outliers, and identify reference intervals for testosterone (Testo; n ~=~7,207) and aspartate aminotransferase (AST; n ~=~5,882) using data sets from NHANES. RESULTS: The estimates for AST and Testo determined by this pipeline approximated current RIs. Care should be taken when using this pipeline as there are limitations that depend on the pathology of the analyte and the data set being used for RI estimation. CONCLUSIONS: R can be used to create a robust statistical reference interval pipeline.},
|
abstract = {BACKGROUND: Indirect reference intervals require robust statistical approaches to separate the pathological and healthy values. This can be achieved with a data pipeline created in R, a freely available statistical programming language. METHODS: A data pipeline was created to ingest, partition, normalize, remove outliers, and identify reference intervals for testosterone (Testo; n ~=~7,207) and aspartate aminotransferase (AST; n ~=~5,882) using data sets from NHANES. RESULTS: The estimates for AST and Testo determined by this pipeline approximated current RIs. Care should be taken when using this pipeline as there are limitations that depend on the pathology of the analyte and the data set being used for RI estimation. CONCLUSIONS: R can be used to create a robust statistical reference interval pipeline.},
|
||||||
langid = {english},
|
langid = {english},
|
||||||
pmcid = {PMC8889237},
|
pmcid = {PMC8889237},
|
||||||
keywords = {ANOVA; Analysis of variance,AST; aspartate aminotransferase,CLSI; Clinical Laboratory Standards Institute,cmu,EHR; electronic health record,IFCC; International Federation of Clinical Chemistry and Laboratory Medicine,LC-MS/MS; Liquid chromatography tandem mass spectrometry,LIS; Laboratory informatics system,markdown,Mixtools,non lu,pubmed,R markdown,R markdown tutorial,Reference interval,RI; reference interval,SDI; Standard deviation index,SDR; Standard deviation ratio,Testo; Testosterone,TukeyHSD; Tukey multiple pairwise-comparisons,z5; Critical z-score},
|
keywords = {ANOVA Analysis of variance,AST aspartate aminotransferase,CLSI Clinical Laboratory Standards Institute,cmu,EHR electronic health record,IFCC International Federation of Clinical Chemistry and Laboratory Medicine,LC-MS/MS Liquid chromatography tandem mass spectrometry,LIS Laboratory informatics system,markdown,Mixtools,non lu,pubmed,R markdown,R markdown tutorial,Reference interval,RI reference interval,SDI Standard deviation index,SDR Standard deviation ratio,Testo Testosterone,TukeyHSD Tukey multiple pairwise-comparisons,z5 Critical z-score},
|
||||||
file = {/home/igor/Zotero/storage/YYP9JQTY/Bunch_2022_Indirect reference intervals using an R pipeline.pdf}
|
file = {/home/igor/Zotero/storage/YYP9JQTY/Bunch_2022_Indirect reference intervals using an R pipeline.pdf}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
eprint = {35657454},
|
eprint = {35657454},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {59},
|
pages = {59},
|
||||||
location = {{Germany}},
|
location = {Germany},
|
||||||
issn = {2509-8020},
|
issn = {2509-8020},
|
||||||
doi = {10.1186/s41687-022-00464-9},
|
doi = {10.1186/s41687-022-00464-9},
|
||||||
abstract = {BACKGROUND: The Patient-Reported Outcome Measurement Information System(®) (PROMIS(®)) was developed to reliably measure health-related quality of life using the patient's voice. To achieve these aims, PROMIS utilized Item Response Theory methods in its development, validation and implementation. PROMIS measures are typically scored using a specific method to calculate scores, called Expected A Posteriori estimation. BODY: Expected A Posteriori scoring methods are flexible, produce accurate scores and can be efficiently calculated by statistical software. This work seeks to make Expected A Posteriori scoring methods transparent and accessible to a larger audience through description, graphical demonstration and examples. Further applications and practical considerations of Expected A Posteriori scoring are presented and discussed. All materials used in this paper are made available through the R Markdown reproducibility framework and are intended to be reviewed and reused. Commented statistical code for the calculation of Expected A Posteriori scores is included. CONCLUSION: This work seeks to provide the reader with a summary and visualization of the operation of Expected A Posteriori scoring, as implemented in PROMIS. As PROMIS is increasingly adopted and implemented, this work will provide a basis for making psychometric methods more accessible to the PROMIS user base.},
|
abstract = {BACKGROUND: The Patient-Reported Outcome Measurement Information System(®) (PROMIS(®)) was developed to reliably measure health-related quality of life using the patient's voice. To achieve these aims, PROMIS utilized Item Response Theory methods in its development, validation and implementation. PROMIS measures are typically scored using a specific method to calculate scores, called Expected A Posteriori estimation. BODY: Expected A Posteriori scoring methods are flexible, produce accurate scores and can be efficiently calculated by statistical software. This work seeks to make Expected A Posteriori scoring methods transparent and accessible to a larger audience through description, graphical demonstration and examples. Further applications and practical considerations of Expected A Posteriori scoring are presented and discussed. All materials used in this paper are made available through the R Markdown reproducibility framework and are intended to be reviewed and reused. Commented statistical code for the calculation of Expected A Posteriori scores is included. CONCLUSION: This work seeks to provide the reader with a summary and visualization of the operation of Expected A Posteriori scoring, as implemented in PROMIS. As PROMIS is increasingly adopted and implemented, this work will provide a basis for making psychometric methods more accessible to the PROMIS user base.},
|
||||||
|
@ -43,8 +43,8 @@
|
||||||
url = {https://commonmark.org/},
|
url = {https://commonmark.org/},
|
||||||
urldate = {2023-04-25},
|
urldate = {2023-04-25},
|
||||||
langid = {english},
|
langid = {english},
|
||||||
organization = {{CommonMark}},
|
organization = {CommonMark},
|
||||||
keywords = {non lu},
|
keywords = {cmu,non lu},
|
||||||
file = {/home/igor/Zotero/storage/ESNTHT9H/commonmark.org.html}
|
file = {/home/igor/Zotero/storage/ESNTHT9H/commonmark.org.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
number = {3},
|
number = {3},
|
||||||
eprint = {30841575},
|
eprint = {30841575},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
location = {{Switzerland}},
|
location = {Switzerland},
|
||||||
issn = {2218-1989},
|
issn = {2218-1989},
|
||||||
doi = {10.3390/metabo9030043},
|
doi = {10.3390/metabo9030043},
|
||||||
abstract = {Despite the proposal of minimum reporting guidelines for metabolomics over a decade ago, reporting on the data analysis step in metabolomics studies has been shown to be unclear and incomplete. Major omissions and a lack of logical flow render the data analysis' sections in metabolomics studies impossible to follow, and therefore replicate or even imitate. Here, we propose possible reasons why the original reporting guidelines have had poor adherence and present an approach to improve their uptake. We present in this paper an R markdown reporting template file that guides the production of text and generates workflow diagrams based on user input. This R Markdown template contains, as an example in this instance, a set of minimum information requirements specifically for the data pre-treatment and data analysis section of biomarker discovery metabolomics studies, (gleaned directly from the original proposed guidelines by Goodacre at al). These minimum requirements are presented in the format of a questionnaire checklist in an R markdown template file. The R Markdown reporting template proposed here can be presented as a starting point to encourage the data analysis section of a metabolomics manuscript to have a more logical presentation and to contain enough information to be understandable and reusable. The idea is that these guidelines would be open to user feedback, modification and updating by the metabolomics community via GitHub.},
|
abstract = {Despite the proposal of minimum reporting guidelines for metabolomics over a decade ago, reporting on the data analysis step in metabolomics studies has been shown to be unclear and incomplete. Major omissions and a lack of logical flow render the data analysis' sections in metabolomics studies impossible to follow, and therefore replicate or even imitate. Here, we propose possible reasons why the original reporting guidelines have had poor adherence and present an approach to improve their uptake. We present in this paper an R markdown reporting template file that guides the production of text and generates workflow diagrams based on user input. This R Markdown template contains, as an example in this instance, a set of minimum information requirements specifically for the data pre-treatment and data analysis section of biomarker discovery metabolomics studies, (gleaned directly from the original proposed guidelines by Goodacre at al). These minimum requirements are presented in the format of a questionnaire checklist in an R markdown template file. The R Markdown reporting template proposed here can be presented as a starting point to encourage the data analysis section of a metabolomics manuscript to have a more logical presentation and to contain enough information to be understandable and reusable. The idea is that these guidelines would be open to user feedback, modification and updating by the metabolomics community via GitHub.},
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
eprint = {35452633},
|
eprint = {35452633},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {108822},
|
pages = {108822},
|
||||||
location = {{United States}},
|
location = {United States},
|
||||||
issn = {1879-3134 0025-5564},
|
issn = {1879-3134 0025-5564},
|
||||||
doi = {10.1016/j.mbs.2022.108822},
|
doi = {10.1016/j.mbs.2022.108822},
|
||||||
abstract = {In this article we show how dynamic publication media and the COPASI R Connector (CoRC) can be combined in a natural and synergistic way to communicate (biochemical) models. Dynamic publication media are becoming a popular tool for authors to effectively compose and publish their work. They are built from templates and the final documents are created dynamically. In addition, they can also be interactive. Working with dynamic publication media is made easy with the programming environment R via its integration with tools such as R Markdown, Jupyter and Shiny. Additionally, the COmplex PAthway SImulator COPASI (http://www.copasi.org), a widely used biochemical modelling toolkit, is available in R through the use of the COPASI R Connector (CoRC, https://jpahle.github.io/CoRC). Models are a common tool in the mathematical biosciences, in particular kinetic models of biochemical networks in (computational) systems biology. We focus on three application areas of dynamic publication media and CoRC: Documentation (reproducible workflows), Teaching (creating self-paced lessons) and Science Communication (immersive and engaging presentation). To illustrate these, we created six dynamic document examples in the form of R Markdown and Jupyter notebooks, hosted on the platforms GitHub, shinyapps.io, Google Colaboratory. Having code and output in one place, creating documents in template-form and the option of interactivity make the combination of dynamic documents and CoRC a versatile tool. All our example documents are freely available at https://jpahle.github.io/DynamiCoRC under the Creative Commons BY 4.0 licence.},
|
abstract = {In this article we show how dynamic publication media and the COPASI R Connector (CoRC) can be combined in a natural and synergistic way to communicate (biochemical) models. Dynamic publication media are becoming a popular tool for authors to effectively compose and publish their work. They are built from templates and the final documents are created dynamically. In addition, they can also be interactive. Working with dynamic publication media is made easy with the programming environment R via its integration with tools such as R Markdown, Jupyter and Shiny. Additionally, the COmplex PAthway SImulator COPASI (http://www.copasi.org), a widely used biochemical modelling toolkit, is available in R through the use of the COPASI R Connector (CoRC, https://jpahle.github.io/CoRC). Models are a common tool in the mathematical biosciences, in particular kinetic models of biochemical networks in (computational) systems biology. We focus on three application areas of dynamic publication media and CoRC: Documentation (reproducible workflows), Teaching (creating self-paced lessons) and Science Communication (immersive and engaging presentation). To illustrate these, we created six dynamic document examples in the form of R Markdown and Jupyter notebooks, hosted on the platforms GitHub, shinyapps.io, Google Colaboratory. Having code and output in one place, creating documents in template-form and the option of interactivity make the combination of dynamic documents and CoRC a versatile tool. All our example documents are freely available at https://jpahle.github.io/DynamiCoRC under the Creative Commons BY 4.0 licence.},
|
||||||
|
@ -94,8 +94,8 @@
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
eventtitle = {So-Mate 2022},
|
eventtitle = {So-Mate 2022},
|
||||||
langid = {fre},
|
langid = {fre},
|
||||||
venue = {{Pau}},
|
venue = {Pau},
|
||||||
keywords = {markdown,non lu,pandoc,Publication scientifique}
|
keywords = {cmu,markdown,non lu,pandoc,Publication scientifique}
|
||||||
}
|
}
|
||||||
|
|
||||||
@online{eyssetteUtiliserMarkdownPour2023,
|
@online{eyssetteUtiliserMarkdownPour2023,
|
||||||
|
@ -107,8 +107,8 @@
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
abstract = {Utiliser le Markdown pour tout faire.Le diaporama (fait en markdown bien sûr !) qui m'a servi de support lors de mon atelier pour la Journée du Libre Éducatif 2023.https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire\#Markdown\#JDLE\#JDLE2023\#TeamEduc\#MastoProf},
|
abstract = {Utiliser le Markdown pour tout faire.Le diaporama (fait en markdown bien sûr !) qui m'a servi de support lors de mon atelier pour la Journée du Libre Éducatif 2023.https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire\#Markdown\#JDLE\#JDLE2023\#TeamEduc\#MastoProf},
|
||||||
langid = {french},
|
langid = {french},
|
||||||
organization = {{Mastodon}},
|
organization = {Mastodon},
|
||||||
keywords = {fediverse,markdown,mastodon,non lu},
|
keywords = {cmu,fediverse,markdown,mastodon,non lu},
|
||||||
file = {/home/igor/Zotero/storage/7FYFNED6/110158455766516456.html}
|
file = {/home/igor/Zotero/storage/7FYFNED6/110158455766516456.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@
|
||||||
url = {https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire},
|
url = {https://eyssette.forge.aeif.fr/marp-slides/slides/2022-2023/utiliser-le-markdown-pour-tout-faire},
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
langid = {fre},
|
langid = {fre},
|
||||||
keywords = {non lu},
|
keywords = {cmu,non lu},
|
||||||
file = {/home/igor/Zotero/storage/I7CTE3X5/utiliser-le-markdown-pour-tout-faire.html}
|
file = {/home/igor/Zotero/storage/I7CTE3X5/utiliser-le-markdown-pour-tout-faire.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,8 +132,8 @@
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
abstract = {Un guide simple pour apprendre Markdown.},
|
abstract = {Un guide simple pour apprendre Markdown.},
|
||||||
langid = {fre},
|
langid = {fre},
|
||||||
organization = {{flus}},
|
organization = {flus},
|
||||||
keywords = {documentation,markdown,non lu},
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
file = {/home/igor/Zotero/storage/96VGWVYV/markdown.html}
|
file = {/home/igor/Zotero/storage/96VGWVYV/markdown.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
eprint = {35623397},
|
eprint = {35623397},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {108844},
|
pages = {108844},
|
||||||
location = {{United States}},
|
location = {United States},
|
||||||
issn = {1879-3134 0025-5564},
|
issn = {1879-3134 0025-5564},
|
||||||
doi = {10.1016/j.mbs.2022.108844},
|
doi = {10.1016/j.mbs.2022.108844},
|
||||||
abstract = {Advancing technologies, including interactive tools, are changing classroom pedagogy across academia. Here, we discuss the R Markdown interface, which allows for the creation of partial or complete interactive classroom modules for courses using the R programming language. R Markdown files mix sections of R code with formatted text, including LaTeX, which are rendered together to form complete reports and documents. These features allow instructors to create classroom modules that guide students through concepts, while providing areas for coding and text response by students. Students can also learn to create their own reports for more independent assignments. After presenting the features and uses of R Markdown to enhance teaching and learning, we present examples of materials from two courses. In a Computational Modeling course for math students, we used R Markdown to guide students through exploring mathematical models to understand the principle of herd immunity. In a Data Visualization and Communication course for biology students, we used R Markdown for teaching the fundamentals of R programming and graphing, and for students to learn to create reproducible data investigations. Through these examples, we demonstrate the benefits of R Markdown as a dynamic teaching and learning tool.},
|
abstract = {Advancing technologies, including interactive tools, are changing classroom pedagogy across academia. Here, we discuss the R Markdown interface, which allows for the creation of partial or complete interactive classroom modules for courses using the R programming language. R Markdown files mix sections of R code with formatted text, including LaTeX, which are rendered together to form complete reports and documents. These features allow instructors to create classroom modules that guide students through concepts, while providing areas for coding and text response by students. Students can also learn to create their own reports for more independent assignments. After presenting the features and uses of R Markdown to enhance teaching and learning, we present examples of materials from two courses. In a Computational Modeling course for math students, we used R Markdown to guide students through exploring mathematical models to understand the principle of herd immunity. In a Data Visualization and Communication course for biology students, we used R Markdown for teaching the fundamentals of R programming and graphing, and for students to learn to create reproducible data investigations. Through these examples, we demonstrate the benefits of R Markdown as a dynamic teaching and learning tool.},
|
||||||
|
@ -164,8 +164,8 @@
|
||||||
url = {https://daringfireball.net/projects/markdown/},
|
url = {https://daringfireball.net/projects/markdown/},
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
langid = {english},
|
langid = {english},
|
||||||
organization = {{Daring Fireball}},
|
organization = {Daring Fireball},
|
||||||
keywords = {documentation,markdown,non lu},
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
file = {/home/igor/Zotero/storage/J7WP5B3D/markdown.html}
|
file = {/home/igor/Zotero/storage/J7WP5B3D/markdown.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -179,7 +179,7 @@
|
||||||
eprint = {34196689},
|
eprint = {34196689},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {3914--3915},
|
pages = {3914--3915},
|
||||||
location = {{England}},
|
location = {England},
|
||||||
issn = {1367-4811 1367-4803},
|
issn = {1367-4811 1367-4803},
|
||||||
doi = {10.1093/bioinformatics/btab459},
|
doi = {10.1093/bioinformatics/btab459},
|
||||||
abstract = {MOTIVATION: Genome browsers are an essential tool in genome analysis. Modern genome browsers enable complex and interactive visualization of a wide variety of genomic data modalities. While such browsers are very powerful, they can be challenging to configure and program for bioinformaticians lacking expertise in web development. RESULTS: We have developed an R package that provides an interface to the JBrowse 2 genome browser. The package can be used to configure and customize the browser entirely with R code. The browser can be deployed from the R console, or embedded in Shiny applications or R Markdown documents. AVAILABILITY AND IMPLEMENTATION: JBrowseR is available for download from CRAN, and the source code is openly available from the Github repository at https://github.com/GMOD/JBrowseR/.},
|
abstract = {MOTIVATION: Genome browsers are an essential tool in genome analysis. Modern genome browsers enable complex and interactive visualization of a wide variety of genomic data modalities. While such browsers are very powerful, they can be challenging to configure and program for bioinformaticians lacking expertise in web development. RESULTS: We have developed an R package that provides an interface to the JBrowse 2 genome browser. The package can be used to configure and customize the browser entirely with R code. The browser can be deployed from the R console, or embedded in Shiny applications or R Markdown documents. AVAILABILITY AND IMPLEMENTATION: JBrowseR is available for download from CRAN, and the source code is openly available from the Github repository at https://github.com/GMOD/JBrowseR/.},
|
||||||
|
@ -198,12 +198,12 @@
|
||||||
eprint = {34742775},
|
eprint = {34742775},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {113176},
|
pages = {113176},
|
||||||
location = {{Netherlands}},
|
location = {Netherlands},
|
||||||
issn = {1872-7905 0022-1759},
|
issn = {1872-7905 0022-1759},
|
||||||
doi = {10.1016/j.jim.2021.113176},
|
doi = {10.1016/j.jim.2021.113176},
|
||||||
abstract = {Single-cell RNA-sequencing (scRNAseq) experiments are becoming a standard tool for bench-scientists to explore the cellular diversity present in all tissues. Data produced by scRNAseq is technically complex and requires analytical workflows that are an active field of bioinformatics research, whereas a wealth of biological background knowledge is needed to guide the investigation. Thus, there is an increasing need to develop applications geared towards bench-scientists to help them abstract the technical challenges of the analysis so that they can focus on the science at play. It is also expected that such applications should support closer collaboration between bioinformaticians and bench-scientists by providing reproducible science tools. We present SCHNAPPs, a Graphical User Interface (GUI), designed to enable bench-scientists to autonomously explore and interpret scRNAseq data and associated annotations. The R/Shiny-based application allows following different steps of scRNAseq analysis workflows from Seurat or Scran packages: performing quality control on cells and genes, normalizing the expression matrix, integrating different samples, dimension reduction, clustering, and differential gene expression analysis. Visualization tools for exploring each step of the process include violin plots, 2D projections, Box-plots, alluvial plots, and histograms. An R-markdown report can be generated that tracks modifications and selected visualizations. The modular design of the tool allows it to easily integrate new visualizations and analyses by bioinformaticians. We illustrate the main features of the tool by applying it to the characterization of T cells in a scRNAseq and Cellular Indexing of Transcriptomes and Epitopes by Sequencing (CITE-Seq) experiment of two healthy individuals.},
|
abstract = {Single-cell RNA-sequencing (scRNAseq) experiments are becoming a standard tool for bench-scientists to explore the cellular diversity present in all tissues. Data produced by scRNAseq is technically complex and requires analytical workflows that are an active field of bioinformatics research, whereas a wealth of biological background knowledge is needed to guide the investigation. Thus, there is an increasing need to develop applications geared towards bench-scientists to help them abstract the technical challenges of the analysis so that they can focus on the science at play. It is also expected that such applications should support closer collaboration between bioinformaticians and bench-scientists by providing reproducible science tools. We present SCHNAPPs, a Graphical User Interface (GUI), designed to enable bench-scientists to autonomously explore and interpret scRNAseq data and associated annotations. The R/Shiny-based application allows following different steps of scRNAseq analysis workflows from Seurat or Scran packages: performing quality control on cells and genes, normalizing the expression matrix, integrating different samples, dimension reduction, clustering, and differential gene expression analysis. Visualization tools for exploring each step of the process include violin plots, 2D projections, Box-plots, alluvial plots, and histograms. An R-markdown report can be generated that tracks modifications and selected visualizations. The modular design of the tool allows it to easily integrate new visualizations and analyses by bioinformaticians. We illustrate the main features of the tool by applying it to the characterization of T cells in a scRNAseq and Cellular Indexing of Transcriptomes and Epitopes by Sequencing (CITE-Seq) experiment of two healthy individuals.},
|
||||||
langid = {english},
|
langid = {english},
|
||||||
keywords = {*Sequence Analysis; RNA,*Single-Cell Analysis,*Software,CITE-Seq,cmu,Humans,Leukocytes; Mononuclear/*cytology/immunology,markdown,multi-omics data analysis,non lu,pubmed,R markdown,scRNA-seq,Shiny application},
|
keywords = {*Sequence Analysis RNA,*Single-Cell Analysis,*Software,CITE-Seq,cmu,Humans,Leukocytes Mononuclear/*cytology/immunology,markdown,multi-omics data analysis,non lu,pubmed,R markdown,scRNA-seq,Shiny application},
|
||||||
file = {/home/igor/Zotero/storage/PEARJ76P/Jagla et al_2021_SCHNAPPs - Single Cell sHiNy APPlication(s).pdf}
|
file = {/home/igor/Zotero/storage/PEARJ76P/Jagla et al_2021_SCHNAPPs - Single Cell sHiNy APPlication(s).pdf}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,7 +217,7 @@
|
||||||
eprint = {34988439},
|
eprint = {34988439},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {lqab116},
|
pages = {lqab116},
|
||||||
location = {{England}},
|
location = {England},
|
||||||
issn = {2631-9268},
|
issn = {2631-9268},
|
||||||
doi = {10.1093/nargab/lqab116},
|
doi = {10.1093/nargab/lqab116},
|
||||||
abstract = {Glimma 1.0 introduced intuitive, point-and-click interactive graphics for differential gene expression analysis. Here, we present a major update to Glimma that brings improved interactivity and reproducibility using high-level visualization frameworks for R and JavaScript. Glimma 2.0 plots are now readily embeddable in R Markdown, thus allowing users to create reproducible reports containing interactive graphics. The revamped multidimensional scaling plot features dashboard-style controls allowing the user to dynamically change the colour, shape and size of sample points according to different experimental conditions. Interactivity was enhanced in the MA-style plot for comparing differences to average expression, which now supports selecting multiple genes, export options to PNG, SVG or CSV formats and includes a new volcano plot function. Feature-rich and user-friendly, Glimma makes exploring data for gene expression analysis more accessible and intuitive and is available on Bioconductor and GitHub.},
|
abstract = {Glimma 1.0 introduced intuitive, point-and-click interactive graphics for differential gene expression analysis. Here, we present a major update to Glimma that brings improved interactivity and reproducibility using high-level visualization frameworks for R and JavaScript. Glimma 2.0 plots are now readily embeddable in R Markdown, thus allowing users to create reproducible reports containing interactive graphics. The revamped multidimensional scaling plot features dashboard-style controls allowing the user to dynamically change the colour, shape and size of sample points according to different experimental conditions. Interactivity was enhanced in the MA-style plot for comparing differences to average expression, which now supports selecting multiple genes, export options to PNG, SVG or CSV formats and includes a new volcano plot function. Feature-rich and user-friendly, Glimma makes exploring data for gene expression analysis more accessible and intuitive and is available on Bioconductor and GitHub.},
|
||||||
|
@ -227,6 +227,44 @@
|
||||||
file = {/home/igor/Zotero/storage/ZQD2WXNN/Kariyawasam et al_2021_Dashboard-style interactive plots for RNA-seq analysis are R Markdown ready.pdf}
|
file = {/home/igor/Zotero/storage/ZQD2WXNN/Kariyawasam et al_2021_Dashboard-style interactive plots for RNA-seq analysis are R Markdown ready.pdf}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@online{masuttiRedigerManipulerDocuments2019,
|
||||||
|
title = {Rédiger et manipuler des documents avec Markdown},
|
||||||
|
author = {Masutti, Christophe},
|
||||||
|
date = {2019-05-08},
|
||||||
|
url = {https://golb.statium.link/post/20190528rediger-et-manipuler-des-documents-markdown/},
|
||||||
|
urldate = {2024-03-19},
|
||||||
|
langid = {fre},
|
||||||
|
organization = {Statium : blog},
|
||||||
|
keywords = {cmu,markdown,non lu,pandoc,publication numérique,Publication scientifique}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{ovadiaMarkdownLibrariansAcademics2014a,
|
||||||
|
title = {Markdown for {{Librarians}} and {{Academics}}},
|
||||||
|
author = {Ovadia, Steven},
|
||||||
|
date = {2014-04-03},
|
||||||
|
journaltitle = {Behavioral \& Social Sciences Librarian},
|
||||||
|
volume = {33},
|
||||||
|
number = {2},
|
||||||
|
pages = {120--124},
|
||||||
|
issn = {0163-9269, 1544-4546},
|
||||||
|
doi = {10.1080/01639269.2014.904696},
|
||||||
|
url = {http://www.tandfonline.com/doi/abs/10.1080/01639269.2014.904696},
|
||||||
|
urldate = {2023-05-02},
|
||||||
|
langid = {english},
|
||||||
|
keywords = {cmu,markdown,non lu,Publication scientifique},
|
||||||
|
file = {/home/igor/Zotero/storage/25MP4P3N/Ovadia_2014_Markdown for Librarians and Academics.pdf}
|
||||||
|
}
|
||||||
|
|
||||||
|
@online{paged.jsPagedJs,
|
||||||
|
title = {About {{Paged}}.Js?},
|
||||||
|
author = {Paged.js},
|
||||||
|
url = {https://pagedjs.org/about/},
|
||||||
|
urldate = {2024-03-08},
|
||||||
|
langid = {english},
|
||||||
|
organization = {Paged.js},
|
||||||
|
keywords = {édition numérique,non lu,publication numérique}
|
||||||
|
}
|
||||||
|
|
||||||
@online{pandocWritingThesisThinking2023,
|
@online{pandocWritingThesisThinking2023,
|
||||||
type = {Mastodon post},
|
type = {Mastodon post},
|
||||||
title = {Writing a \#thesis? {{Thinking}} about Doing It in \#{{Markdown}}? {{No}} Problem, {{Tom Pollard}} Has You Covered.{{https://github.com/tompollard/phd\_thesis\_ma…}}},
|
title = {Writing a \#thesis? {{Thinking}} about Doing It in \#{{Markdown}}? {{No}} Problem, {{Tom Pollard}} Has You Covered.{{https://github.com/tompollard/phd\_thesis\_ma…}}},
|
||||||
|
@ -237,46 +275,51 @@
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
abstract = {Writing a \#thesis? Thinking about doing it in \#Markdown? No problem, Tom Pollard has you covered.https://github.com/tompollard/phd\_thesis\_markdown},
|
abstract = {Writing a \#thesis? Thinking about doing it in \#Markdown? No problem, Tom Pollard has you covered.https://github.com/tompollard/phd\_thesis\_markdown},
|
||||||
langid = {english},
|
langid = {english},
|
||||||
organization = {{Mastodon}},
|
organization = {Mastodon},
|
||||||
keywords = {fediverse,markdown,mastodon,non lu,pandoc,Publication scientifique},
|
keywords = {cmu,fediverse,markdown,mastodon,non lu,pandoc,Publication scientifique},
|
||||||
file = {/home/igor/Zotero/storage/T354LYSW/110184589069297715.html}
|
file = {/home/igor/Zotero/storage/T354LYSW/110184589069297715.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
@online{perretFormatTexte2022,
|
@article{perretFormatTexte2022,
|
||||||
type = {Site personnel},
|
|
||||||
title = {Format texte},
|
title = {Format texte},
|
||||||
author = {Perret, Arthur},
|
author = {Perret, Arthur},
|
||||||
date = {2022-12-11},
|
date = {2022-12-11},
|
||||||
|
journaltitle = {Arthur Perret},
|
||||||
url = {https://www.arthurperret.fr/cours/format-texte.html},
|
url = {https://www.arthurperret.fr/cours/format-texte.html},
|
||||||
urldate = {2023-04-18},
|
urldate = {2023-04-18},
|
||||||
abstract = {Cette page explique ce qu’est le format texte et donne des arguments en faveur de son utilisation. Elle ouvre vers d’autres ressources pour explorer l’écosystème du format texte.},
|
abstract = {Cette page explique ce qu’est le format texte et donne des arguments en faveur de son utilisation. Elle ouvre vers d’autres ressources pour explorer l’écosystème du format texte.},
|
||||||
langid = {fre},
|
langid = {fre},
|
||||||
organization = {{Arthur Perret}},
|
keywords = {cmu,markdown,non lu,plain text},
|
||||||
keywords = {markdown,non lu,plain text},
|
|
||||||
note = {\begin{quotation}
|
|
||||||
|
|
||||||
\par
|
|
||||||
[C]’est un fichier qui ne contient des caractères. (Perret, 2022)
|
|
||||||
\par
|
|
||||||
\end{quotation}},
|
|
||||||
file = {/home/igor/Zotero/storage/3IM8K4DU/format-texte.html}
|
file = {/home/igor/Zotero/storage/3IM8K4DU/format-texte.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
@online{perretMarkdown2022,
|
@article{perretMarkdown2022,
|
||||||
type = {Site personnel},
|
|
||||||
title = {Markdown},
|
title = {Markdown},
|
||||||
author = {Perret, Arthur},
|
author = {Perret, Arthur},
|
||||||
date = {2022-12-11},
|
date = {2022-12-11},
|
||||||
publisher = {{arthurperret.fr/}},
|
journaltitle = {Arthur Perret},
|
||||||
|
publisher = {arthurperret.fr/},
|
||||||
url = {https://www.arthurperret.fr/cours/markdown.html},
|
url = {https://www.arthurperret.fr/cours/markdown.html},
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
abstract = {Cette page explique ce qu’est Markdown, le plus populaire des langages de balisage léger, et renvoie vers un tutoriel interactif en français.},
|
abstract = {Cette page explique ce qu’est Markdown, le plus populaire des langages de balisage léger, et renvoie vers un tutoriel interactif en français.},
|
||||||
langid = {french},
|
langid = {french},
|
||||||
organization = {{Arthur Perret}},
|
keywords = {cmu,documentation,markdown,non lu},
|
||||||
keywords = {documentation,markdown,non lu},
|
|
||||||
file = {/home/igor/Zotero/storage/HZNSDQ7S/markdown.html}
|
file = {/home/igor/Zotero/storage/HZNSDQ7S/markdown.html}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@online{perretMarkdownTraitementTexte2022,
|
||||||
|
title = {Markdown et traitement de texte~: une méthode pour collaborer},
|
||||||
|
shorttitle = {Markdown et traitement de texte},
|
||||||
|
author = {Perret, Arthur},
|
||||||
|
date = {2022-10-25},
|
||||||
|
url = {https://www.arthurperret.fr/blog/2022-10-25-markdown-traitement-de-texte-methode-pour-collaborer.html},
|
||||||
|
urldate = {2024-04-23},
|
||||||
|
langid = {fre},
|
||||||
|
organization = {arthurperret.fr},
|
||||||
|
keywords = {non lu},
|
||||||
|
file = {/home/igor/Zotero/storage/TQEHEIHA/2022-10-25-markdown-traitement-de-texte-methode-pour-collaborer.html}
|
||||||
|
}
|
||||||
|
|
||||||
@software{pollardTemplateWritingPhD2023,
|
@software{pollardTemplateWritingPhD2023,
|
||||||
title = {Template for Writing a {{PhD}} Thesis in {{Markdown}}},
|
title = {Template for Writing a {{PhD}} Thesis in {{Markdown}}},
|
||||||
author = {Pollard, Tom},
|
author = {Pollard, Tom},
|
||||||
|
@ -285,7 +328,7 @@
|
||||||
url = {https://github.com/tompollard/phd_thesis_markdown},
|
url = {https://github.com/tompollard/phd_thesis_markdown},
|
||||||
urldate = {2023-04-17},
|
urldate = {2023-04-17},
|
||||||
abstract = {Template for writing a PhD thesis in Markdown},
|
abstract = {Template for writing a PhD thesis in Markdown},
|
||||||
keywords = {markdown,non lu,pandoc,Publication scientifique,thesis-template}
|
keywords = {cmu,markdown,non lu,pandoc,Publication scientifique,thesis-template}
|
||||||
}
|
}
|
||||||
|
|
||||||
@article{schneiderFacilitatingOpenScience2022,
|
@article{schneiderFacilitatingOpenScience2022,
|
||||||
|
@ -298,7 +341,7 @@
|
||||||
eprint = {34921744},
|
eprint = {34921744},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {284--289},
|
pages = {284--289},
|
||||||
location = {{England}},
|
location = {England},
|
||||||
issn = {1759-2887 1759-2879},
|
issn = {1759-2887 1759-2879},
|
||||||
doi = {10.1002/jrsm.1540},
|
doi = {10.1002/jrsm.1540},
|
||||||
abstract = {Researchers increasingly engage in adopting open science practices in the field of research syntheses, such as preregistration. Preregistration is a central open science practice in empirical research to enhance transparency in the research process and it gains steady adoption in the context of conducting research synthesis. From an interdisciplinary perspective, frameworks and particularly templates are lacking which support researchers preparing a preregistration. To this end, we introduce preregRS, a template to guide researchers across disciplines through the process of preregistering research syntheses. We utilized an R Markdown template file to provide a framework that structures the process of preparing a preregistration. Researchers can write up the preregistration using the template file similar to filling out a form, with the template providing additional hints and further information for the decisions along the framework. We integrated the R Markdown template in an R package for easy installation and use, but also provide a browser-based option for users granting low-barrier access. PreregRS constitutes a first step to facilitate and support preregistration with research syntheses for all disciplines. It further adds to establishing open science practices in conducting research syntheses.},
|
abstract = {Researchers increasingly engage in adopting open science practices in the field of research syntheses, such as preregistration. Preregistration is a central open science practice in empirical research to enhance transparency in the research process and it gains steady adoption in the context of conducting research synthesis. From an interdisciplinary perspective, frameworks and particularly templates are lacking which support researchers preparing a preregistration. To this end, we introduce preregRS, a template to guide researchers across disciplines through the process of preregistering research syntheses. We utilized an R Markdown template file to provide a framework that structures the process of preparing a preregistration. Researchers can write up the preregistration using the template file similar to filling out a form, with the template providing additional hints and further information for the decisions along the framework. We integrated the R Markdown template in an R package for easy installation and use, but also provide a browser-based option for users granting low-barrier access. PreregRS constitutes a first step to facilitate and support preregistration with research syntheses for all disciplines. It further adds to establishing open science practices in conducting research syntheses.},
|
||||||
|
@ -316,7 +359,7 @@
|
||||||
eprint = {32054788},
|
eprint = {32054788},
|
||||||
eprinttype = {pmid},
|
eprinttype = {pmid},
|
||||||
pages = {3920--3929},
|
pages = {3920--3929},
|
||||||
location = {{United States}},
|
location = {United States},
|
||||||
issn = {1091-6490 0027-8424},
|
issn = {1091-6490 0027-8424},
|
||||||
doi = {10.1073/pnas.1901326117},
|
doi = {10.1073/pnas.1901326117},
|
||||||
abstract = {Building and expanding on principles of statistics, machine learning, and scientific inquiry, we propose the predictability, computability, and stability (PCS) framework for veridical data science. Our framework, composed of both a workflow and documentation, aims to provide responsible, reliable, reproducible, and transparent results across the data science life cycle. The PCS workflow uses predictability as a reality check and considers the importance of computation in data collection/storage and algorithm design. It augments predictability and computability with an overarching stability principle. Stability expands on statistical uncertainty considerations to assess how human judgment calls impact data results through data and model/algorithm perturbations. As part of the PCS workflow, we develop PCS inference procedures, namely PCS perturbation intervals and PCS hypothesis testing, to investigate the stability of data results relative to problem formulation, data cleaning, modeling decisions, and interpretations. We illustrate PCS inference through neuroscience and genomics projects of our own and others. Moreover, we demonstrate its favorable performance over existing methods in terms of receiver operating characteristic (ROC) curves in high-dimensional, sparse linear model simulations, including a wide range of misspecified models. Finally, we propose PCS documentation based on R Markdown or Jupyter Notebook, with publicly available, reproducible codes and narratives to back up human choices made throughout an analysis. The PCS workflow and documentation are demonstrated in a genomics case study available on Zenodo.},
|
abstract = {Building and expanding on principles of statistics, machine learning, and scientific inquiry, we propose the predictability, computability, and stability (PCS) framework for veridical data science. Our framework, composed of both a workflow and documentation, aims to provide responsible, reliable, reproducible, and transparent results across the data science life cycle. The PCS workflow uses predictability as a reality check and considers the importance of computation in data collection/storage and algorithm design. It augments predictability and computability with an overarching stability principle. Stability expands on statistical uncertainty considerations to assess how human judgment calls impact data results through data and model/algorithm perturbations. As part of the PCS workflow, we develop PCS inference procedures, namely PCS perturbation intervals and PCS hypothesis testing, to investigate the stability of data results relative to problem formulation, data cleaning, modeling decisions, and interpretations. We illustrate PCS inference through neuroscience and genomics projects of our own and others. Moreover, we demonstrate its favorable performance over existing methods in terms of receiver operating characteristic (ROC) curves in high-dimensional, sparse linear model simulations, including a wide range of misspecified models. Finally, we propose PCS documentation based on R Markdown or Jupyter Notebook, with publicly available, reproducible codes and narratives to back up human choices made throughout an analysis. The PCS workflow and documentation are demonstrated in a genomics case study available on Zenodo.},
|
||||||
|
|
152
style.css
152
style.css
|
@ -1,21 +1,16 @@
|
||||||
@media print {
|
@media print {
|
||||||
body {
|
|
||||||
font-family: TheSansOsF-Plain, "Open Sans", Arial, Helvetica, sans-serif;
|
/* **************************
|
||||||
counter-reset: figureNumber;
|
* Définition des pages *
|
||||||
}
|
* ************************ */
|
||||||
/* Définit que string(date) contient la date */
|
|
||||||
.date {
|
|
||||||
string-set: date content(text);
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
/* Définit que running(licenceBlock) contient le block licence */
|
|
||||||
#licence {
|
|
||||||
position: running(licenceBlock);
|
|
||||||
}
|
|
||||||
@page {
|
@page {
|
||||||
size: A4;
|
size: A4;
|
||||||
margin: 25mm 0;
|
margin: 25mm;
|
||||||
bleed: 6mm;
|
bleed: 6mm;
|
||||||
|
/* Numérotation de page au centre en bas
|
||||||
|
* de la page. Le compteur est définit
|
||||||
|
* dans le selecteur body. */
|
||||||
@bottom-center {
|
@bottom-center {
|
||||||
content: counter(page);
|
content: counter(page);
|
||||||
}
|
}
|
||||||
|
@ -29,6 +24,8 @@
|
||||||
margin-right: 25mm;
|
margin-right: 25mm;
|
||||||
}
|
}
|
||||||
@page:first {
|
@page:first {
|
||||||
|
/* Insertion en haut à droite du logo de la
|
||||||
|
* bibliothèque de l'UNIGE. */
|
||||||
@top-right {
|
@top-right {
|
||||||
content: "";
|
content: "";
|
||||||
background-image: url("./static/bibliotheque-logo.svg");
|
background-image: url("./static/bibliotheque-logo.svg");
|
||||||
|
@ -36,6 +33,9 @@
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 25%;
|
background-size: 25%;
|
||||||
}
|
}
|
||||||
|
/* Place le bloc de la licence en bas à gauche
|
||||||
|
* de la première page. Voir le sélecteur
|
||||||
|
* #licence plus bas. */
|
||||||
@bottom-left{
|
@bottom-left{
|
||||||
content: element(licenceBlock);
|
content: element(licenceBlock);
|
||||||
font-size: small;
|
font-size: small;
|
||||||
|
@ -43,29 +43,57 @@
|
||||||
@bottom-center {
|
@bottom-center {
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
|
/* Insert la date en bas à droite de la
|
||||||
|
* première page. Voir le sélecteur .date */
|
||||||
@bottom-right {
|
@bottom-right {
|
||||||
content: string(date);
|
content: string(date);
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@page:nth(11) {
|
|
||||||
@bottom-center {
|
/* **************************
|
||||||
content: none;
|
* Définitions globales *
|
||||||
|
* ************************ */
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "TheSansOsF", "Open Sans", Arial, Helvetica, sans-serif;
|
||||||
|
/* Définit les deux variable de compteur nécessaires */
|
||||||
|
counter-reset: figureNumber toc;
|
||||||
}
|
}
|
||||||
|
/* Définit que string(date) contient la date indiquée dans le frontmatter
|
||||||
|
* de la source markdown */
|
||||||
|
.date {
|
||||||
|
string-set: date content(text);
|
||||||
|
display: none; /* Pour ne pas afficher la date sous le titre. */
|
||||||
}
|
}
|
||||||
h2 {
|
/* Définit que running(licenceBlock) contient le block licence.
|
||||||
color: #d80669;
|
* Le bloc licence est décrit dans le fichier markdown source, au-dessous
|
||||||
text-decoration: underline;
|
* de la section des objectifs. Le CSS permet de le placer correctement */
|
||||||
|
#licence {
|
||||||
|
position: running(licenceBlock);
|
||||||
}
|
}
|
||||||
#1st-section,
|
|
||||||
#bibliographie,
|
/* *****************
|
||||||
.footnotes {
|
* Page de titre *
|
||||||
break-before: page;
|
* *************** */
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 60%;
|
||||||
|
margin: 2em auto 1em auto;
|
||||||
}
|
}
|
||||||
|
.logo img {
|
||||||
|
max-width: 50%;
|
||||||
|
padding: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
#title-block-header {
|
#title-block-header {
|
||||||
|
/* Concerne le bloc titre sur la page de titre */
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 2em 0 6em 0;
|
margin: 4em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.authors {
|
.authors {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -74,14 +102,56 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Les 4 règles suivantes mettent en forme la table des matières :*
|
||||||
|
* Suppression des liste à puce, numérotation des chapitres et affichage du
|
||||||
|
* numéro de page. */
|
||||||
|
#TOC ul {
|
||||||
|
list-style: none;
|
||||||
|
counter-reset: toc;
|
||||||
|
padding-left: 1.5em;
|
||||||
|
}
|
||||||
|
#TOC li {
|
||||||
|
counter-increment: toc;
|
||||||
|
}
|
||||||
|
#TOC li::before {
|
||||||
|
content: counter(toc) ". ";
|
||||||
|
}
|
||||||
|
#TOC a::after {
|
||||||
|
content: target-counter(attr(href url), page);
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ***************************
|
||||||
|
* Structure du document *
|
||||||
|
* ************************* */
|
||||||
|
|
||||||
|
/* Ajouter ou supprimer les ID de titre pour un saut de page
|
||||||
|
* Les IDs #first-section et #bibliography peuvent être ajoutés
|
||||||
|
* dans la source markdown. */
|
||||||
|
#first-section,
|
||||||
|
#bibliography,
|
||||||
|
.footnotes {
|
||||||
|
break-before: page;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: #d80669;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
font-family:'Courier New', Courier, monospace;
|
|
||||||
font-size: 90%;
|
|
||||||
background-color: #f2f1f1;
|
background-color: #f2f1f1;
|
||||||
border: 2px solid #d80669;
|
border: 2px solid #d80669;
|
||||||
border-radius: .5em;
|
border-radius: .5em;
|
||||||
margin: 1em;
|
|
||||||
padding: .5em 1em;
|
padding: .5em 1em;
|
||||||
|
/* Évite que les blocs de code ne soient séparés sur 2 pages */
|
||||||
|
break-inside: avoid;
|
||||||
|
}
|
||||||
|
pre > code {
|
||||||
|
border-radius: none;
|
||||||
|
padding: none;
|
||||||
}
|
}
|
||||||
code {
|
code {
|
||||||
font-family:'Courier New', Courier, monospace;
|
font-family:'Courier New', Courier, monospace;
|
||||||
|
@ -90,6 +160,7 @@
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footnotes::before {
|
.footnotes::before {
|
||||||
content: "Notes";
|
content: "Notes";
|
||||||
color: #d80669;
|
color: #d80669;
|
||||||
|
@ -99,12 +170,14 @@
|
||||||
.footnote-ref {
|
.footnote-ref {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
figure {
|
figure {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
border: 2px solid #d80669;
|
border: 2px solid #d80669;
|
||||||
border-radius: .5em;
|
border-radius: .5em;
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
|
break-inside: avoid;
|
||||||
}
|
}
|
||||||
figure img {
|
figure img {
|
||||||
max-width: 85%;
|
max-width: 85%;
|
||||||
|
@ -119,34 +192,15 @@
|
||||||
figcaption::before {
|
figcaption::before {
|
||||||
content: "Figure " counter(figureNumber) " : ";
|
content: "Figure " counter(figureNumber) " : ";
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
blockquote em {
|
blockquote em {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.csl-entry {
|
div.csl-entry {
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
}
|
}
|
||||||
.logo {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
width: 60%;
|
|
||||||
margin: 2em auto 1em auto;
|
|
||||||
}
|
|
||||||
.logo img {
|
|
||||||
max-width: 50%;
|
|
||||||
padding: .5em;
|
|
||||||
}
|
|
||||||
#TOC ul {
|
|
||||||
list-style: none;
|
|
||||||
counter-reset: tocCounter;
|
|
||||||
padding-left: 1.5em;
|
|
||||||
}
|
|
||||||
#TOC li {
|
|
||||||
counter-increment: tocCounter;
|
|
||||||
}
|
|
||||||
#TOC li::before {
|
|
||||||
content: counter(tocCounter) ". ";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue