1

First time asking a question here, so let me know if you guys need more info.

I'm writing one of my first modular documents with sharelatex and I am having trouble with referencing sources.

I have the main file (main.tex) and the bibliography (references.bib) in the same folder with the following code in the .bib:

@book{goossens93,
    author    = {Michel Goossens and Frank Mittelbach and Alexander Samarin},
    title     = {The LaTeX Companion},
    year      = {1993},
    publisher = {Addison-Wesley},
    address   = {Reading, Massachusetts}
} 

And the following minimalist code in main.tex:

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}

\usepackage[]{biblatex}
\addbibresource{references.bib}

\begin{document}
... bla bla bla ... \cite{goossens93}

\end{document}

When I compile the document the citation displays as:

...bla bla bla...[gossens93]

whereas I want it to show the authors name, as it should and not [ref_key], preferably in APA-style. But that I can implement later on.

Andrew Swann
  • 95,762
Simen
  • 11

0 Answers0