BibTeX, biblatex and biber ⇒ Numbered Citations which start from an arbitrary Value
-
- Posts: 1
- Joined: Fri Oct 07, 2011 11:04 am
Numbered Citations which start from an arbitrary Value
Thanks, Ian
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
Numbered Citations which start from an arbitrary Value
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}