pdf 中的链接不起作用?

pdf 中的链接不起作用?

我创建的所有链接都无法点击,因为它们都无法使用。前言如下。

\documentclass[a4paper,12pt,twoside]{article}
\usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{braket}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{color}
\linespread{1.2}
\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=green,
    filecolor=black,
    linkcolor=blue,
    urlcolor=blue
}
\hypersetup{linktocpage}
\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}
\newtheorem{mydef}{Definition}
 \numberwithin{equation}{subsection}
 \numberwithin{mydef}{subsection}
\newtheorem{thm}{Theorem}
\numberwithin{thm}{subsection}

\title{test}
\author{test}

\begin{document}

答案1

我稍微简化了您的 MWE,并在等式中添加了一个超链接。我用 编译了两次pdflatex。结果符合预期:超链接有效!我的测试文件是:

\documentclass[a4paper,12pt,twoside]{article}
%    \usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea} 
    \usepackage{amsmath} 
    \usepackage[utf8]{inputenc} 
    \usepackage[T1]{fontenc} 
    \usepackage{hyperref} 
\hypersetup{ colorlinks, citecolor=green, filecolor=black, linkcolor=blue, urlcolor=blue } 
\begin{document}
    \begin{equation}\label{eq:1}
    1+1=2
    \end{equation}

\newpage
Does hyperref work? Of course, see \eqref{eq:1}.

\end{document}

对于指向文档其他元素(章节标题、定理等)的超链接,应该也一样。dvi-ps-pdf我不知道使用时它是如何工作的。我从未使用过它。

相关内容