如何撰写论文的“参考文献”部分?

如何撰写论文的“参考文献”部分?

最近用LaTeX翻译了一篇国外论文,但是在写参考文献部分的时候,遇到了一个问题。

我的代码/方法如下:

\documentclass[UTF8]{ctexart}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{inputenc}

\begin{document}
\begin{thebibliography}
 [1]P. Bhatia, J. Thirunarayanan, N. Dave, An expert-system based design of a SCARA  robot, Expert Systems with Applications 15 (1999) 99–109.

 [2] H. Canbolat, J. Hu, D.M. Dawson, A hybrid learning/adaptive partial state feedback controller for RLED robot manipulators, International Journal of
 Systems Science 27 (1996) 1123–1132.

 [3] H. Canbolat, J. Hu, D.M. Dawson, A hybrid learning/adaptive partial state feedback controller for RLED robot manipulators, in: Proceedings of the 34th
 IEEE Conference on Decision and Control, 1995, pp. 39–44.

 [4] S.P. Chan, H. Chen, An efficient algorithm for identification of SCARA robot parameters including drive characteristics, in: Proceedings of the 25th
 Annual Conference of the IEEE Industrial Electronics Society, vol. 2, 1999, pp. 1004–1019.

 [5] T. Das, C. Dülger, Mathematical modeling, simulation and experimental        verification of a SCARA robot, Simulation Modelling Practice and Theory 13
 (2005) 257–271.

 [6] M.S. De Queiroz, D.M. Dawson, H. Canbolat, Adaptive position/force control of BDC-RLED robots without velocity measurements, in: Proceedings of the
 IEEE International Conference on Robotics and Automation, 1997, pp. 525–530.

 [7] M.J. Er, C.B. Low, K.H. Nah, M.H. Lim, S.Y. Ng, Real-time implementation of a dynamic fuzzy neural network controller for a SCARA robot,
 Microprocessors and Microsystems 26 (2002) 449–461.

 [8] M.J. Er, M.T. Lim, H.S. Lim, A real time hybrid adaptive fuzzy control of a SCARA robot, Microprocessors and Microsystems 25 (2001) 369–378.

 [9] W. Golnazarian, Time-Varying Neural Networks for Robot Trajectory Control, Ph.D. Thesis, University Of Cincinnati, USA, 1995.

 [10] R. Horowitz, W. Messner, J.B. Moore, Exponential convergence of a learning controller for robot manipulators, IEEE Transactions on Automatic Control
 36 (1991) 890–894.

 [11] M. Jungbeck, M.K., Madrid, Optimal neural network output feedback control for robot manipulators, in: Proceedings of the Second International
 Workshop on Robot Motion Control, 2001, pp. 85–90.

 [12] K. Kaneko, R. Horowitz, Repetitive and adaptive control of robot manipulators with velocity estimation, IEEE Transactions on Robotics and Automation
 13 (1997) 204–217.
\end{thebibliography}
\end{document}

遗憾的是,输出结果不是我想要的。我该如何修改才能达到专业论文的效果?

答案1

使用\bibitem手动完成的参考书目来区分不同的项目。LaTeX
会为您编号(但不进行排序)。

一个例子LaTeX-维基百科

\documentclass{article}
\usepackage{url}
\begin{document}
I doubt that there is any useful information here~\cite{wikibook}.

All we know is limited, apart from knowing the answer we all know. Or do we? Wombat and Koala have discovered some interesting things~\cite{wombat2016}.

Some people are too nosy. What can happen to them is described by Laura Lion~\cite[p.~9]{lion2010}.

\begin{thebibliography}{1}
    \bibitem{wombat2016}
        Walther Wombat and Klaus Koala,
        ``The true meaning of 42'' in: Journal of modern skepticism;
        2016
    \bibitem{lion2010}
        Laura Lion, Gabrielle Giraffe and Carl Capybara,
        ``The dangers of asking the wrong question'', publishing house;
        2010
    \bibitem{wikibook}
        manually managing references, 
        \url{https://en.wikibooks.org/wiki/LaTeX/Manually_Managing_References}
        2016
\end{thebibliography}
\end{document}

手册参考


使用数据库来存储信息更省事,而且更有效。

相关内容