At the initial stage, I wrote individual chapters for my master's thesis. Now, it is time to integrate the all chapters. Main.tex file is being created to include all the chapters. Unfortunately, tutorials are confusing when I try to add the bibliographies. I use apa style of bibliography.
main.tex
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{references.bib}
\title{
{Reflections on Exile}
{\large Unversity of Harvard}\\
{\includegraphics{unibremen.png}}
}
\author{Python Buddha}
\date{02 March 2020}
\begin{document}
\maketitle
\include{chapter1.tex}
...
\end{document}
chapter1.tex
\section{What is Lorem Ipsum?}
Lorem Ipsum is simply dummy text\parentcite{microworlds}.
\biberis completley new for me. yes,\parenciteresolved my problem. There is no printed bibliography. – Manghud Nov 11 '19 at 14:34referenced.bibcontains this reference:@webpage{microworlds, Date-Modified = {2019-08-20 17:15:58 +0200}, Month = {July}, Note = {[Online; accessed 12-July-2019]}, Title = {Micro Worlds}, Url = {http://www.microworlds.com/}, Year = {2019}, Bdsk-Url-1 = {http://www.microworlds.com/}}
– Manghud Nov 11 '19 at 14:35biberinside package comment? – Manghud Nov 11 '19 at 14:37biberis the program that actually processes your.bibfile. See bibtex vs. biber and biblatex vs. natbib for an explanation. You need to tell your editor to process the document usingbiberrather thanbibtex(which is usually the default for most editing environments.) See Biblatex with Biber: Configuring my editor to avoid undefined citations for how to do this. – Alan Munn Nov 11 '19 at 15:01\parencitenot\parentcite- there should be not.) – moewe Nov 11 '19 at 16:58