J'ai dans mon texte les références bibliographiques qui apparaissent comme cela : [13][14][15][16][17]. J'aimerais savoir s'il est possible de les rassembler en [13-17] par exemple. Posée 18 Mai '17, 18:24 AurélienCocq Pathe ♦♦ |
Avec l'extension ECM Ouvrir dans l'éditeur Overleaf
\documentclass[french]{article} \begin{filecontents*}{mtbib.bib} @book{foo, author = {Moi même}, title = {Mon travail}, publisher = {Publications libres}, year = {2016} } @book{bar, author = {Autheur 1}, title = {Livre 1}, publisher = {Publications libres}, year = {2017} } @book{baz, author = {Un autre autheur}, title = {Livre 2}, publisher = {Publications libres}, year = {2015} } @book{bla, author = {Moi même 2}, title = {Un autre travail}, publisher = {Publications libres}, year = {2017} } \end{filecontents*} \usepackage{lmodern} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{babel} \usepackage[style=numeric-comp]{biblatex} \addbibresource{mtbib.bib} \begin{document} Bla bla \cite{bar,baz,foo} \printbibliography \end{document} Publiée 18 Mai '17, 22:23 touhami |