I experienced some strange conflict, see the code example below.
When the babel-related line is commented out, everything works fine,
i.e. List of Figures page is generated, and the links to the individual figures
point to the correct place. However, if it is uncommented, it compiles fine,
the list is OK, but the links do not work.
It looks like the problem is caused by \selectlanguage{magyar}, i.e.
English language users do not see this problem.
Any ideas?
Thanks for any help in advance
Janos
Code: Select all
documentclass[11pt, a4paper,
extrafontsizes,twocolumn]{memoir}
\usepackage{memsty}
%\usepackage[english,magyar]{babel}
\begin{document}
\listoffigures
\clearpage
\chapter{Introduction}
\begin{figure}
\includegraphics{IntegratedOS}
\caption{OS}
\end{figure}
\clearpage
\begin{figure}
\includegraphics{IntegratedOS}
\caption{OS}
\end{figure}
\clearpage
\begin{figure}
\includegraphics{IntegratedOS}
\caption{OS}
\end{figure}
\clearpage
\end{document}