As in this previous Link Problem
I reproduced the error.
First, this is my code:
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[
bookmarks,
bookmarksnumbered,
bookmarksopen=true,
bookmarksopenlevel=1,
%backref,
pdftex,
plainpages=false,
pdfpagelabels=true,
hypertexnames=false,
linktocpage
]{hyperref}
\usepackage{lipsum}
\usepackage[
toc,
nolong,
nosuper,
notree,
section = section]{glossaries}
\makeglossaries
\newglossaryentry{glos:sample}{name=sample,description={an example}}
% Here starts the document
\pagenumbering{Alph}
\begin{document}
\title{ Here it is}
\maketitle
\clearpage
\pagenumbering{Roman}
\pdfbookmark[1]{"content table"'}{toc}
Content table
\newpage
content
\newpage
content
\newpage
list of tables
\newpage
list of figures
\newpage
\pagenumbering{arabic}
%Some input
\lipsum[1-60]
\newpage
% some \gls{label} on Page "12" (but 18 of Total pages)
\gls{glos:sample}
\newpage
\lipsum[61-80]
% input ends here
\clearpage
\appendix
\pagenumbering{roman}
%some appendix content
\lipsum[81-120]
\clearpage
\printglossary
\end{document}
With this, the glossary-Entry shows "12" (arabic), which is right, but it references and jumps to Page 12 of total Pages, which should be 18 in the example.
Do I have some options wrong? It turns me crazy.
My distribution is MikTex 2.9 on x64 with texlipse-plugin in Eclipse (Windows 7 x64).
glossariesare you using? I can't reproduce your problem with the latest version. – Nicola Talbot Apr 25 '13 at 15:52hyperref v6.83mandglossaries 3.05. – mafp Apr 25 '13 at 17:30glossaries v3.05andhyperref 6.83m,too. Are there complications possible with other packages likenomencl v4.2or with thehyperref.cfg v1.2? – rocco Apr 26 '13 at 06:15\pagenumbering{#}before the appendix, and now the reference works...But for my problem it appears, that one of the Packages (whichever it is) does show the 12 (which is right) but doesnt add previous counters from previous
\pagenumbering{#}s to the taken arabic counter for total page reference, so it references only to 12, but it should be: 12 + previous counters from\pagenumbering{#}s = 19Could it be, that this automatism is missing in this packages?
– rocco Apr 26 '13 at 07:04\newpages will help you. – rocco Apr 26 '13 at 08:26