I have the problem that I have several(!) bibliographies of the following format (more references in them of course)
\begin{thebibliography}{0} \bibitem[A]{A04} J.~E.~Avron, (2004). \emph{Colored Hofstadter butterflies.} TrendsMath. Boston, MA: Birkh\"auser Boston, pp. 11-22. \end{thebibliography}
but also one bibliography in a bibtex file that I can access by calling in the .tex file
\bibliography{biblio}
My question is: Is there a way to combine all these bibliographies in one bibliography, so that they appear as one in the paper?
\begin{thebibliography}{nn} ... \end{thebibliography}as well as (b) a bibliography that's generated by BibTeX (which would require both a\bibliographyand a\bibliographystyledirectives)? How do you\citeentries in the bib file? Please advise. – Mico Sep 13 '20 at 07:54thebibliographyand BibTeX-generated.bblfiles, it would probably be a lot of work to merge them manually, since inthebibliographyyou are responsible for sorting and everything. It might be better to make your manualthebibliography\bibitems available in a.bibfile and let BibTeX generate the entire bibliography. That way you could be reasonably certain that things are sorted correctly and that the output is consistent. – moewe Sep 16 '20 at 05:58