Añadir un enlace al sitio web

Añadir un enlace al sitio web

Quiero agregar un enlace al sitio web en las referencias de mi artículo sin que aparezca el enlace.

Mi MWE:

\documentclass[12pt,a4paper]{article}
%------------------------------------------------------------
\usepackage{amsmath,amssymb,amsthm}         
%------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[colorlinks=true,pagebackref=true]{hyperref}
\hypersetup{urlcolor=blue, citecolor=red, linkcolor=blue}
% ------------------------------------------------------------
\newtheorem{theorem}{Theorem}[section]
 \newtheorem{definition}{Definition}[section]
  \newtheorem{definitions}{Definitions}[section]
  \newtheorem{notation}{Notation}[section]
 \newtheorem{corollary}{Corollary}[section]
 \newtheorem{proposition}{Proposition}[section]
 \newtheorem{lemma}{Lemma}[section]
 \newtheorem{remark}{Remark}[section]
 \newtheorem{example}{Example}[section]
 \numberwithin{equation}{section}
\begin{document}
\section{1}

\begin{thebibliography}{10}

\bibitem{alger}{J. Agler:} {A disconjugacy theorem for Toeplitz operators,} Amer. J. Math. 112(1) (1990) 1-14. \url{http://refhub.elsevier.com/S0024-3795(17)30633-X/bib61s1}.

\end{thebibliography}
\end{document}

Me gustaría quedar así:

ingrese la descripción de la imagen aquí

Respuesta1

No estoy seguro de haber entendido correctamente tu pregunta, pero ¿estás buscando algo como esto?

\documentclass[12pt,a4paper]{article}
%------------------------------------------------------------
\usepackage{amsmath,amssymb,amsthm}         
%------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[colorlinks=true,pagebackref=true]{hyperref}
\hypersetup{urlcolor=blue, citecolor=red, linkcolor=blue}

\begin{document}
\section{1}

\begin{thebibliography}{10}

\bibitem{alger} \href{http://refhub.elsevier.com/S0024-3795(17)30633-X/bib61s1}{  {J. Agler:} {A disconjugacy theorem for Toeplitz operators,} Amer. J. Math. 112(1) (1990) 1-14.}

\end{thebibliography}
\end{document}

ingrese la descripción de la imagen aquí

información relacionada