I read many posts in a different forum but I can not display my bibliography in Texmaker
\documentclass{l4proj}
\usepackage{pdfpages}
\begin{document}
\title{Level 4 Project Report Template} % change this to your title
\author{John H. Williamson}
\date{September 14, 2018}
\maketitle
\begin{abstract}
....
\end{abstract}
\educationalconsent
\bibliography{bib}
\bibliographystyle{agsm}
% Force the bibliography not to be numbered
\renewcommand{\thechapter}{0}
\nocite{*} % all not cited bib entries are shown in bibliography ...
\bibliography{l4proj} %l4proj.bib is in the same folder
\end{document}
And here is some of my bibliography:
@inproceedings{Pey17,
author = {Simon {Peyton Jones}},
title = {How to Write a Great Research Paper},
booktitle = {2017 Imperial College Computing Student Workshop, {ICCSW} 2017, September
26-27, 2017, London, {UK}},
pages = {1:1--1:1},
year = {2017},
}
@book{Wil09,
title={Style: the basics of clarity and grace},
author={Williams, Joseph M and Bizup, Joseph},
year={2009},
publisher={Pearson Longman}
}
Here are the files that MixTex generate me :

Thank you!

*.blgto your question (its the log file for the bibtex run) ... – Mensch Jul 14 '19 at 00:47.blgin my folder. – Dorian Jul 14 '19 at 12:45bibtex. So best is to ignore the editor TeXmaker for testing, open your terminal/console, change to your directory with tex codemwe.texand type:pdflatex mwe.texthenbibtex mwe(no extention! -->mwe.blg) then twicepdflatex mwe.tex– Mensch Jul 14 '19 at 22:34Package natbib Error: Bibliography not compatible with author-year citations.in my terminal, I usedbibtex nameOfMyProjectand it works. Have a nice day. – Dorian Jul 15 '19 at 19:01