I have a bib file called putascitas.bib (generated through Mendeley in Bibdesk).
Now, what do I have to do to just get the references in the end of the document? Nothing I do seems to work.
Thanks.
I have a bib file called putascitas.bib (generated through Mendeley in Bibdesk).
Now, what do I have to do to just get the references in the end of the document? Nothing I do seems to work.
Thanks.
\bibliography{filename}doesn't mean that everything in the bib-file is printed automatically, only entries in the.bibfile that are cited with a command like\cite{<citation key>}are put there. If you do want all entries in the bib file to be printed even if they're not cited, add\nocite{*}to your document. – Torbjørn T. Jun 10 '17 at 14:45