I am having trouble using BibTeX for my report. My main file is called "Report.tex". Within this directory I have another directory with additional source files. I am including them in my report using
\input{introduction.tex}
. Now within introduction.tex, I am trying to do \cite{ref_from_bib}
. I am doing LaTeX, BibTeX, LaTeX, LaTeX, for my build (using Kile), and I get the error:
Code: Select all
finished with exit code 1
./Chapters/Introduction.tex:13:Undefined control sequence
However, it does actually include the reference when I open the final result. I would just like to know why there is an error.
In "myRefs.bib" I have this:
Code: Select all
@Book{ref_from_bib,
author = {J. D. Anderson},
title = {Modern Compressible Flow},
edition = {2nd},
publisher = {McGraw-Hill},
year = 1990
}
Mike
PS: I am new to the forum, so if I left out any information, ask and I will let you know.
EDIT: Upon further trials, changing the document class to
report
gives no errors with the same setup. Is there something in the bibliography style or class file I could alter to make it work? Thanks again!