[Tex/LaTex] Including references from supplementary material in the reference section of the main text

bibliographiesjournaljournal-publishing

I am preparing a manuscript for submission to Science, the guidelines state that authors may submit supplementary materials for posting on the Science Web site, however I am unable to format the references correctly. The guidelines state:

References only cited in the supplementary materials should be include at the end of the reference section of the main text, and the reference numbering should continue as if the Supplementary Materials was a continuation of the main text.

I currently have a main.tex file and a supplementary.tex file, each containing several citations. If I understand the guidelines correctly, when compiled I need the references in supplementary.pdf to continue where the numbering for the main file finished and be included in the main bibliography.

Any help on how to do this would be greatly appreciated!

Best Answer

Similar guidelines come from PRL journal

Please format any references copied to the Letter using the following example:

[20] See Supplemental Material [url], which includes Refs. [21-24].

[21] [first reference in Supplemental Material not already in Letter]

...

[24] [last reference in Supplemental Material not already in Letter]

This is my solution to this problem:

  1. In the main TEX file include all the references using \nocite{key}.
  2. Generate the PDF and BBL file.
  3. Modify the BBL file to meet the order and style requirements.
  4. Comment out \bibliography{bib_library}
  5. Include the modified BBL file in the main TEX and supplementary TEX files using \input{modified_bibliography.bbl}
Related Question