1

I'm trying to append to the end of my manuscript the supplementary information to form one latex file. The resulting file will of course have two bibliographies, corresponding to the one in the manuscript and the one in the SI separately.

So the manuscript looks like this:

\begin{document}

Text_1 (some text with citations)

Bibliography_1

\end{document}

The supplementary information looks like this

\begin{document}

Text_2 (some other text with citations)

Bibliography_2

\end{document}

Now, I want to merge the two into one latex file that will output this:

Text_1

Bibliography_1

Text_2

Bibliography_2

Could anyone show me how to write this?

Thanks!

1 Answers1

1

I found the solution.

One can simply use the chapterbib package.

\documentclass{article}
\usepackage{chapterbib}

\begin{document}

\input{file1}

\input{file2}

\end{document}

It is important that one runs pdflatex on the main file first and then bibtex on file1.tex and then file2.tex before running pdflatex twice on the main file.