
내 기관 색상과 일치하도록 몽펠리에 테마를 수정하고 로고 등을 삽입하려고 합니다. 원하는 색상/정보로 바닥글을 사용자 정의하는 방법은 다음과 같습니다.
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{footlinecolor}%{author in head/foot}%
\usebeamerfont{author in head/foot}\insertauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{footlinecolor1}%{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshortdate
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{footlinecolor1}%{date in head/foot}%
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
\makeatother
이제 헤더와 비슷한 작업을 수행해야 하는데 이를 수정할 소스 코드를 찾을 수 없는 것 같습니다. 몽펠리에 테마의 멋진 트리 구조를 유지하되 오른쪽에 기관 로고를 추가하고 모든 색상을 변경하고 싶습니다. 어떤 도움이라도 정말 감사하겠습니다!
답변1
에서 헤드라인의 소스 코드를 찾을 수 있지만 beamerouterthemetree.sty
색상 변경, 로고 추가 등을 원하는 경우에는 소스 코드가 필요하지 않습니다.
\documentclass{beamer}
\useoutertheme{infolines}
\usetheme{Montpellier}
\setbeamertemplate{footline}[infolines]
\setbeamercolor{footlinecolor}{fg=black, bg=blue!50!white}
\setbeamercolor{footlinecolor1}{fg=black, bg=blue!20!white}
%%% Footline %%%
\setbeamercolor{title in head/foot}{parent=footlinecolor}
\setbeamercolor{author in head/foot}{parent=footlinecolor1}
\setbeamercolor{date in head/foot}{parent=footlinecolor1}
%%%% headline %%%%
\setbeamercolor{section in head/foot}{bg=green}
\setbeamercolor{subsection in head/foot}{bg=yellow}
\setbeamercolor{separation line}{bg=red}
%%% Logo
\usepackage{tikz}
\addtobeamertemplate{headline}{}{%
\begin{tikzpicture}[remember picture,overlay]
\node at([shift={(5.5,-.6)}]current page.north) {\includegraphics[height=.8\headheight]{example-image}};
\end{tikzpicture}}
\begin{document}
\section{bla}
\begin{frame}
test
\end{frame}
\end{document}
검정색 배경: