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.