修改 flip beamer 主题

修改 flip beamer 主题

最近我偶然遇到了flip beamer theme你可以在这里找到它

我不喜欢current frame/total frames页码样式,所以我在.tex文件中添加了以下几行

\newcommand*\oldmacro{}%
\let\oldmacro\insertshorttitle%
\renewcommand*\insertshorttitle{%
\oldmacro\hfill%
\insertframenumber\,}%/\,\inserttotalframenumber

但它不起作用。我想看看.sty文件中发生了什么。beamerouterthemeFlip.sty我替换了

\node at (\paperwidth-5ex,4ex){\small$^\text{\insertframenumber}/_\text{\inserttotalframenumber}$};

 \node at (\paperwidth-5ex,4ex) {\small $\insertframenumber$};

并且它成功了。

改变编号样式

现在我想smoothbars在上面添加...带圆圈的...类似的东西

圆形和光滑条形

.tex文件中我添加了

\useoutertheme[subsection=true]{smoothbars}

但它不仅没有起到作用,反而在某种程度上破坏了主题的美感。

失去美丽

有办法实现吗?在顶部画圆圈而不会破坏一切……

我也想添加一个logo但使用

\logo{\includegraphics[scale=.05]{logo.jpg}}

它不起作用...

答案1

徽标是通过\insertlogo宏插入的。为此,您需要取消注释第 171 行beamerouterthemeFlip.sty

相关内容