我喜欢这个法兰克福主题,但我不喜欢模糊在框架标题边缘。虽然有很多主题可用于 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}