在页脚中插入网址

在页脚中插入网址

我想在页脚中插入一个 URL,但是这行不通。

我使用以下代码:

\documentclass[12pt,a4paper]{report}
\usepackage{hyperref}
\usepackage{url}
\usepackage{fancyhdr}
\fancyhf{}
\lfoot{\href{www.xyz.com}}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{1.0pt}
\renewcommand{\footrulewidth}{1.0pt}
\pagestyle{fancy}
\begin{document}
hi
\end{document} 

它显示的不是 url,而是空白

答案1

\href有两个参数{URL}{Text}

\lfoot{\href{www.xyz.com}{my URL}}

相关内容