Is it possible to make the text bigger there? I mean, where "how" and "to increase" are written. I can't find anything about it.
\documentclass{beamer}
\usepackage[cp1251]{inputenc}
\usepackage[T2A]{fontenc}
\usepackage[english,russian]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx,pgf}
\usepackage{multimedia}
\usepackage{hyperref}
\usetheme{Berlin}
\useinnertheme{circles}
\useoutertheme{smoothbars}
\usefonttheme{serif}
\begin{document}
\section{AAA}
\subsection{BBB}
\begin{frame}{CCC}
DDD
\[EEE\]
FFF
\end{frame}
\end{document}
Best Answer
You are using the outer theme smoothbars. In there, the subsection beamercolorbox height is set independently of the
subsection in head/foot
font size. So you should redefine theheadline
beamertemplate. Like this for example.I also adjusted the height parameter of the
beamercolorbox
to get a better vertically centered text.Once you have done that you can easily set the font size of
subsection in head/foot
and the height of thebeamercolorbox
will adjust accordingly.