I'm trying to find a way to have my bibliography with page number of all its citations.. something similar to this..
Author A, Author B, author C, ”yet another amazing paper" amazing conference, 2014. Cited on pages 97, 99 & 105.
Question of curiosity, does LaTeX provide some way to have the references in the order of first occurrence?
\documentclass[a4paper,12pt]{article}
\usepackage[square, sort, numbers, authoryear,backref=true,backrefstyle=none, hyperref,backend=biber]{biblatex}
\usepackage{cite}
\usepackage{hyperref}
\hypersetup{
colorlinks=True,
citecolor=Green,
linkcolor=Red,
urlcolor=Blue,
linktoc=all,
}
\begin{document}
test~\cite{texbook}
\bibliographystyle{unsrt}
\bibliography{references}
\end{document}
references
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984 }