In my .tex document I have
[...]
\nocite{*}
\bibliographystyle{amsplain}
\bibliography{bibliografie}
\end{document}
And I have the bibliografie.bib file in the same folder. However, why the bibliography does not appear at the end of the document?
And bibliografie.bib contains the following:
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984
}
@BOOK{latexbook,
author = "Leslie Lamport",
title = "{\LaTeX \rm:} {A} Document Preparation System",
publisher = "Addison-Wesley",
year = 1986
}


bibtexautomatically, the absence of a.bblfile will mean that there is nothing for latex to read, and therefore no bibliography will ever appear in your document. – barbara beeton May 07 '11 at 13:37test.tex) in the following way:pdflatex test,bibtex test,pdflatex test, andpdflatex test. – Gonzalo Medina May 07 '11 at 19:53\begin{thebibliography}{..} ..... \end{thebibliography}into a tex file, saybiblio.texand just\includeit after \backmatter inmain.tex. Problem solved. It is adhoc but does the job! Neither solution in any forum actually worked for me but this one did. – Karthik C Mar 29 '19 at 02:16