Metropolis 테마에 섹션 표시기를 추가하시겠습니까?

Metropolis 테마에 섹션 표시기를 추가하시겠습니까?

저는 Metropolis 색상 테마를 정말 좋아하며 이를 '내 것'처럼 만들기 위해 주변을 조정할 계획입니다. 내 상사가 매우 까다로운 점 중 하나는 프레젠테이션에 섹션 탐색 기능을 포함하는 것입니다. 내가 찾을 수 있는 좋은 예는 다음과 같습니다.여기그리고다른 것.

색상 테마를 유지하면서 이를 달성할 수 있는 방법에 대한 제안이 있습니까? (저는 해당 줄에 대한 올바른 전문 용어조차 모르기 때문에 '섹션 머리글/섹션 탐색기 바닥글/기타'와 같은 용어를 검색해 보았지만 좋은 도움이 되지 않았습니다.

답변1

연결한 첫 번째 예에서는 Berlin테마의 수정된 버전을 사용하고 그 대가로 miniframe테마의 헤드라인을 사용합니다. 테마를 계속 사용 metropolis하고 이 헤드라인을 추가하면 됩니다.

당신이 해야 할 일은 어떤 색상을 갖고 싶은지 결정하는 것입니다. 그냥 수정하면 됩니다.\setbeamercolor{section in head/foot}{fg=normal text.bg, bg=structure.fg}

\documentclass{beamer}

\usetheme{metropolis}

\makeatletter
\setbeamertemplate{headline}{%
  \begin{beamercolorbox}[colsep=1.5pt]{upper separation line head}
  \end{beamercolorbox}
  \begin{beamercolorbox}{section in head/foot}
    \vskip2pt\insertnavigation{\paperwidth}\vskip2pt
  \end{beamercolorbox}%
  \begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
  \end{beamercolorbox}
}
\makeatother

\setbeamercolor{section in head/foot}{fg=normal text.bg, bg=structure.fg}

\begin{document}

\section{section 1}
\subsection{section name}
\begin{frame}
\frametitle{blub}
    abc
\end{frame} 
\begin{frame}
\frametitle{blub}
    abc
\end{frame} 

\section{section 2}
\begin{frame}
\frametitle{blub}
    abc
\end{frame} 

\section{section 3}
\begin{frame}
\frametitle{blub}
    abc
\end{frame}     

\end{document}

여기에 이미지 설명을 입력하세요

[링크한 두 번째 템플릿의 탐색 모음을 선호하는 경우 거기에서 헤드라인을 살펴보고 가져갈 수 있습니다 beamerouterthemesplit.sty. 하지만 개인적으로 어두운 프레임 제목이 이미 매우 지배적인 요소이며 분할 테마의 큰 헤드라인이 필요하지 않습니다.]

관련 정보