Basic info:
- OS version: Windows 10
- TeX version: TeX Live 2019
- Editor: TeXstudio 2.12.14
Detailed issue:
When under "pdflatex", the hyperlink of “section head” of the Mini Frame Navigation works (clickable).
However, when under "xelatex", the hyperlink of “section head” of the Mini Frame Navigation does not works (non clickable).
Such as the following picture:
How to fix this?
BTW, my test code is:
%! Tex program = pdflatex or xelatex
\documentclass[UTF8,10pt]{beamer}
\useoutertheme{infolines}
\usetheme[compress]{Berlin}
\useinnertheme{rounded}
\setbeamerfont{font of headline by me}{size*={6}{1}}
\setbeamertemplate{headline}%
{
\begin{beamercolorbox}{section in head/foot}
\usebeamerfont{font of headline by me}
\vskip2pt\insertnavigation{\paperwidth}\vskip2pt
\end{beamercolorbox}%
}
\begin{document}
\section{Sec}
\subsection{subSec1}
\begin{frame}
\frametitle{frametitle of subSec1}
Hello
\end{frame}
\begin{frame}
\frametitle{frametitle of subSec1}
Hello
\end{frame}
\subsection{subSec2}
\begin{frame}
\frametitle{frametitle of subSec2}
Hello
\end{frame}
\end{document}

https://tex.stackexchange.com/questions/274828/ is not very perfect~ – latex_lover Feb 18 '21 at 04:01