[Tex/LaTex] BiBTeX in WinEdt

bibtexwinedt

I have a problem. Using WinEdt try to make my bibliography with the bibtex file. But get the following message

This is BibTeX, Version 0.99c (MiKTeX 2.8)
The top-level auxiliary file: report_q_cdc11.aux
The style file: unsrt.bst
I couldn't open database file biblio/1755988.bib
---line 62 of file report_q_cdc11.aux
: \bibdata{biblio/1755988
:                        }
I'm skipping whatever remains of this command
I found no database files---while reading file report_q_cdc11.aux
(There were 2 error messages)

Could you please tell me, what can be wrong? This bibtex file I just downloaded from web.

Best Answer

use this test file and also controll that your bibfile is readable and in the correct subdirectory. What happens?

\documentclass{article}

\begin{document}

\nocite{*}
\bibliographystyle{plain}
\bibliography{biblio/1755988}

\end{document}
Related Question