缩进参考书目的第二行并删除括号

缩进参考书目的第二行并删除括号

我正在写一份书目:

\begin{thebibliography}{9}
\item Ahmad, S. \& Tresp, V . (1993), Some solutions to the missing feature 
 problem in \\ \hspace{2cm}  vision, in S. J. Hanson, J. D. Cowan \& C. L. 
Giles, eds, 'Advances in Neural Information Processing Systems', Vol. 5, 
Morgan Kaufmann, pp. 393–400.
\bibitem{}  Berthold, M. R. (1994), A time delay radial 
basisfunctionnetworkfor phonemerecognition, in 'Proceedings of International 
Conference on Neural Networks', Vol. 7, Orlando, pp. 4470–4473.
\end{thebibliography}

结果 : 在此处输入图片描述 我想要获得的是:在此处输入图片描述 我想缩进第二行和第三行并删除括号。谢谢您的帮助。

答案1

缩进是类中的默认行为article,所以如果你不明白这一点,你就做了一些我们不知道的改变。

要删除编号,您可以natbib使用authoryear选项加载包。您需要\bibitem按照手册中的说明格式化 s natbib,即

\bibitem[<author for citations>(<year>)]{<citation key>} ...

方括号中的内容用于格式化引用。

代码输出

\documentclass{article} 
\usepackage[authoryear]{natbib}
\begin{document}
\citep{ahmad93,berthold94}
\begin{thebibliography}{9}
\bibitem[Ahmad \& Tresp(1993)]{ahmad93} Ahmad, S. \& Tresp, V . (1993), Some solutions to the missing feature 
 problem in vision, in S. J. Hanson, J. D. Cowan \& C. L. 
Giles, eds, 'Advances in Neural Information Processing Systems', Vol. 5, 
Morgan Kaufmann, pp. 393--400.
\bibitem[Berthold(1994)]{berthold94}  Berthold, M. R. (1994), A time delay radial 
basisfunctionnetworkfor phonemerecognition, in 'Proceedings of International 
Conference on Neural Networks', Vol. 7, Orlando, pp. 4470--4473.
\end{thebibliography}
\end{document}

相关内容