I want to reference external documents using hyperref on the files test1 and test2 below. Presumably for security reasons, the links don't work. With MacOs Preview nothing happens and Adobe Reader in both MacOs and Windows 10 keeps on asking for permissions.
I have no problems with older distributions of hyperref on older operating systems and applications.
Any clues?
Thanks!
Nestor
%----------------------------------------------
% file test1.tex
\documentclass{article}
\usepackage{xr-hyper}
\usepackage{hyperref}
\externaldocument{test2}
\begin{document}
\section{Section in I}\label{sec1}
Continued in \hyperref[sec2]{section~\ref*{sec2}}.
\end{document}
%----------------------------------------------
% file test2.tex
\documentclass{article}
\usepackage{xr-hyper}
\usepackage{hyperref}
\externaldocument{test1}
\begin{document}
\setcounter{section}{1}
\section{Section in II}\label{sec2}
Continuing from \hyperref[sec1]{Section~\ref*{sec1}}.
\end{document}
%----------------------------------------------