我正在写一篇研究论文。这个项目的目标只是添加一个指向项目的链接。我添加了
\usepackage{hyperref}
我正在写的段落是这样的:
We developed many word matching exercises in our computer
science courses to enable students to match the key terms
with their descriptions. Figure \ref{fig:fig1} shows an
example of a word matching exercise, which can be viewed from
\href{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}
预期:我应该能够点击该链接并访问该网站。
实际:当我点击链接时什么也没有发生。
任何关于此问题的帮助都将不胜感激。
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\href{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}
\end{document}
答案1
如果您计划使 URL 字符串可点击,我认为没有理由不使用\url{...}
而不是\href{...}{...}
。如果您绝对必须使用\href
来显示 URL 字符串,请确保将其第二个参数放在\url
包装器中。
哦,请装载包裹xurl
。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{xurl}
\urlstyle{same} % optional
\usepackage[colorlinks,allcolors=blue]{hyperref}
\begin{document}
\url{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}
\href{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}{\url{https://liveexample.pearsoncmg.com/wordmatch/Section1_2.html}}
\end{document}