I use a custom LaTex beamer theme
in an rmarkdown::beamer_presentation
.
As per these SO answers (LaTex theme, colon, theme path), I used several modifications of the YAML header and beamerthemeTHEMENAME.sty
.
These LaTex hacks are necessary to apply the LaTex Beamer theme
smoothly in the rmarkdown::beamer_presentation
.
For the foot line defined in beamerouterthemeTHEMENAME.sty
, it would be very nice to have a hyperlink from the logo to the table of contents
slide (like the slide numbers are linked to the appendix
).
What I tried: define custom foot line in beamerouterthemeTHEMENAME.sty
\mode<presentation>
...
% Foot line
\setbeamertemplate{footline}{
\leavevmode%
\hyperlink{toc---table-of-contents}{\includegraphics[width=12mm,trim=0mm 0.4mm 0mm 0mm]{img/my_logo.png}}
\hfill
\hyperlinkappendixstart{\insertframenumber/\inserttotalframenumber}
\vspace{3mm}
}
\mode<all>
For a complete MWE, see my SO question here.