发布时间:2009-12-05 16:48:17
文章类别:参考文献
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770100gaol.html
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
如何让每章或者每节都有单独的参考文献?
使用chapterbib 宏包可以让你在一个文档里产生多个参考文献。不过并不像它的名字所表示的那样,这
些参考文献并不是和章或者节联系在一起,而是和\include 命令包含的子文件联系在一起。也就是说,每
一个通过\include 命令包含的子文件可以拥有一个单独的参考文献,
bibunits 宏包则允许用户使用\bibliographyunit 命令选择让每章还是每节拥有一个单独的参考文
献。也可以通过它提供的bibunit 环境和\putbib 命令使得任意的一段文档内容拥有一个单独的参考文
献。bibunits 必须配合BibTEX 使用。详细的用法请参考宏包使用说明。
演示代码:
\documentclass[oneside,a4paper]{book}
\usepackage{CJK} % 用CJK支持汉字
\usepackage[body={398pt,550pt},footskip=30pt,%
\renewcommand{\baselinestretch}{1.3}
\color{black}
\pagestyle{empty}
\usepackage{chapterbib}
\setcounter{page}{6}
%\setlength\textwidth{59.0pt}
\usepackage{colortbl}
\begin{CJK*}{GBK}{song}
\begin{document}
\include{chapter1}
\begin{thebibliography}{99}
\baselineskip=3.5mm
\bibitem{1} S{\sc chmidt} R O. Multiple
emitter
location and signal parameter
estimation[J]. IEEE Transactions on
Antennas and Propagation, 1986, 34(3):
267-280.
\bibitem{2} F{\sc riedlander} B. A
sensitivity
analysis of the MUSIC algorithm[J]. IEEE
Transactions on Acoustics,
Speech and Signal Processing, 1990,
38(10): 1740-1751.
\bibitem{3} S{\sc windlehurst} A, K{\sc
ailath} T. A performance analysis of
subspace-based methods in the presence of
model error: Part I─The
MUSIC algorithm[J]. IEEE Transactions on
Signal Processing, 1992,
40(7): 1758-1774.
\bibitem{4} F{\sc err\'{e}ol} A, L{\sc
arzabal}
P, V{\sc iberg} M. On the asymptotic
performance analysis of
subspace DOA estimation in the presence of
modeling errors: case of
MUSIC[J]. IEEE Transactions on Signal
Processing, 2006, 54(3):
907-920.
\end{thebibliography}
\include{chapter2}
\begin{thebibliography}{99}
\baselineskip=3.5mm
\bibitem{1} S{\sc chmidt} R O. Multiple
emitter
location and signal parameter
estimation[J]. IEEE Transactions on
Antennas and Propagation, 1986, 34(3):
267-280.
\bibitem{2} F{\sc riedlander} B. A
sensitivity
analysis of the MUSIC algorithm[J]. IEEE
Transactions on Acoustics,
Speech and Signal Processing, 1990,
38(10): 1740-1751.
\bibitem{3} S{\sc windlehurst} A, K{\sc
ailath} T. A performance analysis of
subspace-based methods in the presence of
model error: Part I─The
MUSIC algorithm[J]. IEEE Transactions on
Signal Processing, 1992,
40(7): 1758-1774.
\bibitem{4} F{\sc err\'{e}ol} A, L{\sc
arzabal}
P, V{\sc iberg} M. On the asymptotic
performance analysis of
subspace DOA estimation in the presence of
modeling errors: case of
MUSIC[J]. IEEE Transactions on Signal
Processing, 2006, 54(3):
907-920.
\end{thebibliography}
\paragraph{}
\newpage
\end{CJK*}
\end{document}
效果图:
发表评论 取消回复