BibTeX, biblatex and biberNumbered Citations which start from an arbitrary Value

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
cite_question
Posts: 1
Joined: Fri Oct 07, 2011 11:04 am

Numbered Citations which start from an arbitrary Value

Post by cite_question »

I'm trying to write a document with references (from a bibtex file) that are numbered (e.g., a fun fact [3]) with the numbers starting at 34. (This is for submitting the supplement to a paper, written in LaTeX, where the main paper has been written by my coauthors using a different word processor program and the references in the supplement are required to continue sequentially after the references in the main paper.) I can get numbered references with the cite or natbib packages, but I can't figure out how to change the value of the reference number using either package. Does anyone know if it's possible to do this (using cite, natbib, or some other package)?
Thanks, Ian

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

JKeaveney
Posts: 1
Joined: Wed Jan 04, 2012 2:51 pm

Numbered Citations which start from an arbitrary Value

Post by JKeaveney »

I was having the same issue (for journal submission as well).

Found this on another site but thought I'd repost as this seems to be badly documented:

Bibtex (apparently) uses the enumiv counter.

In the preamble:

Code: Select all

\let\oldthebibliography=\thebibliography
\let\oldendthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
    \oldthebibliography{#1}%
    \setcounter{enumiv}{ <arb.value> }%
}{\oldendthebibliography}
This will start referencing from arb.value + 1
Post Reply