I have the protext MikTex 2.9 + TeXMaker X package configured with bibtex command "bibtex %" and build command "latex -interaction=nonstopmode %.tex|bibtex %.aux|latex -interaction=nonstopmode %.tex|latex -interaction=nonstopmode %.tex|xdvi %.dvi"
Along with my MikTeX distribution came a load of .bib files which can be invoked with no problem via
Code: Select all
\documentclass{article}
\begin{document}
I want to cite \cite{taylor}.
\bibliographystyle{plain}
\bibliography{startex}
\end{document}
Now when I write my own .bib file, no matter where I put it or what I do to invoke it, there is no .bbl file produced. This behaviour is very weird, since I can copy/paste the contents of one of MikTeX's preloaded .bib files into my own, save it in the same location it came from with a different name and change the key, so I essentially have a carbon copy of a working .bib file but under a different name so BiBTeX doesn't get confused. Result? No .bbl file can be produced.
What is going on here?