我使用 Latex 编写概要,我的文档类是我使用的文章
\begin{thebibliography}{99}
\bibitem{ibrahim2017kumaraswamy}Ibrahim, M. (2017). The Kumaraswamy power function distribution. J. Stat. Appl. Probab, 6, 81-90.
\end{thebibliography}.
运行此程序后,它在开头给出类似 [1] 的数字,这违反了大学的格式,有人能告诉我如何从参考书目中删除这个编号吗
答案1
根据您提供的少量信息,我假设您的大学要求您生成作者年份样式的引文标注。如果这个假设是正确的,我建议您 (a) 加载natbib
引文管理包和 (b) 使用可选参数\bibitem
提供所需的信息,以便使用和指令natbib
创建引文标注。\citet
\citep
顺便,Ibrahim
看起来这给定的名称而不是感兴趣的书目条目作者的姓氏。对于引文标注,请务必提供有关作者姓氏的信息。
\documentclass{article}
\usepackage[authoryear]{natbib}
\begin{document}
\noindent
\citet{ibrahim2017kumaraswamy}, \citep{ibrahim2017kumaraswamy}
\begin{thebibliography}{99}
\bibitem[Abdul-Moniem(2017)]{ibrahim2017kumaraswamy}
Abdul-Moniem, Ibrahim B. (2017).
The Kumaraswamy power function distribution.
J. Stat.\ Appl.\ Probab, 6, 81--90.
\end{thebibliography}
\end{document}