I would like to use multiple .bib files for my article, such as file1.bib, file2.bib.
However, I would like my references not to be separated (such as "Primary sources", "Secondary sources", etc.) These bibliographies just need to be merged into one.
One way to do this is to just copy-paste these .bib files into one .bib file, and this would solve the problem. However, I would like to keep it split into several .bib files, by topic (file1.bib contains articles on topic1, file2.bib contains on topic2, and so on).
I tried to do
\bibliographystyle{alpha}
\bibliography{file1}
\bibliography{file2}
but this just gives me the same bibliography twice!
\bibliograhy{file1,file2}– Guido Nov 24 '12 at 20:45