This is my code, where after searching a lot and working around. I couldn't seem to resolve my problem. Really sorry for this trivial problem
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{mathtools}
\usepackage[caption=false]{subfig}
%\usepackage{caption}
%\usepackage{subcaption}
%\usepackage[a4paper]{geometry}
\usepackage{graphicx,bm}
\usepackage{physics}
\usepackage{dsfont}
\usepackage{xcolor}
\usepackage{breqn}
\colorlet{linkequation}{red}
\usepackage[colorlinks,linkcolor=red]{hyperref}
\newcommand*{\field}[1]{\mathbb{#1}}%
\usepackage[style=authoryear]{biblatex}
\addbibresource{thesisbib.bib}
\title{
{My most productive work}\\
{\large Institute}\\
{}
}
\author{Name}
\date{Day Month Year}
\begin{document}
\maketitle
\chapter*{Abstract}
Abstract goes here
\chapter*{Dedication}
To mum and dad
\chapter*{Declaration}
I declare this and that..
\chapter*{Acknowledgements}
I want to thank you all...
\tableofcontents
\chapter{Introduction}
\input{introduction}
\chapter{Experiments}
\input{chapter02/chapter02}
\chapter{Theory 1}
\input{chapter03/chapter03}
\chapter{Theory 2}
\input{chapter04/chapter04}
\chapter{Theory 3}
\input{chapter05/chapter05}
\chapter{Conclusion}
\input{conclusion}
\printbibliography
\end{document}
Output doesn't seem to give any bibliography. I'm using \parencite in order to cite my references.
The error I'm getting.
This is BibTeX, Version 0.99d (TeX Live 2018)
The top-level auxiliary file: Thesis.aux
I found no \citation commands---while reading file Thesis.aux
I found no \bibdata command---while reading file Thesis.aux
I found no \bibstyle command---while reading file Thesis.aux
(There were 3 error messages)
.bblfile which I usedbib latexcomplitation. And for my original code. I used the order of compilePdflatex Pdflatex Biblatex Pdflatex. Am I missing something? – Shamina Nov 06 '19 at 11:54biber, notbiblatex. Actually, I'm surprised that you don't get an error message related to the fact that there is no executable program calledbiblatex. – Mico Nov 06 '19 at 12:04BibTeX subsystem: /var/folders/wl/z407g2c93tv4cncpjn__pm0m0000gn/T/zAvwOWoWMV/thesisbib.bib_71981.utf8, line 1, syntax error: found "}", expected ","– Shamina Nov 06 '19 at 14:57thesisbib.bibwould appear to contain syntax errors, such as missing commas. Second, since you load thebiblatexpackage without the optionbackend=bibtex, you should not be running bibtex; instead, you should be running a program calledbiber. – Mico Nov 06 '19 at 15:47