我对引用的样式有疑问。我需要删除数字后面的点,如下所示:
2 ANSYS 程序员手册 [Текст]。– 公司:SAS IP,Inc.,2007 年。– 312 页。
到目前为止,我写了这个
\documentclass[14pt,a4paper]{extarticle}
\usepackage{mutavel}
\usepackage{url}
\begin{document}
\begin{thebibliography}{100} % 100 is a random guess of the total number of references
\bibitem{CommandReference} ANSYS Mechanical APDL Command Reference [Текст]. – М.: SAS IP, Inc., 2010. – 1934 с.
\bibitem{ProgrammersManual} Programmer’s Manual for ANSYS [Текст]. – М.: SAS IP, Inc., 2007. – 312 с.
\end{thebibliography}
\end{document}
由此得出以下内容:
- ANSYS 程序员手册 [Текст]。– 公司:SAS IP,Inc.,2007 年。– 312 页。
答案1
将以下内容添加到文档的序言中:
\makeatletter
\renewcommand\@biblabel[1]{#1}
\makeatother