- Modifier `OPTvolume`, `OPTissue` et `OPTdoi` á à `volume`, `issue` et `doi`
- ajout information comme issn d'informations comme `issn = {000-0000}`
----
\begin{filecontents}{bibliographie-rapport-de-stage-master2.bib}
@article{11,
author = {Murphy, Jeffrey N. and Harris, Kenneth D. and Buriak, Jillian M.},
title = {Automated defect and correlation length analysis of block copolymer thin film nanopattern},
journaltitle = {Plos one},
date = {2015-07-24},
volume = {10},
issue = {7},
doi = {https://doi.org/10.1371/journal.pone.0133088},
issn = {000-0000},
}
\end{filecontents}
\documentclass{article}
\usepackage[french]{babel}
\usepackage[
backend=biber, % compilateur par défaut pour biblatex
sorting=none, % pas de tri.
citestyle=numeric, % style de citation auteur-année
bibstyle=numeric, % style de bibliographie alphabétique
maxnames=20, % nombre maximal d'auteurs
autopunct=false,
style=numeric,
]
{biblatex}
\addbibresource{bibliographie-rapport-de-stage-master2.bib}
\begin{document}
Murphy\cite{11}
\printbibliography
\end{document}