BibTeX, biblatex and biber ⇒ Using BibTeX for Citations without a Bibliography Section
-
- Posts: 1
- Joined: Thu Oct 20, 2011 8:27 pm
Using BibTeX for Citations without a Bibliography Section
Does anyone know if there is a way to use bibtex for citations without including a bibliography section? Specifically I ask because I have a large datatable that I need to typeset separately from the main paper and which has a list of references at the bottom. As such the document with the datatable has just the table and nothing else so having a bibliography section doesn't make sense but it would be easier (and better) if I could link the reference list to the same .bib file as the paper (where the referenced papers do appear in the bibliography).
PhysDragon
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Using BibTeX for Citations without a Bibliography Section
If, on the other hand, you simply want the table to be by itself after the bibliography, then put the bibliography command before the table environment and it should work fine.
You could do something sneaky, such as writing the supplemental document with an \include at the bottom to include the .bbl file, then post-process the PDF to remove the last page(s). This would do what you asked, indirectly. An alternative is to grab all the \cite commands from the paper and turn them into \nocite commands at the beginning of the extra paper. This, however, will not auto-update next time you change something.