I got a pretty crappy template from my lecturer but now it is too late to switch. So here is my example:
Code: Select all
\documentclass[10pt,letter,twocolumn]{article}
\usepackage[square,comma,sort&compress]{natbib}
\begin{document}
\section{Intro}
Some text "quote" \citep[1]{Key} some more text
\bibliographystyle{abbrv}
\bibliography{file}
\end{document
Code: Select all
@InProceedings{Key,
author = {some guy},
title = {TeX},
year = 2011
}
\bibliography
is supposed to print all the literature I actually referenced in my text. But as I mentioned in the topic title it creates the output and does not print any literature at the end of my document.some text "quote" [?,1] some more text
I compiled it dozens of times with no change. Anyone got a clue? Thank you!