I'm using Mendeley which creates automatically a bibtex file. On the current document I cite websites and other stuff that I don't want to include in this mendeley file.
So I'm trying to have two separate bib files, is it possible to do so? Most searches return how to have sections within the bibliography and other stuff, but I couldn't find having the bibliography in two different files.
The obvious solution is to copy paste the mendeley bib file to the other one, but since the first one is changing, I'd like to find a more permanent solution.
A MWE:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[utf8x]{inputenc}
%opening
\title{aa}
\author{bb}
\begin{document}
\maketitle
\section{A}
First cite\cite{aa}.
\section{B}
Second cite\cite{bb}.
\bibliographystyle{acm}
\bibliography{aa.bib}
\bibliography{bb.bib}
\end{document}
Code: Select all
@article{bb,
title = {flat},
journal = {What the heaven},
volume = {56},
number = {1},
pages = {29 - 45},
year = {2008},
author = {Joan Sola and Marti Pol},
}
Code: Select all
@article{aa,
title = {Cliffs},
journal = {What the hell},
volume = {56},
number = {1},
pages = {29 - 45},
year = {2008},
author = {Anthony Cooper and Jaques Cousteau},
}
Quim