After adding an additional reference section in the appendix part, I want to the number of each reference item is after the number of reference in the main body of the paper.
So that it should be like this:
Main Part
Reference
[1]
[2]
Appendix
Reference
[3]
[4]
Not the following:
Main Part
Reference
[1]
[2]
Appendix
Reference
[1]
[2]
How to do the job?
Part of my latex file is:
\documentclass{vldb}
\begin{document}
............
\begin{thebibliography}
\bibitem{anh2005inverted}
V.~N. Anh and A.~Moffat.
\newblock {Inverted index compression using word-aligned binary codes}.
\newblock {\em Information Retrieval}, 8(1):151--166, 2005.
\bibitem{baeza-fast}
R.~Baeza-Yates.
\newblock {A fast set intersection algorithm for sorted sequences}.
\newblock In {\em Combinatorial Pattern Matching}, pages 400--408, 2004.
\end{thebibliography}
\begin{appendix}
\begin{thebibliography}
\bibitem{buttcher2006trec}
S.~B{\"u}ttcher, C.~L.~A. Clarke, and I.~Soboroff.
\newblock {The TREC 2006 terabyte track}.
\newblock In {\em Proc.\ 15th Text Retrieval Conference (TREC)}, 2006.
\bibitem{fisher1963statistical}
R.~Fisher and F.~Yates.
\newblock {\em {Statistical tables for biological, agricultural and medical
research}}.
\newblock Oliver and Boyd, 1963.
\end{thebibliography}
\end{appendix}
\end{document}