
Estou escrevendo minha declaração de pesquisa e tenho o seguinte problema: preciso citar um artigo do ArXiv para que nas referências haja um link do arxiv para esse artigo.
Aqui está meu código
\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}
Se você compilar este código, verá o seguinte e não há link arxiv nas referências.
O conteúdo do arquivo refref.bib é o abaixo, que exportei do arxiv. Não sou um usuário tão avançado do Overleaf, mas alguém pode me explicar como corrigir esse problema? Tentei procurar uma pergunta semelhante e tentei algo, mas não ajudou.
Muito obrigado!
@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}
}
EDITAR:Segui o conselho de @DavidCarlisle, mas é isso que tenho.