Sorry, title is vague as I don't know how to specify. I am trying to use biblatex to produce a bibliography, but the references section is not produced, and all that is produced is a bold version of the reference name.
This is my MWE:
% !TEX TS-program = LuaLaTeX
%Macro Preamble
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{fullpage}
\date{
\today}
\title{\vspace*{-9ex}\scshape %enter title here
My cool title}
\author{\scshape\small\bfseries %enter name here
Christopher Tatlock}
\usepackage[bibencoding=utf8,style=apa]{biblatex}
\addbibresource{references.bib}
\begin{document}
\maketitle
Hello, this is a reference \parencite{albert}
\printbibliography
\end{document}
The output for this is
Hello, this is a reference (albert)
This is my bib file:
@article{albert,
title={Understanding the Life Course through Newspaper Obituaries.},
author={Albert, Ajani Oludele and Anthony, Adegoke and Lateef, Adisa Ademola},
journal={Indian Journal of Gerontology},
volume={30},
number={4},
year={2016}
}
It feels like I am missing something blatantly obvious. I appreciate any help.
I am also trying with apacite with similar code, but apacite is generating
Hello, this is a reference (?, ?)
instead, with no references section.
biber? See also Question mark or bold citation key instead of citation number – leandriis Jan 16 '20 at 07:54% !BIB TS-program = biberat the beginning of my document. Still no luck. – Jake Ireland Jan 16 '20 at 07:57biblatexoptionbibencoding=utf8,with LuaLaTeX.biblatexassumes that the guessed.texfile encoding and the.bibfile encoding is the same. You also won't need\usepackage[english]{babel}with LuaLaTeX. – moewe Jan 16 '20 at 21:37\usepackage[utf8]{inputenc}with LuaLaTeX. The line\usepackage[english]{babel}is stills useful no matter if you use pdfLaTeX, LuaLaTeX or XeLaTeX. Sorry for that. – moewe Jan 17 '20 at 16:10