I am using a template for my thesis in overleaf and I've been trying to have a seprate bibliography after each chapter using this
\bibliographystyle{IEEEtran}
\bibliography{library}
All the packages are listed below, I know package{biblatex} and package{chapterbib} are not compatible. but everytime I comment biblatex the pdf won't be generatd!
\documentclass[a4paper]{report}
%PhD Thesis Template
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{natbib}
\usepackage{rotating}
\usepackage{float}
\usepackage{ragged2e,array,booktabs}
\usepackage{longtable,tabu}
\usepackage{appendix}
\usepackage{tipa}
\usepackage{clrscode}
\usepackage{subfigure}
\usepackage{mathrsfs}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage[absolute]{textpos}
\usepackage{biblatex}
\usepackage{natbib}
\usepackage{chapterbib}
\usepackage[nottoc]{tocbibind}
\usepackage[draft=false]{hyperref}
\usepackage{changepage}
\begin{document}
\setlength{\TPHorizModule}{200mm}
\setlength{\TPVertModule}{100mm}
\textblockorigin{61mm}{19mm}
\title{The Thesis Title \will go here when you know it: \a meaningful and succinct phrase}
\author{Your Name Here \
\
PhD thesis\
\
\date{2016}
\include{abstract}
\setcounter{page}{3}
\include{acknowledgements}
\include{license}
\tableofcontents
\listoffigures
\listoftables
\include{zabbreviations}
\include{intro}
\include{background}
\include{conclusions}
\appendix
\end{document}
in Intro chapter code will be like
\chapter{Introduction}
\label{ch:intro}
text
and then
%% set the bib style
\bibliographystyle{IEEEtran}
\bibliography{library}
I would really apreciate any help
biblatexcan do something similar tochapterbibout of the box. – daleif Feb 09 '22 at 14:13