shouldknowbetter wrote:[…] If I've understood things correctly, what I am meant to be doing is starting a "thebibliography" section and putting in entries as follows:
Code: Select all
@Book{,
title = {What Went Wrong},
publisher = {Hamra Books},
year = {2010},
ALTALTauthor = {Moustachioed Man},
ALTALTeditor = {},
OPTkey = {Scandal},
OPTabstracts = {I really should have known better.},
[…]
No, you didn't understand correctly. What you present is an entry for a BibTeX database file (*.bib). And this entry is not correct. It should at least read like shown below.
Code: Select all
@Book{moustach:2010,
title = {What Went Wrong},
publisher = {Hamra Books},
year = {2010},
author = {Moustachioed Man},
editor = {}
}
The rest of the field types depends on which bibliography style and which corresponding package you use. The most simple example would look like this.
Code: Select all
\begin{filecontents*}{references.bib}
@Book{moustach:2010,
title = {What Went Wrong},
publisher = {Hamra Books},
year = {2010},
author = {Moustachioed Man},
editor = {}
}
\end{filecontents*}
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\bibliographystyle{unsrt}
\begin{document}
Unfortunately the explanation is not found \cite{moustach:2010}.
\bibliography{references}
\end{document}
For details about producing a bibliography with
BibTeX take a look at its manual. Another more comfortable way of setting up a bibliography would be to use the
biblatex package.
Best regards and welcome to the board
Thorsten