I'm trying to convert a large excel into a big bibtex bibliography. I'm running a sample first. I run my code, but it doesn't look as it should.
\documentclass[11pt]{article}
\begin{document}
\bibliographystyle{plain}
\bibliography{mybib}
@article{article1,
author={Sell, Ralph R.},
title={TRANSFERRED JOBS.},
journal={Work and Occupations},
volume={10},
number={2},
year={1983},
pages={179-206}
}
\end{document}
which prints
References
@articlearticle1, author=Sell, Ralph R., title=TRANSFERRED JOBS., journal=Work and Occupations, volume=10, number=2, year=1983, pages=179- 206
What are I missing?


@article{...}stuff should go to a separate file calledmybib.biband compiled withbibtex– Jun 16 '15 at 16:09