如何在每个幻灯片顶部显示计划 投影仪主题 JuanLesPins

如何在每个幻灯片顶部显示计划 投影仪主题 JuanLesPins
\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{colortbl}

\usetheme{JuanLesPins}
\usecolortheme[named=blue]{structure}



\usepackage{amssymb}
%\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{tikz}
\usepackage{subfig}
\usetikzlibrary{calc}
\usetikzlibrary{patterns}
\usetikzlibrary{arrows}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{shapes.symbols}

在此处输入图片描述

在介绍的地方..我想要的框架出现介绍一个词汇着色在图形和每当我改变部分的颜色每个改变以澄清我在哪个部分

在此处输入图片描述

这是我的演示计划,我希望这三句话出现在框架的顶部

答案1

如果您想要在顶部导航,通常可以通过选择主题来设置,例如{Dresden},但是在这里我已将{JuanLesPins}更改为包含类似的设置,以便按照要求将 3 个部分放在标题中。

在此处输入图片描述

    \documentclass[usenames,dvipsnames]{beamer}

\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}

\usepackage{amsmath,amssymb}
\usepackage{graphicx,subfig}
\usepackage{xcolor,colortbl}
\usepackage{tikz} % declare the xcolor package before tikz
\usetikzlibrary{calc}
\usetikzlibrary{patterns}
\usetikzlibrary{arrows}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{shapes.symbols}

\usetheme{JuanLesPins}
\useoutertheme{miniframes}
\useinnertheme{rounded}
\usecolortheme[rgb={0.2,0.2,1.0}]{structure}

\title[Short title]{The girl in the mirror}
\subtitle{A day in the life of}

% footline data, first remove deadly sin 1 = redundant navigator
\beamertemplatenavigationsymbolsempty % or \setbeamertemplate{navigation symbols}{}
\author[Nom]{Meriem Divitcha} \institute[Institution]{Universty de vivre}
\defbeamertemplate{footline}{Foot}{\hspace{1cm}\insertauthor\hfill\insertinstitute\hfill\insertframenumber}
\setbeamertemplate{footline}[Foot] % now display modified footer


\usepackage{hyperref}

\AtBeginSection[] {\begin{frame}{Plan de pr\'esentation} \tableofcontents[current]\end{frame} }

\begin{document}

\titlepage{\small présentatrice}\newpage % or \maketitle

% \begin{frame}\tableofcontents\end{frame} replaced by per section contents

\section{Introduction}
\begin{frame}{Introduction}
Todays lecture is an introduction to latex
\end{frame}

\section{Un peu de vocabulaire}
\begin{frame}{Un peu de vocabulaire}
un peu de vocabulaire 
\end{frame}

\section{Coloration dans les graphes}
\begin{frame}{Coloration dans les graphes}
coloration dans les graphes
\begin{columns}[c] % Columns centered vertically.
\column{5.5cm} % Adjust column width to taste.
\includegraphics[scale=0.5]{example-image-a}
\column{5.5cm}
\includegraphics[scale=0.5]{example-image-b}
\end{columns}
\end{frame}

\end{document}

相关内容