I have a main latex source and its bibtex file: ./main.tex and ./main.bib
In main.tex the bibliography is included as \bibliography{main}, then the pdf is correctly produced with all the needed references at the end.
Then I have a subdirectory and the appendix latex file: ./add/appendix.tex, which is a standalone latex source. In this document I would like to share (some of) the ../main.bib references, but keeping the main document numbering. Besides, a bibliographic section is only required in the main.
Including \bibliography{../main.bib} and running $ bibtex appendix gets the wrong numbering actually, restarting from one.
My problem is actually a bit different of what described here: Multiple LaTeX files using the same bibliography or here: Two Bibliographies: one for main text and one for appendix but still I did not find the solution.
appendix.texlook like (it seems to be a standalone document)? Does it have a\bibliographystyle{}specification? Do you runbibtexon it? – mafp Jul 04 '13 at 15:14appendix.texis a standalone document, and I want to share (some of) the references of the main and especially the numbering must be the same. Besides, while a bibliography section is included in the main, in the appendix resulting document is not required. – gluuke Jul 04 '13 at 15:44