下面的链接仅适用于添加“http://”或“https://”,\href
当“http:”不在 url 链接参数中时,如何在默认宏中存储“http://”或“https://” \href{}
,url 包工作正常,但我们需要 \href 而不是 url 包中的自动化。
请参阅以下 MWE 文件:
\documentclass{book}
\usepackage{hyperref}
\begin{document}
% The below link works only for adding "http://" or "https://",
% how do I store "http://" or "https://" in the default "\href" macros
% when there is no "http:" in the "\href{}" parameter?
\noindent \href{www.issgovernance.com/file/policy/active/asiapacific/Australia-Voting-Guidelines.pdf}
{www.issgovernance.com/file/policy/active/asiapacific/Australia-Voting-Guidelines.pdf}
\bigskip
\bigskip
\noindent \href{http://www.issgovernance.com/file/policy/active/asiapacific/Australia-Voting-Guidelines.pdf}
{www.issgovernance.com/file/policy/active/asiapacific/Australia-Voting-Guidelines.pdf}
\end{document}