References in a report document class, using biblatex with backref option, look like this:
where I have circled the backreference.
I want something more similar to Wikipedia or at least more condensed, if it is possible. Wikipedia backref looks like this:
Again I have circled the backreference.
Here a MWE
\documentclass[12pt,twoside]{report}
\usepackage[headheight=18pt,a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm, headsep=18pt]{geometry}
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}
\usepackage{notoccite}
\usepackage{hyperref}
\usepackage[style=numeric-comp, backend=biber, backref=true]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Online{Flexo,
Title = {Flexo-Conformational search},
Author = {M. Lavecchia},
Url = {https://github.com/lavecchia/flexo},
Year = {2017},
Owner = {alumno},
Timestamp = {2017.09.02}
}
@Article{Packmol,
Title = {PACKMOL: a package for building initial configurations for molecular dynamics simulations},
Author = {Martínez, Leandro and Andrade, Ricardo and Birgin, Ernesto G and Martínez, José Mario},
Year = {2009},
Number = {13},
Pages = {2157--2164},
Volume = {30},
Journal = {Journal of computational chemistry},
Publisher = {Wiley Online Library}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
In particular we can cite \cite{Flexo} but could also be \cite{Packmol} or anything.
\printbibliography
\end{document}


