关于附录的参考

关于附录的参考

在附录部分增加额外的参考文献部分后,我希望每个参考文献的编号位于论文主体中的参考文献编号之后。

所以它应该是这样的:

主要部分

参考

[1]

[2]

附录

参考

[3]

[4]

不是以下内容:

主要部分

参考

[1]

[2]

附录

参考

[1]

[2]

怎样做工作?

我的乳胶文件的一部分是:

\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}  

答案1

当您“手动”创建参考书目时(即没有 BibTeX 或 biber 的帮助),您必须在第二个参考书目开始时调整计数器的值enumiv(由环境使用)。thebibliography

注意:正确的语法是\begin{bibliography}{9}(用9表示最宽的 biblabel 的宽度)。并且\appendix是一个命令,而不是环境。(我假设 documentclass vldb(不属于我的 TeX 发行版)的操作方式与标准类相同。)

\documentclass{article}  

\begin{document}  

............

\begin{thebibliography}{9}
\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}  

\appendix

\begin{thebibliography}{9}
\setcounter{enumiv}{2}

\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{document}  

相关内容