[問題] 請問如何將reference分類

看板LaTeX (論文排版)作者時間12年前 (2013/06/25 02:01), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串2/2 (看更多)
I assume you have sort your bibitems into two categories because that is what you have described. Given that, this is my attempt which is the easiest (no packages and least time). Alternatively, Google search "two bibliographies in one document"; you will find many methods requiring various packages to achieve the way you want. \documentclass{article} \begin{document} Citation from A category \cite{Boney96} and citation from B category \cite{HK}. \renewcommand*\refname{A. My Works} \begin{thebibliography}{100} \bibitem[1]{Boney96} Boney, L., Tewfik, A.H., and Hamdy, K.N., ``Digital Watermarks for Audio Signals," \emph{Proceedings of the Third IEEE International Conference on Multimedia}, pp. 473-480, June 1996. \bibitem[2]{MG} Goossens, M., Mittelbach, F., Samarin, \emph{A LaTeX Companion}, Addison-Wesley, Reading, MA, 1994. \end{thebibliography} \renewcommand*\refname{B. Other Works} \begin{thebibliography}{100} \bibitem[3]{HK} Kopka, H., Daly P.W., \emph{A Guide to LaTeX}, Addison-Wesley, Reading, MA, 1999. \bibitem[4]{Pan} Pan, D., ``A Tutorial on MPEG/Audio Compression," \emph{IEEE Multimedia}, Vol.2, pp.60-74, Summer 1998. \end{thebibliography} \end{document}
文章代碼(AID): #1Ho8bXFb (LaTeX)
文章代碼(AID): #1Ho8bXFb (LaTeX)