I'm doing my thesis and I have an error with bibtex, I'm using kile in ubuntu.
My code its like that
Code: Select all
\documentclass{article}
\begin{document}
bla bla \cite{fouque}
\end{document}
\renewcommand{\refname}{Bibliografía}
\nocite{kristina,karatzas}
\bibliographystyle{amsplain} % (uses file "plain.bst")
\bibliography{biblio} % expects file "myrefs.bib"
Code: Select all
@Book{ bjork,
title = "Arbitrage theory in continuous time",
author = "Tomas Bj{\"o}rk",
publisher = "Oxford university press",
address = "Oxford",
year = "1998"
}
@Book{ fouque,
title = "Derivates in Financial Markets with Stochastic Volatility",
author = "Jean-Pierre Fouque and George Papanicolao and K. Ronnie Sircar",
publisher = "Cambridge university press",
year = "2000"
}
@Book{ cairns,
title = "Interest rate models: an introduction",
author = "Andrew Cairns",
publisher = "Princenton university press",
year = "2004"
}
@Book{ oksendal,
title = "Stochastic differential equations: an introduction with applications",
author = "B.K. {\O}ksendal",
year = "2003",
publisher = "Springer"
}
@MastersThesis{ kristina,
title = "Stochastic Volatility",
author = "Kristina Andersson",
school = "Upsala University",
year = "2003"
}
@Book{ karatzas,
title = "Brownian motion and stochastic calculus",
author = "I. Karatzas and S.E. Shreve",
publisher = "Springer",
year = "1991"
}
Code: Select all
Anteproyecto.tex:107: Citation `oksendal' on page 3 undefined on input line 107.
Anteproyecto.tex:215: Citation `bjork' on page 5 undefined on input line 215.
Anteproyecto.tex:257: Citation `fouque' on page 6 undefined on input line 257.
Anteproyecto.tex:300: Citation `cairns' on page 7 undefined on input line 300.
There is something wrong with my code?
Thanks in advance