I am trying to create a bibliography for my report but I can't crack it. I've tried a lot of different things and can't seem to get it to work.
Here is the bib file named referencer.bib:
Code: Select all
@article{sommerhusbranchen,
author = {Sommerhuse.dk ApS},
title = {Sommerhusbranchen og feriehusudlejningsbranchen i Danmark},
publisher = {Sommerhuse.dk ApS},
year = {2006},
address = {http://www.sommerhuse.dk/ferie/sommerhusbranchen.html},
}
@article{kød-vs-grøntsager,
author = {Grønt Forum},
title = {Gode grønne råd},
publisher = {Grønt Forum},
address = {http://www.groentforum.dk/gronneraad_13.html},
}
@article{oversvømmelser,
author = {Grønt Forum},
title = {Gode grønne råd},
publisher = {Grønt Forum},
address = {http://www.groentforum.dk/gronneraad_13.html}
}
@article{ens-dk-forbrug,
author = {Energi Styrelsen},
title = {Indsats i bygninger},
publisher = {Energi Styrelsen},
address = {http://www.ens.dk/DA-DK/FORBRUGOGBESPARELSER/INDSATSIBYGNINGER/Sider/Forside.aspx}
}
and my tex:
Code: Select all
\documentclass{report}
\input{../../preamble/preamble.tex}
\title{Problemanalyse for Klimastyring}
\author{B213}
\begin{document}
\maketitle
\tableofcontents
\input{indledning.tex}
\input{hvem.tex}
\bibliographystyle{plain}
\bibliography{referencer}
\end{document}
Any help appreciated, thanks