PDF Named-Destinations are made by Hyperref. This shows how to change them by using hyperref option destlabel=true, then redefining using /label. Unfortunately, it does not seem to work.
answer:---Its Lyx--- (but not a solution)
(should have looked in the latex, my bad).
The document->settings->pdf properties->options field on PDF Preferences is put into \hypersetup{ destlabel=true}, not the \usepackage[destlabel=true]{hyperref}. As Heiko originally noted, that doesn't work.
Preamble from Lyx:
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false]
{hyperref}
\hypersetup{ destlabel=true}
When I directly \usepackage[destlabel=true]{hyperref} in the preamble it works.
Unfortunately other packages that lyx loads, are dependent on being loaded after Hyperref, so usepackage hyperref, can't be moved to the preamble.
So what is needed is for the Lyx Preamble to be:
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false,
destlabel=true]
{hyperref}
\hypersetup{}
Unfortunately that is a lyx UI change.
Is there any other way to make the destlabel=true work in hypersetup, or elsewhere?
\usepackage{hyperref}line and tell LyX not to add it, would that work for you? What exactly would you like the\usepackage{hyperref}line to look line? – scottkosty Aug 04 '16 at 04:41