I am a newbie in using LaTeX for documentation purposes. I am using miktex 2.9 and texmaker. I wrote following script for citing bibliographies in my document.
Code: Select all
\documentclass{mscLiterature}
\begin{document}
\bibliographystyle{ieeetr}
\printbib{MyBib}
\bibliography{MyBib}
If you want to know more about \LaTeX\ you better read \cite{texbook}.
\end{document}
The MyBib.bib looks like:
Code: Select all
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = "1984"
}
I am also getting the same error even when I am writing following set of lines before
\end{document}
:Code: Select all
latex mscLiterature
bibtex mscLiterature
latex mscLiterature
pdfLatex mscLiterature
pdf Viewer mscLiterature
Thanks a lot in advance!