在表格块内使用href的LaTeX链接错误

时间:2017-12-16 23:43:07

标签: pdf url latex href pdflatex

我有这个LaTeX代码:

\begin{tabular}[t]{@{}l} \small MY ADDRESS\\
\href{http://www.github.com}{github} \end{tabular}

这给了我这个错误而没有其他细节...

Undefined control sequence.
<recently read> \href 

l.27 \href
         {http://www.github.com}{github} \end{tabular}

有谁知道为什么?

1 个答案:

答案 0 :(得分:1)

您需要加载hyperref package才能使用\href{<url>}{<stuff>}

enter image description here

\documentclass{article}

\usepackage{hyperref}

\begin{document}

\begin{tabular}[t]{@{}l}
  \small MY ADDRESS \\
  \href{http://www.github.com}{github}
\end{tabular}

\end{document}