提问于:
浏览数:
1800
%导言区
\documentclass{article}%article,book,report,letter
\usepackage{ctex}
\usepackage{amsmath}
\usepackage{amssymb}
%正文区(文稿区)
\begin{document}
%一次管理,一次使用
%参考文献格式:
%\begin{thebibliography}{编号样本}
% \bibitem[记号]{引用标志}文献条目1
% \bibitem[记号]{引用标志}文献条目2
% ……
%\end{thebibliography}
%其中文献条目包括:作者,题目,出版社,年代,版本,页码等。
%引用时可以采用:\cite{引用标志1,引用标志2,……}
引用一篇文章\cite{article1} 引用一本书\cite{book1}等等
\begin{thebibliography}
\bibitem{article1} 陈立辉,苏伟,蔡川,陈晓云,\emph{基于LaTeX的Web数学公式提取方法研究}[J].计算机科学.2014(06)\\
\bibitem{book1} William H. Press, Saul A. Teukolsky, William T. Vetterling, Brian P. Flannery,
\emph{Numerical Recipes 3rd Edition: The Art of Scientific Computing}Cambridge University Press, New York,2007.\\
\bibitem{latexGuide} Kopka Helmut, W. Daly Patrick,\emph{Guide to \LaTeX},$4^{th}$ Edition.
Available at \texttt{http://www.amazon.com}.\\
\bibitem{latexMath} Graertzer George,\emph{Math Into \LaTeX},BirkhAuser Boston; 3 edition(June 22,2000)
\end{thebibliography}
\end{document}
1 回答
1
下次提问请用代码块。注意多次编译。
```tex
\documentclass{article}
\usepackage{ctex}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
引用一篇文章\cite{article1} 引用一本书\cite{book1}等等
\begin{thebibliography}{99}
\bibitem{article1} 陈立辉,苏伟,蔡川,陈晓云,\emph{基于LaTeX的Web数学公式提取方法研究}[J].计算机科学.2014(06).
\bibitem{book1} William H. Press, Saul A. Teukolsky, William T. Vetterling, Brian P. Flannery, \emph{Numerical Recipes 3rd Edition: The Art of Scientific Computing}Cambridge University Press, New York,2007.
\bibitem{latexGuide} Kopka Helmut, W. Daly Patrick,\emph{Guide to \LaTeX},$4^{th}$ Edition. Available at \texttt{http://www.amazon.com}.
\bibitem{latexMath} Graertzer George, \emph{Math Into \LaTeX}, BirkhAuser Boston; 3 edition(June 22,2000).
\end{thebibliography}
\end{document}
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。