내 빔머에 다음 항목으로 구성된 바닥글을 추가해야 합니다. 1. 내 이름(왼쪽) 2. 제목(가운데) 3. 슬라이드 번호(오른쪽)
매우 기본적이며 어떤 종류의 테마도 없습니다.
답변1
이를 위해 나는 비머 테마 중 하나의 소스를 가져와 다음과 같은 것으로 변경했습니다(비머 문서의 시작 부분에 복사하는 것으로 충분합니다).
\setbeamertemplate{footline}%{infolines theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center] {author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.50\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}