所包含的 PDF 标题页中的 URL 链接不起作用

所包含的 PDF 标题页中的 URL 链接不起作用

我添加了一个单独的 PDF 页面作为大型 LaTeX 文档的主要首页。该 PDF 页面是使用 hyperref 包用 LaTeX 制作的,包含多个链接的 URL 元素(首页图片来源、链接到作者姓名的电子邮件等)。如在我的 PDF 浏览器中单独看到的,该 PDF 标题页运行正常。

但是,编译完整个文档后,标题页不再有 URL 链接。为什么?我该如何修复?整个文档运行良好,除了首页不再有链接。

以下是可以使用的 MWE 代码:

\documentclass[11pt,letterpaper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[total={6in,10in},left=1.5in,top=0.5in,includehead,includefoot]{geometry}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{tensor}
\usepackage{pdfpages}
\usepackage[unicode,colorlinks,linkcolor=blue,urlcolor=red,citecolor=blue,pdftitle={Title},pdfauthor={Name},pdfsubject={Subject},pdfkeywords={some words},pdfproducer={pdfLaTeX},plainpages=false,hyperindex=true,pdfpagelabels,linktocpage=true]{hyperref}

\begin{document}

\includepdf{TitlePage.pdf} % Not included in this example.  This page contains some URL links.

TEST

\end{document}

相关内容