웹사이트에 대한 링크 추가

웹사이트에 대한 링크 추가

링크가 나타나지 않는 내 논문의 참고문헌에 웹사이트 링크를 추가하고 싶습니다.

내 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}

나는 다음과 같이 얻고 싶습니다 :

여기에 이미지 설명을 입력하세요

답변1

귀하의 질문을 올바르게 이해했는지 잘 모르겠지만 이와 같은 것을 찾고 계십니까?

\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}

여기에 이미지 설명을 입력하세요

관련 정보