文本超链接在 Latex 中不起作用

文本超链接在 Latex 中不起作用

我正在尝试插入超链接-->http://pages.cs.wisc.edu/~cao/cs537/lecture17.txt在我的文档中,但由于它是一个文本文件,该链接的最后一部分不起作用,它只带我到主页。我使用了命令

\href{http://pages.cs.wisc.edu/~cao/cs537/lecture17.txt}

完整代码

\documentclass{article} 
\usepackage[utf8]{inputenc}

\title{jgklgi} 
\author{mancdmejldmuxsvsyf} 
\date{February 2020}

\begin{document}

\maketitle

\section{Introduction} \usepackage{hyperref} \href{http://pages.cs.wisc.edu/~cao/cs537/lecture17.txt} 

\end{document}

答案1

太大,无法评论

这很好用

\documentclass{article}
\usepackage[utf8]{inputenc}
\title{test}
\author{test}

\usepackage{hyperref}
\begin{document}

\maketitle

\section{Introduction}
\url{http://pages.cs.wisc.edu/~cao/cs537/lecture17.txt}
\end{document}

相关内容