Things seem to be ok when I just comment out the pageanchor=false, but
my question is why would anyone set the option to false? What am I
missing?
thanks,
--Tim Arnold
For example, the page anchors could be disabled for the title pages
that share the page number with other pages. This avoids problems
with "same destination" errors.
Yours sincerely
Heiko <ober...@uni-freiburg.de>
Thanks Heiko. For the sake of completeness, the situation I ran into
came up because of a program meant to write out a master book.tex
file. That master file was to be structured like this:
\documentclass{memoir}
% preamble stuff including
% hyperref package with options
% a couple of last preamble things
\hypersetup{pageanchor=false}
\begin{document}
\frontmatter
\include{frontmatter}
\mainmatter
\hypersetup{pageanchor=true}
\include{introduction}
% etc etc
\end{document}
That is, it turned off pageanchors for the frontmatter chapter(s) and
turned them on after encountering \mainmatter. That program had a bug
and it never produced the \hypersetup{pageanchor=true} command and so
that's how my quest began.
Now that the bug is fixed, the index links work and we've avoided the
'same destination' errors as Heiko mentioned.
Thanks again,
--Tim Arnold