
Estoy escribiendo mi declaración de investigación y tengo el siguiente problema: necesito citar un artículo de ArXiv para que en las referencias haya un enlace de arxiv a ese artículo.
Aquí está mi 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}
Si compila este código, verá lo siguiente y no hay ningún enlace arxiv en las referencias.
El contenido del archivo refref.bib es el siguiente que exporté desde arxiv. No soy un usuario tan avanzado de Overleaf, pero ¿alguien puede explicarme cómo solucionar ese problema? Intenté buscar una pregunta similar e intenté algo pero no ayudó.
¡Muchas gracias!
@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:Seguí el consejo de @DavidCarlisle pero esto es lo que tengo.