A MWE would be the following:
Code: Select all
\begin{filecontents}{\jobname.bib}
@Book{holm1967,
author = {Holm, Ragnar},
ALTeditor = {},
title = {Electric contacts, theory and applications},
publisher = {Springer-Verlag},
year = {1967},
OPTkey = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
edition = {4th},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
\end{filecontents}
\documentclass{article}
\begin{document}
for example by using the theories in~\cite{holm1967}. The biggest variation is in $k$,
\bibliographystyle{authordate1}
\bibliography{\jobname}
\end{document}
The bibliographystyle
authordate1
gives the corrupted bibitem. Authordate1.bst is a very old file, i do not recommend it's usage.
Instead, you could choose the modern package
biblatex in conjunction with biber. Many styles are available.
Code: Select all
\begin{filecontents}{\jobname.bib}
@Book{holm1967,
author = {Holm, Ragnar},
ALTeditor = {},
title = {Electric contacts, theory and applications},
publisher = {Springer-Verlag},
year = {1967},
OPTkey = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
edition = {4th},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
\end{filecontents}
%\documentclass{singlecol-new}
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
for example by using the theories in~\cite{holm1967}. The biggest variation is in $k$,
\printbibliography
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.