参考文献中缺少 arxiv 链接

参考文献中缺少 arxiv 链接

我正在撰写我的研究陈述,并且遇到以下问题:我需要引用 ArXiv 的一篇文章,以便在参考文献中包含该论文的 arxiv 链接。

这是我的代码

\documentclass[11pt]{amsart}
%\documentclass[16pt]{report}
\usepackage[a4paper,text={16.5cm,25.2cm},centering]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{amsfonts}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{lipsum}


\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{nccmath}
\usepackage{dsfont}
\usepackage{cancel}
\usepackage{mathtools}
\usepackage{setspace}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\onehalfspacing
%\doublespacing

\usepackage{etoolbox}
\makeatletter
% change title size
\patchcmd{\@maketitle}{\normalsize}{\Large}{}{}
% change author size
\patchcmd{\@setauthors}{\MakeUppercase {\authors }}{\MakeUppercase{\large\authors}}{}{}
% change section title size
\patchcmd{\section}{\normalfont}{\normalfont\large}{}{}
\makeatother

\newcommand{\RN}[1]{%
  \textup{\uppercase\expandafter{\romannumeral#1}}%
}

\newenvironment{claim}[1]{\par\noindent\underline{Claim:}\space#1}{}
\newenvironment{claimproof}[1]{\par\noindent\underline{Proof:}\space#1}{\hfill $\blacksquare$}

\numberwithin{equation}{section}

\newtheorem*{remark}{Remark}
\newtheorem{theorem}{Theorem}[section]

\title{\textbf{Research Statement}}
\author{Agent Smith}
\date{}

\begin{document}

\maketitle
\large

In \cite{https://doi.org/10.48550/arxiv.2209.04932}

\bibliographystyle{plain}
\bibliography{refref.bib}
  
\end{document}

如果您编译此代码,您将看到以下内容,并且参考文献中没有 arxiv 链接。 在此处输入图片描述

refref.bib 文件的内容如下,是我从 arxiv 导出的。我不是 Overleaf 的高级用户,但有人能向我解释如何解决这个问题吗?我尝试搜索类似的问题并尝试了一些方法,但没有帮助。

非常感谢!

@misc{https://doi.org/10.48550/arxiv.2209.04932,
  doi = {10.48550/ARXIV.2209.04932},
  
  url = {https://arxiv.org/abs/2209.04932},
  
  author = {Gowers, W. T. and Karam, Thomas},
  
  keywords = {Combinatorics (math.CO), Number Theory (math.NT), FOS: Mathematics, FOS: Mathematics, 11T06 (Primary) 11B30, 15A69 (Secondary)},
  
  title = {Equidistribution of high-rank polynomials with variables restricted to subsets of $\mathbb{F}_p$},
  
  publisher = {arXiv},
  
  year = {2022},
  
  copyright = {Creative Commons Attribution 4.0 International}
}

编辑:我听从了@DavidCarlisle 的建议,但这就是我所得到的。在此处输入图片描述

我真的很想拥有如下图所示的效果: 在此处输入图片描述

相关内容