I'm struggling using the APA citation style, and would like to see in text citations in the form (Author, Date) in the text, but I either get an error compiling or {labelyear}{labelmonth} after every citation in my console.
Here is the top matter in my latex document... am I missing something/using contradicting packages?
Here is the code snippet.
\documentclass[11pt]{report} % Use the report document class if you're looking to include chapters, otherwise article is fine
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
%packages allowing for images to be inserted
\usepackage{graphicx}
\usepackage{floatrow}
\graphicspath{ {thesisimages/} }
%packages for formatting Figures
\usepackage[font=scriptsize]{caption}
\usepackage{mwe}
%packages pertaining to the bibliography
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{thesisbib.bib}
%packages pertaining to formatting
\linespread{1.6}
\usepackage[a4paper, total={6.5in,9in}]{geometry}
%package for the degree symbol
\usepackage{gensymb}
%package for making subFigures(below)
\usepackage{subfig}
%package for including quotes (below)
\usepackage{dirtytalk}
\usepackage{tabularx}
\usepackage{array}
%package for changing the line spacing in bibliography
\usepackage{lipsum}
\usepackage{setspace}
%package for including pdf packages
\usepackage{pdfpages}
%package for appendices?
\usepackage[toc,page]{appendix}
\begin{document}
These people said explained some things \cite{Haralick1979} \cite{Hodges2003}.
\printbibliography
\end{document}
Any help would be appreciated!
dirtytalkwhich for some reason is not available on my MikTeX system everything compiles smoothly. Please try to break down the example even further. Does the problem still persists with the code at https://gist.github.com/moewew/685539e2b17c0c1880cefbb28582d495? If so, please show us the.logand.blgfile after the LaTeX, Biber, LaTeX, LaTeX build cycle. If something goes wrong you should be getting error messages, what do they say? – moewe Jul 24 '18 at 05:43\DeclareLanguageMappingline, see https://tex.stackexchange.com/q/36331/35864. But without the specific error message and more detailed information that is just guessing. Please update your question with the information requested in my last comment. – moewe Jul 25 '18 at 07:00When I commented dirtytalk, I get an error for each citation when I compile the document.
– Maggie Jul 26 '18 at 13:39biblatexandbiblatex-apaare outdated and possibly incompatible (not too sure). Can you make an update? In old versions ofbiblatexyou need\DeclareLanguageMapping{english}{english-apa}, see https://tex.stackexchange.com/q/36331/35864. – moewe Jul 26 '18 at 16:10