beamer icon indicating copy to clipboard operation
beamer copied to clipboard

notes on second screen and "destination with the same identifier" warnings

Open u-fischer opened this issue 8 years ago • 2 comments

As has been noted in this tex.SX question https://tex.stackexchange.com/questions/350993/beamer-presentation-with-notes-navigation-does-not-work-properly-and-destinati notes on second screen leads to lots of "destination with the same identifier" warnings for page and navigation anchors.

beamer defines in beamerbasenavigation.sty a simplified version of \def\Hy@EveryPageAnchor which hardcodes the names of the anchors:

    \hyper@@anchor{Navigation\the\c@page}\relax%
    \hyper@@anchor{page.\the\c@page}\relax%

This means that it is impossible to manipulate the name of anchors by redefining e.g. \thepage. And as the code for notes on second screen contains \advance\c@page by-1\relax the destination anchors are no longer unique.

u-fischer avatar Jan 31 '17 10:01 u-fischer

Would it be possible to make the definition of these anchors conditional, to avoid redefinition warnings?

cpitclaudel avatar Mar 07 '21 17:03 cpitclaudel