mI experienced that glossaries generates a wrong link when my document contains a titlepage...
Here is my code:
\documentclass{article}
\usepackage{hyperref}
\usepackage[acronym]{glossaries}
\makeglossaries
\newglossaryentry{api}{type=\acronymtype, name={API}, description={Application
Programming Interface}, first={Application
Programming Interface (API)}, see=[Glossary:]{apig}}
\newglossaryentry{apig}{name={API},
description={An Application Programming Interface (API) is a particular set
of rules and specifications that a software program can follow to access and
make use of the services and resources provided by another particular software
program that implements that API},nonumberlist}
\begin{document}
\begin{titlepage}
\center{title}
\end{titlepage}
\newpage
\noindent
First use \gls{api}\\
subsequent \gls{api}
\newpage
a page between
\newpage
Another use: \gls{api}\\
\newpage
\glsadd{apig}
\printglossary[type=\acronymtype]
\newpage
\printglossary[type=main]
\end{document}
I took the code from here: How to combine Acronym and Glossary
I want to have acronyms and a glossary. And the acronyms should link to the glossary...
I won't mind to remove the page number behind the acronym, but using the "nonumberlist" option also removes the link to my glossary :-/
Using the code without the titlepage works fine...
Thanks for help!
\pagenumbering{alph}before thetitlepageand\pagenumbering{arabic}just after it. – egreg Oct 29 '12 at 18:56