如何去除 Beamer 中法兰克福主题的模糊边缘?

如何去除 Beamer 中法兰克福主题的模糊边缘?

我喜欢这个法兰克福主题,但我不喜欢模糊在框架标题边缘。虽然有很多主题可用于 beamer,例如盒子,安娜堡并且边缘锋利。如果您能通过将框架标题边缘设置为锋利来帮助我解决这个问题,我将非常感激。

如果你能把阴影从堵塞并将其圆角半径设为0%。

在此处输入图片描述

\documentclass[aspectratio=169]{beamer}
\usetheme{Frankfurt}    % Frankfurt, boxes, Luebeck, Boadilla, AnnArbor, Antibes
\usecolortheme{crane}    % albatross, crane, 
\usefonttheme{structurebold}
\usepackage{bookman}
\setbeamertemplate{title page}[default][colsep=-4bp,rounded=false]  % title page
\begin{document}
%---------------------------------------------------
\section{Section Name}
\subsection{Subsection Name}
%---------------------------------------------------
\begin{frame}[c,    % vertical align [c, t, b]  
allowframebreaks,
allowdisplaybreaks]
{This is frame title}
{Frame subtitle}
This is frame content...
\begin{block}{Block title}
This is Block content....
\end{block}
\end{frame}
\end{document}

答案1

主题Frankfurt使用

  • 外部主题smoothbars,基本上就是miniframes主题加上颜色过渡,因此你可以直接使用miniframes主题

  • rounded使用阴影选项调用内部主题 -> 改为不使用此选项


\documentclass[aspectratio=169]{beamer}


\mode<presentation>

\useoutertheme[subsection=false]{miniframes}
\useinnertheme[shadow=false]{rounded}
\usecolortheme{orchid}
\usecolortheme{whale}

\setbeamerfont{block title}{size={}}

\mode
<all>


\usecolortheme{crane}    % albatross, crane, 
\usefonttheme{structurebold}
\usepackage{bookman}
\setbeamertemplate{title page}[default][colsep=-4bp,rounded=false]  % title page


\begin{document}
%---------------------------------------------------
\section{Section Name}
\subsection{Subsection Name}
%---------------------------------------------------
\begin{frame}[c,    % vertical align [c, t, b]  
allowframebreaks,
allowdisplaybreaks]
{This is frame title}
{Frame subtitle}
This is frame content...
\begin{block}{Block title}
This is Block content....
\end{block}
\end{frame}
\end{document}

在此处输入图片描述

相关内容