I successfully incorporated a bibliography with BibTeX (file exported from Zotero named Chapter_1.bib) and now I am trying by using the package multibbl since I will have multiple bibliographies (several per chapter). My code looks like as follows:
\documentclass{book}
\usepackage{multibbl}
\newbibliography{biblio1}
\begin{document}
Blablablablablablablablablabla \cite{biblio1}{einstein_1905} and \cite{biblio1}{einstein_1935}.
\bibliographystyle{biblio1}{plain}
\bibliography{biblio1}{Chapter_1}{References}
\end{document}
It does create a file biblio1.aux which contains:
\citation{einstein_1905}
\citation{einstein_1935}
\bibstyle{plain}
\bibdata{Chapter_1}
But I get the following error "This is BibTeX, Version 0.99d (MiKTeX 2.9.6350 64-bit) The top-level auxiliary file: Th Process exited with error(s)"
Any idea why it is not working?
.blgfile say? What is the content of theeinstein_1905andeinstein_1935bib entries? – Dai Bowen Jul 27 '17 at 14:27@article{einstein_1905, title = {}, volume = {}, issn = {}, url = {}, doi = {}, language = {en}, number = {}, urldate = {}, journal = {}, author = {}, month = sep, year = {}, pages = {}, file = {} }and same thing for
einstein_1935Where should I look after opening the .blg file please?
– Hornet Jul 27 '17 at 14:57