When I BibTex compile my test.bib file using TexMaker I get an error that reads:
"I couldn't open file name `test.aux'"
and when I compile my .tex file using the sequence
PdfLatex => Bib(la)tex => PdfLatex (x2)
the Bib(la)tex compile gives the error
"I couldn't open file name `test.blg'"
Having looked through the directory I can't find a .blg or .bbl file for either the .tex file or the .bib file nor have I been able to get produce either of these.
My .tex file is as below:
\documentclass{article}
\begin{document}
This is a demo. \cite{greenwade93} \cite{jones2014predicting}
\bibliographystyle{plain}
\bibliography{test}
\end{document}
and my .bib file is
@article{greenwade93,
author = "George D. Greenwade",
title = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year = "1993",
journal = "TUGBoat",
volume = "14",
number = "3",
pages = "342--351"
}
@inproceedings{jones2014predicting,
title = "Predicting the optimum air permeability of a stock of detached English dwellings",
author = "Jones, Benjamin and Lowe, Robert",
booktitle = "Proceedings of 35th Air Infiltration and Ventilation Centre (AIVC) Conference, Poznan, Poland. Retrieved from http://www. aivc. org/sites/default/files/97. pdf",
year = "2014"
}
bibtex testin the second step. – Fran Mar 04 '18 at 12:53bibtex %.aux. If this fail, then try to compile your example without any editor (in the command line prompt) with the correct compiling sequences of that answer. In this answer is explained the difference among bibtex and biblatex and biber and the correct compiling sequence in each case. – Fran Mar 04 '18 at 16:55