如何让首页只显示主域名?

如何让首页只显示主域名?

如何让简历显示为我的主页

www.example.com

但实际的链接是

www.example.com/google-analysis-tracking 

这样就可以跟踪点击次数了?它使用自定义命令,\homepage{www.example.com}因此无法使用 hyperrref。

还在其 GitHub 上提问

答案1

用这个包就很简单了hyperref

\documentclass{article}
\usepackage[colorlinks=true]{hyperref}
\begin{document}

\href{www.example.com/google-analysis-tracking}{www.example.com}

\end{document}

colorlinks=true使链接变成彩色,而不是方框。

相关内容