BibTeX, biblatex and biberBibTeX References Counter

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
duduspot
Posts: 2
Joined: Tue Feb 12, 2013 1:54 pm

BibTeX References Counter

Post by duduspot »

Hello guys!!

I'm using TexMakerX 2.1, MikTeX 2.9 and I'm writing a master thesis with one template that was given to me. I use BibTeX to make all references. I have two separate reference (Internet References and Literature).

The problem is that when I introduce some references to "Internet References" everything works fine but the number of reference starts with number [3]! It's wrong because I want to start from [0].

I will put the code of literature creation and prints of my LaTeX generated internet references:

Code: Select all

\newpage
\renewcommand\bibname{Literature}

%\setlength{\bibsep}{0.0pt}

\addcontentsline{toc}{chapter}{Literature}
\label{lit}
\bibliography{literature}
\bibliographystyle{alphadin}
% the style of bibliography
% start a new page

\newpage
\addcontentsline{toc}{chapter}{Internet References}
\label{wlit}
\bibliographyweblink{weblinks}
\bibliographystyleweblink{abbrv}
\newpage


And the result in the document is this:
Internet References

[3] D. Energy and T. Unit. Towards a secure, sustainable and competitive european energy
network. European Comission, August 2012. http://eur-lex.europa.eu/LexUriServ/

[4] Eurostat.Electricity generated from renewable energy sources, EU-27, 2000-2010. European
Comission, August 2012. http://epp.eurostat.ec.europa.eu/statistics_explained/
index.php/Renewable_energy_statistics.

[5] I. for Sustainable Growth Unit. ICT for a Low Carbon Economy - Smart Electricity Distri-bution Networks. European Comission, October 2012. http://ec.europa.eu/information_
society/activities/sustainable_growth/docs/sb_publications/pub_smart_edn_web.
pdf.

How can I reset that counter (the number between square brackets)? I can not find it anywhere in the code, so I suspect that is one type of internal counter.

Please help.
Last edited by localghost on Tue Feb 12, 2013 5:51 pm, edited 1 time in total.

Recommended reading 2024:

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

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

duduspot
Posts: 2
Joined: Tue Feb 12, 2013 1:54 pm

BibTeX References Counter

Post by duduspot »

Hy guys! I made a mistake saying that m using bibtex. Im really using multibib and I just found a solution for my problem.

I had a package:

Code: Select all

\usepackage{multibib}
and I changed to this:

Code: Select all

\usepackage[resetlabels]{multibib}
It solved my problem. I found how to reset the internal counter Now the references counter starts in [1] :D
Post Reply