删除参考文献编号而不记录错误

删除参考文献编号而不记录错误
\documentclass[12pt,a4paper]{report}
\usepackage{mathptmx}
 \usepackage{titlesec}
 \titleformat{\chapter}[hang]
 {\Huge\bfseries\centering}{\thechapter\space}{0pt}{\Huge}
%\titlespacing*{\chapter}{0pt}{-10pt}{40pt}
\usepackage{lipsum}  
\renewcommand{\chaptername}{CHAPTER}
\usepackage{fancyhdr}
\fancyhf{}
 \fancyhead[C]{\thepage}
  \renewcommand{\headrulewidth}{0pt}
  \setlength{\headheight}{14.49998pt} % get rid of warning from fancyhdr
 \usepackage[english]{babel}
\addto{\captionsenglish}{%
 \renewcommand{\bibname}{REFERENCES}
}
%\usepackage[round, sort&compress, authoryear]{natbib}
\begin{document}
 \begin{thebibliography}{9}
  \bibitem{threef}
Afify, A. Z., and Mohamed, O. A. (2020). A new three-parameter 
  exponential distribution with variable shapes for the hazard rate: 
   Estimation and applications. \textit {Mathematics,} \textbf{8}(1), 
   135.
  \bibitem{four}
   Afify, A. Z., Gemeay, A. M., and Ibrahim, N. A. (2020). The heavy- 
   tailed exponential distribution: risk measures, estimation, and 
    application to actuarial data. \textit {Mathematics,} \textbf{8}(8), 
    1276.
    \bibitem{five}
    Afify, A. Z., Suzuki, A. K., Zhang, C., and Nassar, M. (2021). On 
    three-parameter exponential distribution: properties, Bayesian and 
     non-Bayesian estimation based on complete and censored samples. 
     \textit{Communications in Statistics-Simulation and Computation,} 
      \textbf{50}(11), 3799-3819.
      \end{thebibliography}
     \end{document}

请帮我删除上述代码中的参考编号。我需要参考文献单倍行距,参考文献之间有一个空格。谢谢。

答案1

如果你真的只是想删除编号,并且不打算引用任何参考文献,你可以使用以下命令更改 biblabel 的定义

\def\@biblabel#1{}

\documentclass[12pt,a4paper]{report}
\usepackage{mathptmx}
 \usepackage{titlesec}
 \titleformat{\chapter}[hang]
 {\Huge\bfseries\centering}{\thechapter\space}{0pt}{\Huge}
%\titlespacing*{\chapter}{0pt}{-10pt}{40pt}
\usepackage{lipsum}  
\renewcommand{\chaptername}{CHAPTER}
\usepackage{fancyhdr}
\fancyhf{}
 \fancyhead[C]{\thepage}
  \renewcommand{\headrulewidth}{0pt}
  \setlength{\headheight}{14.49998pt} % get rid of warning from fancyhdr
 \usepackage[english]{babel}
\addto{\captionsenglish}{%
 \renewcommand{\bibname}{REFERENCES}
}
%\usepackage[round, sort&compress, authoryear]{natbib}

\makeatletter
\def\@biblabel#1{}
\makeatother

\begin{document}
 \begin{thebibliography}{9}
  \bibitem{threef}
Afify, A. Z., and Mohamed, O. A. (2020). A new three-parameter 
  exponential distribution with variable shapes for the hazard rate: 
   Estimation and applications. \textit {Mathematics,} \textbf{8}(1), 
   135.
  \bibitem{four}
   Afify, A. Z., Gemeay, A. M., and Ibrahim, N. A. (2020). The heavy- 
   tailed exponential distribution: risk measures, estimation, and 
    application to actuarial data. \textit {Mathematics,} \textbf{8}(8), 
    1276.
    \bibitem{five}
    Afify, A. Z., Suzuki, A. K., Zhang, C., and Nassar, M. (2021). On 
    three-parameter exponential distribution: properties, Bayesian and 
     non-Bayesian estimation based on complete and censored samples. 
     \textit{Communications in Statistics-Simulation and Computation,} 
      \textbf{50}(11), 3799-3819.
      \end{thebibliography}
     \end{document}

在此处输入图片描述

相关内容