添加网站链接

添加网站链接

我想在我的论文的参考文献中添加该网站的链接,但不显示该链接。

我的 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}

在此处输入图片描述

相关内容