标题页链接是不可见的,并且出现在所有框架投影仪的标题中!

标题页链接是不可见的,并且出现在所有框架投影仪的标题中!

标题页的链接不可见,并出现在页眉的所有框架中。有人能告诉我如何删除它吗?在此处输入图片描述

虚线框。它出现在所有页面上,非常烦人。

这是主要文件:


\documentclass[aspectratio=169,xcolor=dvipsnames]{beamer}
\usepackage{etoolbox}

\usetheme{Simple}

\usepackage{hyperref}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage{unicode-math}
\usepackage{subcaption}
\usepackage{svg}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen}
\AtBeginSection[]{
  \begin{frame}
  \vfill
  \centering
  \begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
    \usebeamerfont{title}\insertsectionhead\par%
  \end{beamercolorbox}
  \vfill
  \end{frame}
}


%----------------------------------------------------------------------------------------
%   TITLE PAGE
%----------------------------------------------------------------------------------------

% The title
\title[Disentanglement]{Disentanglement for physical systems}
% \subtitle{Subtitle}

\author[Saied] {Youssef Saied}
\institute[EPFL] % Your institution may be shorthand to save space
{
    % Your institution for the title page
    Swiss Data Science Center \\
    École Polytechnique Fédérale de Lausanne 
    \vskip 3pt
}
\date{\today} % Date, can be changed to a custom date

%----------------------------------------------------------------------------------------
%   PRESENTATION SLIDES
%----------------------------------------------------------------------------------------

\begin{document}

\begin{frame}[plain]
    % Print the title page as the first slide
    \titlepage
\end{frame}

\end{document}

样式文件:

\mode<presentation>

% Settings
\usetheme{Szeged}
\useinnertheme{circles}
% \useoutertheme{simpleinfo}
% \useoutertheme{miniframes} % Alternatively: miniframes, infolines, split
\usefonttheme{Simple}
\usecolortheme{whale}

% \setbeamertemplate{footline} % To remove the footer line in all slides uncomment this line
\setbeamertemplate{footline}[page number] % To replace the footer line in all slides with a simple slide count uncomment this line
\setbeamertemplate{navigation symbols}{} % To remove the navigation symbols from the bottom of all slides uncomment this line
\setbeamertemplate{blocks}[rounded][shadow=true]
\setbeamertemplate{enumerate items}[default]
% table of contents (overview)
\setbeamertemplate{section in toc}[sections numbered]
\setbeamertemplate{subsection in toc}[default]

\mode<all>

\mode<presentation>

%%%%%%%%%%%% fonts

\setbeamerfont{structure}{family=\sffamily,series=\mdseries}

\setbeamerfont{title}{size=\LARGE,parent=structure}
\setbeamerfont{subtitle}{size=\normalsize,parent=title}

\setbeamerfont{date}{size=\scriptsize,series=\mdseries,parent=structure}
\setbeamerfont{author}{size=\Large,series=\mdseries,parent=structure}
\setbeamerfont{institute}{size=\scriptsize,series=\mdseries,parent=structure}

\setbeamerfont{section in toc}{size=\Large,parent=structure}
\setbeamerfont{section in head/foot}{size=\tiny,parent=structure}
\setbeamerfont{subsection in toc}{size=\large,parent={section in toc}}

\setbeamerfont{frametitle}{parent=structure,size=\LARGE}
\setbeamerfont{framesubtitle}{parent=frametitle,size=\Large}

\setbeamerfont{caption}{size=\footnotesize}
\setbeamerfont{item}{parent=structure,series=\mdseries}
\setbeamerfont{block title}{size=\large,series=\mdseries,parent={structure,block body}}

\mode
<all>



\definecolor{InvisibleRed}{rgb}{0.92, 0.9, 0.9}
\definecolor{InvisibleGreen}{rgb}{0.9, 0.92, 0.9}
\definecolor{InvisibleBlue}{rgb}{0.9, 0.9, 0.92}

\definecolor{LightBlue}{rgb}{0.4, 0.55, 0.65}

\definecolor{MediumRed}{rgb}{0.92549, 0.34509, 0.34509}
\definecolor{MediumGreen}{rgb}{0.36862, 0.66666, 0.65882}
\definecolor{MediumBlue}{rgb}{0.01176, 0.31372, 0.43529}

\definecolor{DarkBlue}{rgb}{0.05, 0.15, 0.3} 

\usecolortheme[named=DarkBlue]{structure}

\setbeamercolor{palette primary}{bg=DarkBlue,fg=white}
\setbeamercolor{palette secondary}{bg=MediumBlue,fg=white}
\setbeamercolor{palette tertiary}{bg=LightBlue,fg=white}
\setbeamercolor{block title}{bg=MediumBlue}
\setbeamercolor{block body}{bg=InvisibleBlue}
\setbeamercolor{block title example}{bg=MediumGreen}
\setbeamercolor{block body example}{bg=InvisibleGreen}
\setbeamercolor{block title alerted}{bg=MediumRed}
\setbeamercolor{block body alerted}{bg=InvisibleRed}

谢谢你!

答案1

该链接属于笔记页顶部的标题。由于您使用了该show notes on second screen选项,因此该pdfpages包用于将笔记定位在幻灯片旁边,但无法重新定位链接区域,例如需要 pgfpages 的超链接帮助

您可以通过以下几种方式来解决此问题:

  • 如果你不需要主幻灯片上的链接,你可以将注释放在左侧

  • 关闭注释中的链接,如下例所示:

\documentclass{beamer}

\setbeameroption{show notes on second screen}
\addtobeamertemplate{note page}{\hypersetup{hidelinks}}{}

\title{Title}

\begin{document}

\begin{frame}
    \titlepage
\end{frame}

\begin{frame}
test
\end{frame}

\end{document}

相关内容