Commit 0a8e1d5af89f8c33dc09535249298b786c169aac
1 parent
7b0141b8
Exists in
master
setting colors and options
Showing
17 changed files
with
1962 additions
and
233 deletions
Show diff stats
README.md
| ... | ... | @@ -12,42 +12,42 @@ |
| 12 | 12 | |
| 13 | 13 | ## Temas e variantes |
| 14 | 14 | |
| 15 | -# Simples | |
| 15 | +### Simples | |
| 16 | 16 | |
| 17 | -# Com contexto | |
| 17 | +### Com contexto | |
| 18 | 18 | |
| 19 | -# Com a barra do título muito destacada | |
| 19 | +### Com a barra do título muito destacada | |
| 20 | 20 | |
| 21 | 21 | ## Exemplos |
| 22 | 22 | |
| 23 | -``` | |
| 24 | -\documentclass{beamer} | |
| 25 | -\usetheme{Giraldo} | |
| 26 | -% | |
| 27 | -\title{Exemplo de uma aula} | |
| 28 | -\subtitle{Uso do tema `Giraldo'} | |
| 29 | -\author{Francisco Coelho} | |
| 30 | -\institute[\texttt{fc@di.uevora.pt}]{ | |
| 31 | -Departamento de Informática\\ | |
| 32 | -Escola de Ciências e Tecnologia\\ | |
| 33 | -Universidade de Évora | |
| 34 | -} | |
| 35 | - | |
| 36 | -\begin{document} | |
| 37 | - \begin{frame} | |
| 38 | - \titlepage | |
| 39 | - \end{frame} | |
| 40 | - | |
| 41 | - \section*{Preâmbulo} | |
| 42 | - | |
| 43 | - \begin{frame}{Sumário} | |
| 44 | - \tableofcontents | |
| 45 | - \end{frame} | |
| 46 | - | |
| 47 | - \section{Uso básico do `beamer`} | |
| 48 | - | |
| 49 | - \begin{frame}{Criar uma página} | |
| 50 | - Olá | |
| 51 | - \end{frame} | |
| 52 | -\end{document} | |
| 23 | +`` | |
| 24 | + \documentclass{beamer} | |
| 25 | + \usetheme{Giraldo} | |
| 26 | + % | |
| 27 | + \title{Exemplo de uma aula} | |
| 28 | + \subtitle{Uso do tema `Giraldo'} | |
| 29 | + \author{Francisco Coelho} | |
| 30 | + \institute[\texttt{fc@di.uevora.pt}]{ | |
| 31 | + Departamento de Informática\\ | |
| 32 | + Escola de Ciências e Tecnologia\\ | |
| 33 | + Universidade de Évora | |
| 34 | + } | |
| 35 | + | |
| 36 | + \begin{document} | |
| 37 | + \begin{frame} | |
| 38 | + \titlepage | |
| 39 | + \end{frame} | |
| 40 | + | |
| 41 | + \section*{Preâmbulo} | |
| 42 | + | |
| 43 | + \begin{frame}{Sumário} | |
| 44 | + \tableofcontents | |
| 45 | + \end{frame} | |
| 46 | + | |
| 47 | + \section{Uso básico do `beamer`} | |
| 48 | + | |
| 49 | + \begin{frame}{Criar uma página} | |
| 50 | + Olá | |
| 51 | + \end{frame} | |
| 52 | + \end{document} | |
| 53 | 53 | ``` |
| 54 | 54 | \ No newline at end of file | ... | ... |
| ... | ... | @@ -0,0 +1,120 @@ |
| 1 | +\documentclass{beamer} | |
| 2 | +\usetheme[strongtitles]{Giraldo} | |
| 3 | +% | |
| 4 | +% | |
| 5 | +% Suporte para o português | |
| 6 | +% | |
| 7 | +\usepackage[T1]{fontenc} | |
| 8 | +\usepackage{eurosym} | |
| 9 | +\usepackage[utf8]{inputenc} | |
| 10 | +\usepackage[portuges]{babel} | |
| 11 | +% | |
| 12 | +\languagepath{Portuguese} | |
| 13 | +\newtranslation[to=Portuguese]{Definition}{Defini\c{c}\~{a}o} | |
| 14 | +\newtranslation[to=Portuguese]{Example}{Exemplo} | |
| 15 | +\newtranslation[to=Portuguese]{Theorem}{Teorema} | |
| 16 | +\uselanguage{Portuguese} | |
| 17 | +% | |
| 18 | +% | |
| 19 | +% Suporte para figuras | |
| 20 | +% | |
| 21 | +\usepackage{graphicx} | |
| 22 | +\usepackage{tikz} | |
| 23 | +% | |
| 24 | +% | |
| 25 | +% Suporte estendido para expressões matemáticas | |
| 26 | +% | |
| 27 | +\usepackage{amssymb} | |
| 28 | +% | |
| 29 | +% | |
| 30 | +% Identificação deste documento | |
| 31 | +% | |
| 32 | +\title{Exemplo de uma aula} | |
| 33 | +\subtitle{Uso do tema `Giraldo'} | |
| 34 | +\author{Francisco Coelho} | |
| 35 | +\institute[\texttt{fc@di.uevora.pt}]{ | |
| 36 | +Departamento de Informática\\ | |
| 37 | +Escola de Ciências e Tecnologia | |
| 38 | +} | |
| 39 | +\date{} | |
| 40 | +% | |
| 41 | +% | |
| 42 | +% Início do documento | |
| 43 | +% | |
| 44 | +\begin{document} | |
| 45 | + % | |
| 46 | + % | |
| 47 | + % Página de rosto | |
| 48 | + % | |
| 49 | + \begin{frame} | |
| 50 | + \titlepage | |
| 51 | + \end{frame} | |
| 52 | + % | |
| 53 | + % | |
| 54 | + % Preâmbulo (sumário e notas preliminares) | |
| 55 | + % | |
| 56 | + \section*{Preâmbulo} | |
| 57 | + % | |
| 58 | + % | |
| 59 | + % Sumário (por exemplo, a tabela de conteúdos) | |
| 60 | + % | |
| 61 | + \begin{frame}{Sumário} | |
| 62 | + \tableofcontents | |
| 63 | + \end{frame} | |
| 64 | + % | |
| 65 | + % | |
| 66 | + % Primeira secção | |
| 67 | + % | |
| 68 | + \section{Uso básico do `beamer`} | |
| 69 | + % | |
| 70 | + % | |
| 71 | + % Página de conteúdo | |
| 72 | + % | |
| 73 | + \begin{frame}{Organização da Universidade de Évora} | |
| 74 | + Escolas da \alert{Universidade de Évora}: | |
| 75 | + \begin{itemize} | |
| 76 | + \item Escola de Artes; | |
| 77 | + \begin{enumerate} | |
| 78 | + \item Departamento de Arquitectura; | |
| 79 | + \item Departamento de Artes Cénicas; | |
| 80 | + \item Departamento de Artes Visuais e Design; | |
| 81 | + \item Departamento de Música; | |
| 82 | + \end{enumerate} | |
| 83 | + \item Escola de Ciências e Tecnologia; | |
| 84 | + \item Escola de Ciências Sociais; | |
| 85 | + \item Escola Superior de Emfermagem S. João de Deus; | |
| 86 | + \item Instituto de Investigação e Formação Avançada; | |
| 87 | + \end{itemize} | |
| 88 | + \end{frame} | |
| 89 | + % | |
| 90 | + % | |
| 91 | + % Página com teorema | |
| 92 | + % | |
| 93 | + \begin{frame}{Teoremas e Demonstrações} | |
| 94 | + \begin{theorem}[Teorema Fundamental da Álgebra] | |
| 95 | + Qualquer polinómio de grau $n$ tem $n$ raízes complexas. | |
| 96 | + \end{theorem} | |
| 97 | + \begin{proof} | |
| 98 | + Tenho uma demonstração simples mas não cabe na margem da página. | |
| 99 | + \end{proof} | |
| 100 | + \end{frame} | |
| 101 | + % | |
| 102 | + % | |
| 103 | + % Página com teorema | |
| 104 | + % | |
| 105 | + \begin{frame}{Exemplos} | |
| 106 | + O próximo exemplo tem um \alert{alerta}... | |
| 107 | + \begin{example}[Para grau 2] | |
| 108 | + Qualquer polinómio do segundo grau, $ax^2 + bx + c$, tem duas raízes, dadas por | |
| 109 | + \begin{align*} | |
| 110 | + x &= \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} | |
| 111 | + \end{align*} | |
| 112 | + Se o \alert{discriminante}, $b^2 - 4ac$, for\ldots | |
| 113 | + \begin{description} | |
| 114 | + \item[negativo] as raízes são dois números complexos conjugados; | |
| 115 | + \item[zero] as duas raízes coincidem; | |
| 116 | + \item[positivo] as duas raízes são dois números reais distintos; | |
| 117 | + \end{description} | |
| 118 | + \end{example} | |
| 119 | + \end{frame} | |
| 120 | +\end{document} | |
| 0 | 121 | \ No newline at end of file | ... | ... |
texmf/tex/latex/beamer/themes/color/beamercolorthemeGiraldo.sty
0 → 100644
| ... | ... | @@ -0,0 +1,121 @@ |
| 1 | +% Copyright 2014 by Francisco Coelho | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | + | |
| 9 | + | |
| 10 | +% | |
| 11 | +% (fc:) Not sure what the next command does... | |
| 12 | +% | |
| 13 | +%\@ifundefined{beamer@cta@do}{}{\beamer@cta@do} | |
| 14 | +% | |
| 15 | +\newif\ifstrongtitles | |
| 16 | +\strongtitlesfalse | |
| 17 | +% | |
| 18 | +\DeclareOptionBeamer{strongtitles}[true]{\csname strongtitles#1\endcsname} | |
| 19 | +\ProcessOptionsBeamer | |
| 20 | + | |
| 21 | +\mode<presentation> | |
| 22 | + | |
| 23 | +% | |
| 24 | +% | |
| 25 | +% Define UE colors | |
| 26 | +% | |
| 27 | +\definecolor{ue-red}{RGB}{158 27 50} | |
| 28 | +\definecolor{ue-gray}{RGB}{88 89 91} | |
| 29 | +\definecolor{ue-grey}{RGB}{88 89 91} | |
| 30 | +\definecolor{ue-black}{RGB}{0 0 0} | |
| 31 | +% | |
| 32 | +% | |
| 33 | +% Basic text elements | |
| 34 | +% | |
| 35 | +\setbeamercolor*{normal text}{fg=black,bg=white} | |
| 36 | +\setbeamercolor{alerted text}{fg=ue-red,bg=white} | |
| 37 | +\setbeamercolor*{title}{fg=ue-red,bg=white} | |
| 38 | +\ifstrongtitles | |
| 39 | + \setbeamercolor*{frametitle}{ | |
| 40 | + fg=white, | |
| 41 | + bg=ue-red | |
| 42 | + } | |
| 43 | +\else | |
| 44 | + \setbeamercolor*{frametitle}{ | |
| 45 | + fg=ue-red, | |
| 46 | + bg=white | |
| 47 | + } | |
| 48 | +\fi | |
| 49 | +% | |
| 50 | +% | |
| 51 | +% Frame constant elements | |
| 52 | +% | |
| 53 | + | |
| 54 | +% \setbeamercolor*{separation line}{} | |
| 55 | +% \setbeamercolor*{fine separation line}{} | |
| 56 | +% | |
| 57 | +% | |
| 58 | +% Structures (lists, etc) | |
| 59 | +% | |
| 60 | +\setbeamercolor*{structure}{fg=ue-grey} | |
| 61 | +%\setbeamercolor{item projected}{fg=black} | |
| 62 | +% | |
| 63 | +% | |
| 64 | +% Frame block elements (theorems, etc) | |
| 65 | +% | |
| 66 | +\setbeamercolor*{block body}{bg=normal text.bg!90!black} | |
| 67 | +\setbeamercolor*{block body alerted}{bg=normal text.bg!90!black} | |
| 68 | +\setbeamercolor*{block title}{parent=structure,bg=ue-red,fg=white} | |
| 69 | +\setbeamercolor*{block title alerted}{use={normal text,alerted text},fg=alerted text.fg!75!normal text.fg,bg=normal text.bg!75!black} | |
| 70 | +% | |
| 71 | +% | |
| 72 | +% Examples | |
| 73 | +% | |
| 74 | +\setbeamercolor*{example text}{fg=ue-grey!75!black} | |
| 75 | +% | |
| 76 | +\setbeamercolor*{block body example}{bg=normal text.bg!90!black} | |
| 77 | +\setbeamercolor*{block title example}{ | |
| 78 | + use={normal text,example text}, | |
| 79 | + fg=ue-red!75!normal text.fg, | |
| 80 | + bg=normal text.bg!75!black | |
| 81 | +} | |
| 82 | +% | |
| 83 | +% | |
| 84 | +% Palettes | |
| 85 | +% | |
| 86 | +\setbeamercolor{palette primary}{ | |
| 87 | + use={structure,normal text}, | |
| 88 | + fg=structure.fg, | |
| 89 | + bg=normal text.bg!75!black | |
| 90 | +} | |
| 91 | +% | |
| 92 | +\setbeamercolor{palette secondary}{ | |
| 93 | + use={structure,normal text}, | |
| 94 | + fg=structure.fg, | |
| 95 | + bg=normal text.bg!60!black | |
| 96 | +} | |
| 97 | +% | |
| 98 | +\setbeamercolor{palette tertiary}{ | |
| 99 | + use={structure,normal text}, | |
| 100 | + fg=structure.fg, | |
| 101 | + bg=normal text.bg!45!black | |
| 102 | +} | |
| 103 | +% | |
| 104 | +\setbeamercolor{palette quaternary}{ | |
| 105 | + use={structure,normal text}, | |
| 106 | + fg=structure.fg, | |
| 107 | + bg=normal text.bg!30!black | |
| 108 | +} | |
| 109 | +% | |
| 110 | +% | |
| 111 | +% Sidebar stuff | |
| 112 | +% | |
| 113 | +\setbeamercolor*{sidebar}{parent=palette primary} | |
| 114 | +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} | |
| 115 | +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} | |
| 116 | +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} | |
| 117 | +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} | |
| 118 | +% | |
| 119 | +% | |
| 120 | +% | |
| 121 | +\mode<all> | ... | ... |
texmf/tex/latex/beamer/themes/color/beamercolorthemeLoios.sty
0 → 100644
| ... | ... | @@ -0,0 +1,182 @@ |
| 1 | +% Copyright 2007 by Till Tantau | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +% See the file doc/licenses/LICENSE for more details. | |
| 9 | + | |
| 10 | +\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/color/beamercolorthemedefault.sty,v 1686da3db3c9 2012/12/19 12:35:18 nicolas $ | |
| 11 | + | |
| 12 | + | |
| 13 | +\mode<presentation> | |
| 14 | + | |
| 15 | +\definecolor{beamer@blendedblue}{rgb}{0.2,0.2,0.7} % use structure theme to change | |
| 16 | + | |
| 17 | +\setbeamercolor{normal text}{fg=black,bg=white} | |
| 18 | +\setbeamercolor{alerted text}{fg=red} | |
| 19 | +\setbeamercolor{example text}{fg=green!50!black} | |
| 20 | + | |
| 21 | +\setbeamercolor{structure}{fg=beamer@blendedblue} | |
| 22 | + | |
| 23 | +\setbeamercolor{background canvas}{parent=normal text} | |
| 24 | +\setbeamercolor{background}{parent=background canvas} | |
| 25 | + | |
| 26 | +\setbeamercolor{palette primary}{use=structure,fg=structure.fg} | |
| 27 | +\setbeamercolor{palette secondary}{use=structure,fg=structure.fg!75!black} | |
| 28 | +\setbeamercolor{palette tertiary}{use=structure,fg=structure.fg!50!black} | |
| 29 | +\setbeamercolor{palette quaternary}{fg=black} | |
| 30 | + | |
| 31 | +\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} | |
| 32 | +\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} | |
| 33 | +\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} | |
| 34 | +\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} | |
| 35 | + | |
| 36 | +\setbeamercolor{math text}{} | |
| 37 | +\setbeamercolor{math text inlined}{parent=math text} | |
| 38 | +\setbeamercolor{math text displayed}{parent=math text} | |
| 39 | + | |
| 40 | +\setbeamercolor{normal text in math text}{} | |
| 41 | + | |
| 42 | +\setbeamercolor{local structure}{parent=structure} | |
| 43 | + | |
| 44 | +\setbeamercolor{titlelike}{parent=structure} | |
| 45 | + | |
| 46 | +\setbeamercolor{title}{parent=titlelike} | |
| 47 | +\setbeamercolor{title in head/foot}{parent=palette quaternary} | |
| 48 | +\setbeamercolor{title in sidebar}{parent=palette sidebar quaternary} | |
| 49 | + | |
| 50 | +\setbeamercolor{subtitle}{parent=title} | |
| 51 | + | |
| 52 | +\setbeamercolor{author}{} | |
| 53 | +\setbeamercolor{author in head/foot}{parent=palette primary} | |
| 54 | +\setbeamercolor{author in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} | |
| 55 | + | |
| 56 | +\setbeamercolor{institute}{} | |
| 57 | +\setbeamercolor{institute in head/foot}{parent=palette tertiary} | |
| 58 | +\setbeamercolor{institute in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} | |
| 59 | + | |
| 60 | +\setbeamercolor{date}{} | |
| 61 | +\setbeamercolor{date in head/foot}{parent=palette secondary} | |
| 62 | +\setbeamercolor{date in sidebar}{use=palette sidebar tertiary,fg=palette sidebar tertiary.fg} | |
| 63 | + | |
| 64 | +\setbeamercolor{titlegraphic}{} | |
| 65 | + | |
| 66 | +\setbeamercolor{part name}{} | |
| 67 | +\setbeamercolor{part title}{parent=titlelike} | |
| 68 | + | |
| 69 | +\setbeamercolor{section name}{} | |
| 70 | +\setbeamercolor{section title}{parent=titlelike} | |
| 71 | + | |
| 72 | +\setbeamercolor{section in toc}{parent=structure} | |
| 73 | +\setbeamercolor{section in toc shaded}{parent=section in toc} | |
| 74 | +\setbeamercolor{section in head/foot}{parent=palette tertiary} | |
| 75 | +\setbeamercolor{section in sidebar}{parent=palette sidebar secondary} | |
| 76 | +\setbeamercolor{section in sidebar shaded}{use=section in sidebar,fg=section in sidebar.fg!40!bg} | |
| 77 | +\setbeamercolor{section number projected}{parent=item projected} | |
| 78 | + | |
| 79 | +\setbeamercolor{subsection name}{} | |
| 80 | +\setbeamercolor{subsection title}{parent=titlelike} | |
| 81 | + | |
| 82 | +\setbeamercolor{subsection in toc}{} | |
| 83 | +\setbeamercolor{subsection in toc shaded}{parent=subsection in toc} | |
| 84 | +\setbeamercolor{subsection in head/foot}{parent=palette secondary} | |
| 85 | +\setbeamercolor{subsection in sidebar}{parent=palette sidebar primary} | |
| 86 | +\setbeamercolor{subsection in sidebar shaded}{use=subsection in sidebar,fg=subsection in sidebar.fg!40!bg} | |
| 87 | +\setbeamercolor{subsection number projected}{parent={subitem projected}} | |
| 88 | + | |
| 89 | +\setbeamercolor{subsubsection in toc}{parent=subsection in toc} | |
| 90 | +\setbeamercolor{subsubsection in toc shaded}{parent=subsubsection in toc} | |
| 91 | +\setbeamercolor{subsubsection in head/foot}{parent=subsection in head/foot} | |
| 92 | +\setbeamercolor{subsubsection in sidebar}{parent=subsection in sidebar} | |
| 93 | +\setbeamercolor{subsubsection in sidebar shaded}{parent=subsection in sidebar shaded} | |
| 94 | +\setbeamercolor{subsubsection number projected}{parent=subsubitem projected} | |
| 95 | + | |
| 96 | +\setbeamercolor{headline}{} | |
| 97 | +\setbeamercolor{footline}{} | |
| 98 | + | |
| 99 | +\setbeamercolor{sidebar}{} | |
| 100 | +\setbeamercolor{sidebar left}{parent=sidebar} | |
| 101 | +\setbeamercolor{sidebar right}{parent=sidebar} | |
| 102 | + | |
| 103 | +\setbeamercolor{logo}{parent=palette secondary} | |
| 104 | + | |
| 105 | +\setbeamercolor{frametitle}{parent=titlelike} | |
| 106 | +\setbeamercolor{framesubtitle}{parent=frametitle} | |
| 107 | + | |
| 108 | +\setbeamercolor{frametitle right}{parent=frametitle} | |
| 109 | + | |
| 110 | +\setbeamercolor{caption}{} | |
| 111 | +\setbeamercolor{caption name}{parent=structure} | |
| 112 | + | |
| 113 | +\setbeamercolor{button}{use=local structure,bg=local structure.fg!50!bg,fg=white} | |
| 114 | +\setbeamercolor{button border}{use=button,fg=button.bg} | |
| 115 | +\setbeamercolor{navigation symbols}{use=structure,fg=structure.fg!40!bg} | |
| 116 | +\setbeamercolor{navigation symbols dimmed}{use=structure,fg=structure.fg!20!bg} | |
| 117 | +\setbeamercolor{mini frame}{parent=section in head/foot} | |
| 118 | + | |
| 119 | +\setbeamercolor{block body}{} | |
| 120 | +\setbeamercolor{block body alerted}{} | |
| 121 | +\setbeamercolor{block body example}{} | |
| 122 | +\setbeamercolor{block title}{parent=structure} | |
| 123 | +\setbeamercolor{block title alerted}{parent=alerted text} | |
| 124 | +\setbeamercolor{block title example}{parent=example text} | |
| 125 | + | |
| 126 | +\setbeamercolor{item}{parent=local structure} | |
| 127 | +\setbeamercolor{subitem}{parent=item} | |
| 128 | +\setbeamercolor{subsubitem}{parent=subitem} | |
| 129 | + | |
| 130 | +\setbeamercolor{item projected}{parent=item,use=item,fg=white,bg=item.fg} | |
| 131 | +\setbeamercolor{subitem projected}{parent=item projected} | |
| 132 | +\setbeamercolor{subsubitem projected}{parent=subitem projected} | |
| 133 | + | |
| 134 | +\setbeamercolor{enumerate item}{parent=item} | |
| 135 | +\setbeamercolor{enumerate subitem}{parent=subitem} | |
| 136 | +\setbeamercolor{enumerate subsubitem}{parent=subsubitem} | |
| 137 | + | |
| 138 | +\setbeamercolor{itemize item}{parent=item} | |
| 139 | +\setbeamercolor{itemize subitem}{parent=subitem} | |
| 140 | +\setbeamercolor{itemize subsubitem}{parent=subsubitem} | |
| 141 | + | |
| 142 | +\setbeamercolor{itemize/enumerate body}{} | |
| 143 | +\setbeamercolor{itemize/enumerate subbody}{} | |
| 144 | +\setbeamercolor{itemize/enumerate subsubbody}{} | |
| 145 | + | |
| 146 | +\setbeamercolor{description item}{parent=item} | |
| 147 | + | |
| 148 | +\setbeamercolor{bibliography item}{parent=item} | |
| 149 | + | |
| 150 | +\setbeamercolor{bibliography entry author}{use=structure,fg=structure.fg} | |
| 151 | +\setbeamercolor{bibliography entry title}{use=normal text,fg=normal text.fg} | |
| 152 | +\setbeamercolor{bibliography entry location}{use=structure,fg=structure.fg!65!bg} | |
| 153 | +\setbeamercolor{bibliography entry note}{use=structure,fg=structure.fg!65!bg} | |
| 154 | + | |
| 155 | +\setbeamercolor{separation line}{} | |
| 156 | + | |
| 157 | +\setbeamercolor{upper separation line head}{parent=separation line} | |
| 158 | +\setbeamercolor{middle separation line head}{parent=separation line} | |
| 159 | +\setbeamercolor{lower separation line head}{parent=separation line} | |
| 160 | + | |
| 161 | +\setbeamercolor{upper separation line foot}{parent=separation line} | |
| 162 | +\setbeamercolor{middle separation line foot}{parent=separation line} | |
| 163 | +\setbeamercolor{lower separation line foot}{parent=separation line} | |
| 164 | + | |
| 165 | +\setbeamercolor{abstract}{} | |
| 166 | +\setbeamercolor{abstract title}{parent=structure} | |
| 167 | + | |
| 168 | +\setbeamercolor{verse}{} | |
| 169 | + | |
| 170 | +\setbeamercolor{quotation}{} | |
| 171 | +\setbeamercolor{quote}{parent=quotation} | |
| 172 | + | |
| 173 | +\setbeamercolor{page number in head/foot}{fg=fg!50!bg} | |
| 174 | + | |
| 175 | +\setbeamercolor{qed symbol}{parent=structure} | |
| 176 | + | |
| 177 | +\setbeamercolor{note page}{bg=white!90!black, fg=black} | |
| 178 | +\setbeamercolor{note title}{bg=white!80!black, fg=black} | |
| 179 | +\setbeamercolor{note date}{parent=note title} | |
| 180 | + | |
| 181 | +\mode | |
| 182 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/font/beamerfontthemeGiraldo.sty
0 → 100644
| ... | ... | @@ -0,0 +1,121 @@ |
| 1 | +% Copyright 2014 by Francisco Coelho | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | + | |
| 9 | +\mode<presentation> | |
| 10 | + | |
| 11 | +\setbeamerfont{normal text}{} % ignored currently | |
| 12 | +\setbeamerfont{alerted text}{} | |
| 13 | +\setbeamerfont{example text}{} | |
| 14 | + | |
| 15 | +\setbeamerfont{structure}{} | |
| 16 | +\setbeamerfont{tiny structure}{size=\tiny} | |
| 17 | + | |
| 18 | +\setbeamerfont{title}{size=\Large,parent=structure} | |
| 19 | +\setbeamerfont{title in head/foot}{} | |
| 20 | +\setbeamerfont{title in sidebar}{size=\tiny} | |
| 21 | + | |
| 22 | +\setbeamerfont{subtitle}{size=\normalsize,parent=title} | |
| 23 | + | |
| 24 | +\setbeamerfont{author}{} | |
| 25 | +\setbeamerfont{author in head/foot}{} | |
| 26 | +\setbeamerfont{author in sidebar}{size=\tiny} | |
| 27 | + | |
| 28 | +\setbeamerfont{institute}{size=\scriptsize} | |
| 29 | +\setbeamerfont{institute in head/foot}{} | |
| 30 | +\setbeamerfont{institute in sidebar}{} | |
| 31 | + | |
| 32 | +\setbeamerfont{date}{} | |
| 33 | +\setbeamerfont{date in head/foot}{} | |
| 34 | +\setbeamerfont{date in sidebar}{} | |
| 35 | + | |
| 36 | +\setbeamerfont{part name}{size=\LARGE} | |
| 37 | +\setbeamerfont{part title}{size=\LARGE,parent=title} | |
| 38 | + | |
| 39 | +\setbeamerfont{section name}{size=\Large} | |
| 40 | +\setbeamerfont{section title}{size=\Large,parent=title} | |
| 41 | + | |
| 42 | +\setbeamerfont{section in toc}{parent=structure} | |
| 43 | +\setbeamerfont{section in toc shaded}{parent=section in toc} | |
| 44 | +\setbeamerfont{section in head/foot}{} | |
| 45 | +\setbeamerfont{section in sidebar}{size=\tiny} | |
| 46 | +\setbeamerfont{section number projected}{size=\small,parent={section in toc,projected text}} | |
| 47 | + | |
| 48 | +\setbeamerfont{subsection name}{size=\large} | |
| 49 | +\setbeamerfont{subsection title}{size=\large,parent=title} | |
| 50 | + | |
| 51 | +\setbeamerfont{subsection in toc}{} | |
| 52 | +\setbeamerfont{subsection in toc shaded}{parent=subsection in toc} | |
| 53 | +\setbeamerfont{subsection in head/foot}{} | |
| 54 | +\setbeamerfont{subsection in sidebar}{} | |
| 55 | + | |
| 56 | +\setbeamerfont{subsubsection in toc}{size=\footnotesize} | |
| 57 | +\setbeamerfont{subsubsection in toc shaded}{parent=subsubsection in toc} | |
| 58 | +\setbeamerfont{subsubsection in head/foot}{} | |
| 59 | +\setbeamerfont{subsubsection in sidebar}{} | |
| 60 | + | |
| 61 | +\setbeamerfont{headline}{parent={tiny structure}} | |
| 62 | +\setbeamerfont{footline}{parent={tiny structure}} | |
| 63 | + | |
| 64 | +\setbeamerfont{sidebar}{size=\Tiny,parent={tiny structure}} | |
| 65 | +\setbeamerfont{sidebar left}{parent=sidebar} | |
| 66 | +\setbeamerfont{sidebar right}{parent=sidebar} | |
| 67 | + | |
| 68 | +\setbeamerfont{frametitle}{parent=structure,size=\Large} | |
| 69 | +\setbeamerfont{framesubtitle}{parent=frametitle,size=\footnotesize} | |
| 70 | + | |
| 71 | +\setbeamerfont{caption}{size=\small} | |
| 72 | +\setbeamerfont{caption name}{parent={structure,caption}} | |
| 73 | + | |
| 74 | +\setbeamerfont{button}{size=\tiny} | |
| 75 | + | |
| 76 | +\setbeamerfont{block body}{} | |
| 77 | +\setbeamerfont{block body alerted}{} | |
| 78 | +\setbeamerfont{block body example}{} | |
| 79 | +\setbeamerfont{block title}{size=\large,parent={structure,block body}} | |
| 80 | +\setbeamerfont{block title alerted}{parent={block title,alerted text}} | |
| 81 | +\setbeamerfont{block title example}{parent={block title,example text}} | |
| 82 | + | |
| 83 | +\setbeamerfont{item}{parent=structure} | |
| 84 | +\setbeamerfont{subitem}{parent=item} | |
| 85 | +\setbeamerfont{subsubitem}{parent=subitem} | |
| 86 | + | |
| 87 | +\setbeamerfont{item projected}{size=\tiny,parent={item,projected text}} | |
| 88 | +\setbeamerfont{subitem projected}{parent=item projected} | |
| 89 | +\setbeamerfont{subsubitem projected}{parent=subitem projected} | |
| 90 | + | |
| 91 | +\setbeamerfont{itemize item}{parent=item} | |
| 92 | +\setbeamerfont{itemize subitem}{parent=subitem} | |
| 93 | +\setbeamerfont{itemize subsubitem}{parent=subsubitem} | |
| 94 | + | |
| 95 | +\setbeamerfont{enumerate item}{parent=item} | |
| 96 | +\setbeamerfont{enumerate subitem}{parent=subitem} | |
| 97 | +\setbeamerfont{enumerate subsubitem}{parent=subsubitem} | |
| 98 | + | |
| 99 | +\setbeamerfont{itemize/enumerate body}{} | |
| 100 | +\setbeamerfont{itemize/enumerate subbody}{size=\small} | |
| 101 | +\setbeamerfont{itemize/enumerate subsubbody}{size=\footnotesize} | |
| 102 | + | |
| 103 | + | |
| 104 | +\setbeamerfont{description item}{parent=item} | |
| 105 | + | |
| 106 | +\setbeamerfont{projected text}{parent={tiny structure}} | |
| 107 | + | |
| 108 | +\setbeamerfont{abstract}{size=\small} | |
| 109 | +\setbeamerfont{abstract title}{parent={abstract,structure},size=\normalsize} | |
| 110 | + | |
| 111 | +\setbeamerfont{verse}{family=\rmfamily,shape=\itshape} | |
| 112 | + | |
| 113 | +\setbeamerfont{quotation}{shape=\itshape} | |
| 114 | +\setbeamerfont{quote}{parent=quotation} | |
| 115 | + | |
| 116 | +\setbeamerfont{note page}{size=\small} | |
| 117 | +\setbeamerfont{note title}{parent=note page} | |
| 118 | +\setbeamerfont{note date}{size=\footnotesize} | |
| 119 | + | |
| 120 | +\mode | |
| 121 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/font/beamerfontthemeLoios.sty
0 → 100644
| ... | ... | @@ -0,0 +1,125 @@ |
| 1 | +% Copyright 2007 by Till Tantau | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +% See the file doc/licenses/LICENSE for more details. | |
| 9 | + | |
| 10 | +\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/font/beamerfontthemedefault.sty,v 1686da3db3c9 2012/12/19 12:35:18 nicolas $ | |
| 11 | + | |
| 12 | + | |
| 13 | +\mode<presentation> | |
| 14 | + | |
| 15 | +\setbeamerfont{normal text}{} % ignored currently | |
| 16 | +\setbeamerfont{alerted text}{} | |
| 17 | +\setbeamerfont{example text}{} | |
| 18 | + | |
| 19 | +\setbeamerfont{structure}{} | |
| 20 | +\setbeamerfont{tiny structure}{size=\tiny} | |
| 21 | + | |
| 22 | +\setbeamerfont{title}{size=\Large,parent=structure} | |
| 23 | +\setbeamerfont{title in head/foot}{} | |
| 24 | +\setbeamerfont{title in sidebar}{size=\tiny} | |
| 25 | + | |
| 26 | +\setbeamerfont{subtitle}{size=\normalsize,parent=title} | |
| 27 | + | |
| 28 | +\setbeamerfont{author}{} | |
| 29 | +\setbeamerfont{author in head/foot}{} | |
| 30 | +\setbeamerfont{author in sidebar}{size=\tiny} | |
| 31 | + | |
| 32 | +\setbeamerfont{institute}{size=\scriptsize} | |
| 33 | +\setbeamerfont{institute in head/foot}{} | |
| 34 | +\setbeamerfont{institute in sidebar}{} | |
| 35 | + | |
| 36 | +\setbeamerfont{date}{} | |
| 37 | +\setbeamerfont{date in head/foot}{} | |
| 38 | +\setbeamerfont{date in sidebar}{} | |
| 39 | + | |
| 40 | +\setbeamerfont{part name}{size=\LARGE} | |
| 41 | +\setbeamerfont{part title}{size=\LARGE,parent=title} | |
| 42 | + | |
| 43 | +\setbeamerfont{section name}{size=\Large} | |
| 44 | +\setbeamerfont{section title}{size=\Large,parent=title} | |
| 45 | + | |
| 46 | +\setbeamerfont{section in toc}{parent=structure} | |
| 47 | +\setbeamerfont{section in toc shaded}{parent=section in toc} | |
| 48 | +\setbeamerfont{section in head/foot}{} | |
| 49 | +\setbeamerfont{section in sidebar}{size=\tiny} | |
| 50 | +\setbeamerfont{section number projected}{size=\small,parent={section in toc,projected text}} | |
| 51 | + | |
| 52 | +\setbeamerfont{subsection name}{size=\large} | |
| 53 | +\setbeamerfont{subsection title}{size=\large,parent=title} | |
| 54 | + | |
| 55 | +\setbeamerfont{subsection in toc}{} | |
| 56 | +\setbeamerfont{subsection in toc shaded}{parent=subsection in toc} | |
| 57 | +\setbeamerfont{subsection in head/foot}{} | |
| 58 | +\setbeamerfont{subsection in sidebar}{} | |
| 59 | + | |
| 60 | +\setbeamerfont{subsubsection in toc}{size=\footnotesize} | |
| 61 | +\setbeamerfont{subsubsection in toc shaded}{parent=subsubsection in toc} | |
| 62 | +\setbeamerfont{subsubsection in head/foot}{} | |
| 63 | +\setbeamerfont{subsubsection in sidebar}{} | |
| 64 | + | |
| 65 | +\setbeamerfont{headline}{parent={tiny structure}} | |
| 66 | +\setbeamerfont{footline}{parent={tiny structure}} | |
| 67 | + | |
| 68 | +\setbeamerfont{sidebar}{size=\Tiny,parent={tiny structure}} | |
| 69 | +\setbeamerfont{sidebar left}{parent=sidebar} | |
| 70 | +\setbeamerfont{sidebar right}{parent=sidebar} | |
| 71 | + | |
| 72 | +\setbeamerfont{frametitle}{parent=structure,size=\Large} | |
| 73 | +\setbeamerfont{framesubtitle}{parent=frametitle,size=\footnotesize} | |
| 74 | + | |
| 75 | +\setbeamerfont{caption}{size=\small} | |
| 76 | +\setbeamerfont{caption name}{parent={structure,caption}} | |
| 77 | + | |
| 78 | +\setbeamerfont{button}{size=\tiny} | |
| 79 | + | |
| 80 | +\setbeamerfont{block body}{} | |
| 81 | +\setbeamerfont{block body alerted}{} | |
| 82 | +\setbeamerfont{block body example}{} | |
| 83 | +\setbeamerfont{block title}{size=\large,parent={structure,block body}} | |
| 84 | +\setbeamerfont{block title alerted}{parent={block title,alerted text}} | |
| 85 | +\setbeamerfont{block title example}{parent={block title,example text}} | |
| 86 | + | |
| 87 | +\setbeamerfont{item}{parent=structure} | |
| 88 | +\setbeamerfont{subitem}{parent=item} | |
| 89 | +\setbeamerfont{subsubitem}{parent=subitem} | |
| 90 | + | |
| 91 | +\setbeamerfont{item projected}{size=\tiny,parent={item,projected text}} | |
| 92 | +\setbeamerfont{subitem projected}{parent=item projected} | |
| 93 | +\setbeamerfont{subsubitem projected}{parent=subitem projected} | |
| 94 | + | |
| 95 | +\setbeamerfont{itemize item}{parent=item} | |
| 96 | +\setbeamerfont{itemize subitem}{parent=subitem} | |
| 97 | +\setbeamerfont{itemize subsubitem}{parent=subsubitem} | |
| 98 | + | |
| 99 | +\setbeamerfont{enumerate item}{parent=item} | |
| 100 | +\setbeamerfont{enumerate subitem}{parent=subitem} | |
| 101 | +\setbeamerfont{enumerate subsubitem}{parent=subsubitem} | |
| 102 | + | |
| 103 | +\setbeamerfont{itemize/enumerate body}{} | |
| 104 | +\setbeamerfont{itemize/enumerate subbody}{size=\small} | |
| 105 | +\setbeamerfont{itemize/enumerate subsubbody}{size=\footnotesize} | |
| 106 | + | |
| 107 | + | |
| 108 | +\setbeamerfont{description item}{parent=item} | |
| 109 | + | |
| 110 | +\setbeamerfont{projected text}{parent={tiny structure}} | |
| 111 | + | |
| 112 | +\setbeamerfont{abstract}{size=\small} | |
| 113 | +\setbeamerfont{abstract title}{parent={abstract,structure},size=\normalsize} | |
| 114 | + | |
| 115 | +\setbeamerfont{verse}{family=\rmfamily,shape=\itshape} | |
| 116 | + | |
| 117 | +\setbeamerfont{quotation}{shape=\itshape} | |
| 118 | +\setbeamerfont{quote}{parent=quotation} | |
| 119 | + | |
| 120 | +\setbeamerfont{note page}{size=\small} | |
| 121 | +\setbeamerfont{note title}{parent=note page} | |
| 122 | +\setbeamerfont{note date}{size=\footnotesize} | |
| 123 | + | |
| 124 | +\mode | |
| 125 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/inner/beamerinnerthemeGiraldo.sty
0 → 100644
| ... | ... | @@ -0,0 +1,447 @@ |
| 1 | +% Copyright 2014 by Francisco Coelho | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | + | |
| 9 | +\mode<presentation> | |
| 10 | + | |
| 11 | +% Some images: | |
| 12 | + | |
| 13 | +\pgfdeclareimage[width=14pt,height=12pt]{beamericonbook}{beamericonbook} | |
| 14 | +\pgfdeclareimage[width=14pt,height=12pt]{beamericonbookshaded}{beamericonbook.20} | |
| 15 | +\pgfaliasimage{beamericonbook.!20opaque}{beamericonbookshaded} | |
| 16 | +\pgfaliasimage{beamericonbook.!15opaque}{beamericonbookshaded} | |
| 17 | +\pgfaliasimage{beamericonbook.!10opaque}{beamericonbookshaded} | |
| 18 | +\pgfaliasimage{beamericonbook.!5opaque}{beamericonbookshaded} | |
| 19 | +\pgfaliasimage{beamericonbook.!2opaque}{beamericonbookshaded} | |
| 20 | +\pgfdeclareimage[width=11pt,height=14pt]{beamericonarticle}{beamericonarticle} | |
| 21 | +\pgfdeclareimage[width=11pt,height=14pt]{beamericonarticleshaded}{beamericonarticle.20} | |
| 22 | +\pgfaliasimage{beamericonarticle.!20opaque}{beamericonarticleshaded} | |
| 23 | +\pgfaliasimage{beamericonarticle.!15opaque}{beamericonarticleshaded} | |
| 24 | +\pgfaliasimage{beamericonarticle.!10opaque}{beamericonarticleshaded} | |
| 25 | +\pgfaliasimage{beamericonarticle.!5opaque}{beamericonarticleshaded} | |
| 26 | +\pgfaliasimage{beamericonarticle.!2opaque}{beamericonarticleshaded} | |
| 27 | +\pgfdeclareimage[width=14pt,height=14pt]{beamericononline}{beamericononline} | |
| 28 | +\pgfdeclareimage[width=14pt,height=14pt]{beamericononlineshaded}{beamericononline.20} | |
| 29 | +\pgfaliasimage{beamericononline.!20opaque}{beamericononlineshaded} | |
| 30 | +\pgfaliasimage{beamericononline.!15opaque}{beamericononlineshaded} | |
| 31 | +\pgfaliasimage{beamericononline.!10opaque}{beamericononlineshaded} | |
| 32 | +\pgfaliasimage{beamericononline.!5opaque}{beamericononlineshaded} | |
| 33 | +\pgfaliasimage{beamericononline.!2opaque}{beamericononlineshaded} | |
| 34 | + | |
| 35 | +% Title page: default | |
| 36 | + | |
| 37 | +\defbeamertemplate*{title page}{default}[1][] | |
| 38 | +{ | |
| 39 | + \vbox{} | |
| 40 | + \vfill | |
| 41 | + \begingroup | |
| 42 | + \centering | |
| 43 | + \begin{beamercolorbox}[sep=8pt,center,#1]{title} | |
| 44 | + \usebeamerfont{title}\inserttitle\par% | |
| 45 | + \ifx\insertsubtitle\@empty% | |
| 46 | + \else% | |
| 47 | + \vskip0.25em% | |
| 48 | + {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}% | |
| 49 | + \fi% | |
| 50 | + \end{beamercolorbox}% | |
| 51 | + \vskip1em\par | |
| 52 | + \begin{beamercolorbox}[sep=8pt,center,#1]{author} | |
| 53 | + \usebeamerfont{author}\insertauthor | |
| 54 | + \end{beamercolorbox} | |
| 55 | + \begin{beamercolorbox}[sep=8pt,center,#1]{institute} | |
| 56 | + \usebeamerfont{institute}\insertinstitute | |
| 57 | + \end{beamercolorbox} | |
| 58 | + \begin{beamercolorbox}[sep=8pt,center,#1]{date} | |
| 59 | + \usebeamerfont{date}\insertdate | |
| 60 | + \end{beamercolorbox}\vskip0.5em | |
| 61 | + {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par} | |
| 62 | + \endgroup | |
| 63 | + \vfill | |
| 64 | +} | |
| 65 | + | |
| 66 | + | |
| 67 | +% Part page: default | |
| 68 | + | |
| 69 | +\defbeamertemplate*{part page}{default}[1][] | |
| 70 | +{ | |
| 71 | + \begingroup | |
| 72 | + \centering | |
| 73 | + {\usebeamerfont{part name}\usebeamercolor[fg]{part name}\partname~\insertromanpartnumber} | |
| 74 | + \vskip1em\par | |
| 75 | + \begin{beamercolorbox}[sep=16pt,center,#1]{part title} | |
| 76 | + \usebeamerfont{part title}\insertpart\par | |
| 77 | + \end{beamercolorbox} | |
| 78 | + \endgroup | |
| 79 | +} | |
| 80 | + | |
| 81 | + | |
| 82 | +% Section page: default | |
| 83 | + | |
| 84 | +\defbeamertemplate*{section page}{default}[1][] | |
| 85 | +{ | |
| 86 | + \begingroup | |
| 87 | + \setbeamertemplate{footline}[] | |
| 88 | + \setbeamercolor{background canvas}{bg=ue-red} | |
| 89 | + \logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{university-logo-inverted}}}} | |
| 90 | + \centering | |
| 91 | + {\usebeamerfont{section name}\usebeamercolor[fg]{section name}\sectionname~\insertsectionnumber} | |
| 92 | + \vskip1em\par | |
| 93 | + \begin{beamercolorbox}[sep=12pt,center,#1]{part title} | |
| 94 | + \usebeamerfont{section title}\insertsection\par | |
| 95 | + \end{beamercolorbox} | |
| 96 | + \endgroup | |
| 97 | +} | |
| 98 | + | |
| 99 | +% Subsection page: default | |
| 100 | + | |
| 101 | +\defbeamertemplate*{subsection page}{default}[1][] | |
| 102 | +{ | |
| 103 | + \begingroup | |
| 104 | + \centering | |
| 105 | + {\usebeamerfont{subsection name}\usebeamercolor[fg]{subsection name}\subsectionname~\insertsubsectionnumber} | |
| 106 | + \vskip1em\par | |
| 107 | + \begin{beamercolorbox}[sep=8pt,center,#1]{part title} | |
| 108 | + \usebeamerfont{subsection title}\insertsubsection\par | |
| 109 | + \end{beamercolorbox} | |
| 110 | + \endgroup | |
| 111 | +} | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | +% | |
| 117 | +% Table of contents | |
| 118 | +% | |
| 119 | + | |
| 120 | +\defbeamertemplateparent{sections/subsections in toc}{section in toc,subsection in toc,subsubsection in toc} | |
| 121 | +{} | |
| 122 | + | |
| 123 | +\defbeamertemplateparent{sections/subsections in toc shaded}{section in toc shaded,subsection in toc shaded,subsubsection in toc shaded}[1][20] | |
| 124 | +{[#1]} | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | +% (sub-)section in toc: default | |
| 130 | + | |
| 131 | +\defbeamertemplate*{section in toc}{default} | |
| 132 | +{\inserttocsection\par} | |
| 133 | + | |
| 134 | +\defbeamertemplate*{subsection in toc}{default} | |
| 135 | +{\leavevmode\leftskip=1.5em\inserttocsubsection\par} | |
| 136 | + | |
| 137 | +\defbeamertemplate*{subsubsection in toc}{default} | |
| 138 | +{\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em% | |
| 139 | + \usebeamerfont{subsubsection in toc}\inserttocsubsubsection\par} | |
| 140 | + | |
| 141 | + | |
| 142 | +% (sub-)section in toc shaded, default | |
| 143 | + | |
| 144 | +\defbeamertemplate*{section in toc shaded}{default}[1][20] | |
| 145 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{section in toc}\end{colormixin}\unskip} | |
| 146 | + | |
| 147 | +\defbeamertemplate*{subsection in toc shaded}{default}[1][20] | |
| 148 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsection in toc}\end{colormixin}\unskip} | |
| 149 | + | |
| 150 | +\defbeamertemplate*{subsubsection in toc shaded}{default}[1][20] | |
| 151 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsubsection in toc}\end{colormixin}\unskip} | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | +% | |
| 158 | +% Item | |
| 159 | +% | |
| 160 | + | |
| 161 | +\defbeamertemplateparent{items}{itemize items,enumerate items} | |
| 162 | +{} | |
| 163 | + | |
| 164 | + | |
| 165 | +% Itemize items | |
| 166 | + | |
| 167 | +\defbeamertemplateparent{itemize items}{itemize item,itemize subitem,itemize subsubitem} | |
| 168 | +{} | |
| 169 | + | |
| 170 | + | |
| 171 | +% Itemize items, default | |
| 172 | + | |
| 173 | +\defbeamertemplate*{itemize item}{default}{\scriptsize\raise1.25pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 174 | +\defbeamertemplate*{itemize subitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 175 | +\defbeamertemplate*{itemize subsubitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 176 | + | |
| 177 | + | |
| 178 | +% Enumerate items, default | |
| 179 | + | |
| 180 | +\defbeamertemplateparent{enumerate items}{enumerate item,enumerate subitem,enumerate subsubitem,enumerate mini} | |
| 181 | +{} | |
| 182 | + | |
| 183 | +\defbeamertemplate*{enumerate item}{default}{\insertenumlabel.} | |
| 184 | +\defbeamertemplate*{enumerate subitem}{default}{\insertenumlabel.\insertsubenumlabel} | |
| 185 | +\defbeamertemplate*{enumerate subsubitem}{default}{\insertenumlabel.\insertsubenumlabel.\insertsubsubenumlabel} | |
| 186 | +\defbeamertemplate*{enumerate mini template}{default}{\insertenumlabel} | |
| 187 | + | |
| 188 | + | |
| 189 | +% Description item width | |
| 190 | + | |
| 191 | +\defbeamertemplate*{description item}{default}{\insertdescriptionitem} | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | +% Itemize/Enumerate body | |
| 196 | + | |
| 197 | +\defbeamertemplate*{itemize/enumerate body begin}{default}{} | |
| 198 | +\defbeamertemplate*{itemize/enumerate body end}{default}{} | |
| 199 | + | |
| 200 | +\defbeamertemplate*{itemize/enumerate subbody begin}{default}{} | |
| 201 | +\defbeamertemplate*{itemize/enumerate subbody end}{default}{} | |
| 202 | + | |
| 203 | +\defbeamertemplate*{itemize/enumerate subsubbody begin}{default}{} | |
| 204 | +\defbeamertemplate*{itemize/enumerate subsubbody end}{default}{} | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | +% Alerted text | |
| 209 | + | |
| 210 | +\defbeamertemplate*{alerted text begin}{default}{\setbeamercolor{local structure}{parent=alerted text}} | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | +% Structured text | |
| 215 | + | |
| 216 | +% empyt defaults | |
| 217 | + | |
| 218 | + | |
| 219 | +% Bibliography items | |
| 220 | + | |
| 221 | +\defbeamertemplate*{bibliography item}{default} | |
| 222 | +{\lower3.5pt\hbox{\hskip2pt\pgfuseimage{beamericonarticle}\hskip1pt}} | |
| 223 | + | |
| 224 | +\defbeamertemplate*{bibliography entry article}{default}{} | |
| 225 | +\defbeamertemplate*{bibliography entry title}{default}{\par} | |
| 226 | +\defbeamertemplate*{bibliography entry location}{default}{\par} | |
| 227 | +\defbeamertemplate*{bibliography entry note}{default}{\par} | |
| 228 | + | |
| 229 | + | |
| 230 | +% Buttons | |
| 231 | + | |
| 232 | +\newdimen\beamer@dima% | |
| 233 | +\newdimen\beamer@dimb% | |
| 234 | + | |
| 235 | +\defbeamertemplate*{button}{default} | |
| 236 | +{% | |
| 237 | + \setbox\beamer@tempbox=\hbox{{\insertbuttontext}}% | |
| 238 | + \ht\beamer@tempbox=6pt% | |
| 239 | + \dp\beamer@tempbox=0pt% | |
| 240 | + \setbox\beamer@tempbox=\vbox{\box\beamer@tempbox\vskip2pt}% | |
| 241 | + \beamer@tempdim=\wd\beamer@tempbox% | |
| 242 | + \beamer@dima=\beamer@tempdim\advance\beamer@dima by2.2pt | |
| 243 | + \beamer@dimb=\beamer@tempdim\advance\beamer@dimb by4pt | |
| 244 | + \begin{pgfpicture}{-4pt}{0pt}{\the\beamer@tempdim}{8pt} | |
| 245 | + \color{bg} | |
| 246 | + \pgfsetlinewidth{0.8pt} | |
| 247 | + \pgfpathqmoveto{0pt}{0pt} | |
| 248 | + \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} | |
| 249 | + \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} | |
| 250 | + \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} | |
| 251 | + \pgfpathcurveto% | |
| 252 | + {\pgfpoint{\the\beamer@dima}{8pt}}% | |
| 253 | + {\pgfpoint{\the\beamer@dimb}{6.2pt}}% | |
| 254 | + {\pgfpoint{\the\beamer@dimb}{4pt}} | |
| 255 | + \pgfpathcurveto% | |
| 256 | + {\pgfpoint{\the\beamer@dimb}{1.8pt}}% | |
| 257 | + {\pgfpoint{\the\beamer@dima}{0pt}}% | |
| 258 | + {\pgfpoint{\the\beamer@tempdim}{0pt}} | |
| 259 | + \pgfpathclose | |
| 260 | + \pgfusepathqfill | |
| 261 | + \colorlet{bg}{parent.bg} | |
| 262 | + \usebeamercolor[fg]{button border} | |
| 263 | + \pgfpathqmoveto{0pt}{0pt} | |
| 264 | + \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} | |
| 265 | + \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} | |
| 266 | + \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} | |
| 267 | + \pgfpathcurveto% | |
| 268 | + {\pgfpoint{\the\beamer@dima}{8pt}}% | |
| 269 | + {\pgfpoint{\the\beamer@dimb}{6.2pt}}% | |
| 270 | + {\pgfpoint{\the\beamer@dimb}{4pt}} | |
| 271 | + \pgfpathcurveto% | |
| 272 | + {\pgfpoint{\the\beamer@dimb}{1.8pt}}% | |
| 273 | + {\pgfpoint{\the\beamer@dima}{0pt}}% | |
| 274 | + {\pgfpoint{\the\beamer@tempdim}{0pt}} | |
| 275 | + \pgfpathclose | |
| 276 | + \pgfusepathqstroke | |
| 277 | + \end{pgfpicture}% | |
| 278 | + \hskip-\beamer@tempdim% | |
| 279 | + \box\beamer@tempbox% | |
| 280 | + \kern4pt% | |
| 281 | +} | |
| 282 | + | |
| 283 | + | |
| 284 | +% Abstract | |
| 285 | + | |
| 286 | +\defbeamertemplate*{abstract title}{default} | |
| 287 | +{% | |
| 288 | + \begin{center}% | |
| 289 | + \abstractname | |
| 290 | + \end{center}% | |
| 291 | +} | |
| 292 | + | |
| 293 | +\defbeamertemplate*{abstract begin}{default} | |
| 294 | +{\beamercolorbox[vmode]{abstract}\leftskip2em\rightskip2em plus 1fill\usebeamerfont*{abstract}} | |
| 295 | + | |
| 296 | +\defbeamertemplate*{abstract end}{default} | |
| 297 | +{\medskip\endbeamercolorbox} | |
| 298 | + | |
| 299 | + | |
| 300 | +% Verse | |
| 301 | + | |
| 302 | +\defbeamertemplate*{verse begin}{default} | |
| 303 | +{\beamercolorbox[vmode]{verse}} | |
| 304 | + | |
| 305 | +\defbeamertemplate*{verse end}{default} | |
| 306 | +{\endbeamercolorbox} | |
| 307 | + | |
| 308 | + | |
| 309 | +% Quotation | |
| 310 | + | |
| 311 | +\defbeamertemplate*{quotation begin}{default} | |
| 312 | +{\beamercolorbox[vmode]{quotation}} | |
| 313 | + | |
| 314 | +\defbeamertemplate*{quotation end}{default} | |
| 315 | +{\endbeamercolorbox} | |
| 316 | + | |
| 317 | + | |
| 318 | +% Quote | |
| 319 | + | |
| 320 | +\defbeamertemplate*{quote begin}{default} | |
| 321 | +{\beamercolorbox[vmode]{quote}} | |
| 322 | + | |
| 323 | +\defbeamertemplate*{quote end}{default} | |
| 324 | +{\endbeamercolorbox} | |
| 325 | + | |
| 326 | + | |
| 327 | +% Footnotes | |
| 328 | + | |
| 329 | +\defbeamertemplate*{footnote}{default} | |
| 330 | +{ | |
| 331 | + \parindent 1em\noindent% | |
| 332 | + \raggedright | |
| 333 | + \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par% | |
| 334 | +} | |
| 335 | + | |
| 336 | + | |
| 337 | +% Captions | |
| 338 | + | |
| 339 | +\defbeamertemplate*{caption}{default} | |
| 340 | +{% | |
| 341 | + \raggedright | |
| 342 | + {% | |
| 343 | + \usebeamercolor[fg]{caption name}% | |
| 344 | + \usebeamerfont*{caption name}% | |
| 345 | + \insertcaptionname | |
| 346 | + \usebeamertemplate{caption label separator}% | |
| 347 | + }% | |
| 348 | + \insertcaption\par | |
| 349 | +} | |
| 350 | +\defbeamertemplate*{caption label separator}{default}{: } | |
| 351 | + | |
| 352 | +% Blocks | |
| 353 | + | |
| 354 | +\defbeamertemplateparent{blocks}{block begin,block end,% | |
| 355 | + block alerted begin,block alerted end,% | |
| 356 | + block example begin,block example end} | |
| 357 | +{} | |
| 358 | + | |
| 359 | +\defbeamertemplate*{block begin}{default} | |
| 360 | +{ | |
| 361 | + \par\vskip\medskipamount% | |
| 362 | + \begin{beamercolorbox}[colsep*=.75ex]{block title} | |
| 363 | + \usebeamerfont*{block title}\insertblocktitle% | |
| 364 | + \end{beamercolorbox}% | |
| 365 | + {\parskip0pt\par}% | |
| 366 | + \ifbeamercolorempty[bg]{block title} | |
| 367 | + {} | |
| 368 | + {\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 369 | + \usebeamerfont{block body}% | |
| 370 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body}% | |
| 371 | + \ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 372 | +} | |
| 373 | +\defbeamertemplate*{block end}{default} | |
| 374 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 375 | + | |
| 376 | +\defbeamertemplate*{block alerted begin}{default} | |
| 377 | +{ | |
| 378 | + \par\vskip\medskipamount% | |
| 379 | + \begin{beamercolorbox}[colsep*=.75ex]{block title alerted} | |
| 380 | + \usebeamerfont*{block title alerted}\insertblocktitle% | |
| 381 | + \end{beamercolorbox}% | |
| 382 | + {\parskip0pt\par}% | |
| 383 | + \ifbeamercolorempty[bg]{block title alerted} | |
| 384 | + {} | |
| 385 | + {\ifbeamercolorempty[bg]{block body alerted}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 386 | + \usebeamerfont{block body alerted}% | |
| 387 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body alerted}% | |
| 388 | + \ifbeamercolorempty[bg]{block body alerted}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 389 | +} | |
| 390 | + | |
| 391 | +\defbeamertemplate*{block alerted end}{default} | |
| 392 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 393 | + | |
| 394 | + | |
| 395 | +\defbeamertemplate*{block example begin}{default} | |
| 396 | +{ | |
| 397 | + \par\vskip\medskipamount% | |
| 398 | + \begin{beamercolorbox}[colsep*=.75ex]{block title example} | |
| 399 | + \usebeamerfont*{block title example}\insertblocktitle% | |
| 400 | + \end{beamercolorbox}% | |
| 401 | + {\parskip0pt\par}% | |
| 402 | + \ifbeamercolorempty[bg]{block title example} | |
| 403 | + {} | |
| 404 | + {\ifbeamercolorempty[bg]{block body example}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 405 | + \usebeamerfont{block body example}% | |
| 406 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body example}% | |
| 407 | + \ifbeamercolorempty[bg]{block body example}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 408 | +} | |
| 409 | +\defbeamertemplate*{block example end}{default} | |
| 410 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | +% Theorems | |
| 416 | + | |
| 417 | +\defbeamertemplateparent{theorems}{theorem begin,theorem end} | |
| 418 | +{} | |
| 419 | + | |
| 420 | +\defbeamertemplate*{theorem begin}{default} | |
| 421 | +{% | |
| 422 | + \begin{\inserttheoremblockenv} | |
| 423 | + {% | |
| 424 | + \inserttheoremname | |
| 425 | + \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% | |
| 426 | + }% | |
| 427 | +} | |
| 428 | + | |
| 429 | +\defbeamertemplate*{theorem end}{default} | |
| 430 | +{\end{\inserttheoremblockenv}} | |
| 431 | + | |
| 432 | + | |
| 433 | +% Proofs | |
| 434 | +\defbeamertemplate*{proof begin}{default} | |
| 435 | +{\begin{block}{\insertproofname}} | |
| 436 | + | |
| 437 | +\defbeamertemplate*{proof end}{default} | |
| 438 | +{\end{block}} | |
| 439 | + | |
| 440 | +\defbeamertemplate*{qed symbol}{default} | |
| 441 | +{\openbox} | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | +\mode | |
| 447 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/inner/beamerinnerthemeLoios.sty
0 → 100644
| ... | ... | @@ -0,0 +1,448 @@ |
| 1 | +% Copyright 2007 by Till Tantau | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +% See the file doc/licenses/LICENSE for more details. | |
| 9 | + | |
| 10 | +\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/inner/beamerinnerthemedefault.sty,v 65cb471f9634 2013/10/15 06:36:03 joseph $ | |
| 11 | + | |
| 12 | + | |
| 13 | +\mode<presentation> | |
| 14 | + | |
| 15 | +% Some images: | |
| 16 | + | |
| 17 | +\pgfdeclareimage[width=14pt,height=12pt]{beamericonbook}{beamericonbook} | |
| 18 | +\pgfdeclareimage[width=14pt,height=12pt]{beamericonbookshaded}{beamericonbook.20} | |
| 19 | +\pgfaliasimage{beamericonbook.!20opaque}{beamericonbookshaded} | |
| 20 | +\pgfaliasimage{beamericonbook.!15opaque}{beamericonbookshaded} | |
| 21 | +\pgfaliasimage{beamericonbook.!10opaque}{beamericonbookshaded} | |
| 22 | +\pgfaliasimage{beamericonbook.!5opaque}{beamericonbookshaded} | |
| 23 | +\pgfaliasimage{beamericonbook.!2opaque}{beamericonbookshaded} | |
| 24 | +\pgfdeclareimage[width=11pt,height=14pt]{beamericonarticle}{beamericonarticle} | |
| 25 | +\pgfdeclareimage[width=11pt,height=14pt]{beamericonarticleshaded}{beamericonarticle.20} | |
| 26 | +\pgfaliasimage{beamericonarticle.!20opaque}{beamericonarticleshaded} | |
| 27 | +\pgfaliasimage{beamericonarticle.!15opaque}{beamericonarticleshaded} | |
| 28 | +\pgfaliasimage{beamericonarticle.!10opaque}{beamericonarticleshaded} | |
| 29 | +\pgfaliasimage{beamericonarticle.!5opaque}{beamericonarticleshaded} | |
| 30 | +\pgfaliasimage{beamericonarticle.!2opaque}{beamericonarticleshaded} | |
| 31 | +\pgfdeclareimage[width=14pt,height=14pt]{beamericononline}{beamericononline} | |
| 32 | +\pgfdeclareimage[width=14pt,height=14pt]{beamericononlineshaded}{beamericononline.20} | |
| 33 | +\pgfaliasimage{beamericononline.!20opaque}{beamericononlineshaded} | |
| 34 | +\pgfaliasimage{beamericononline.!15opaque}{beamericononlineshaded} | |
| 35 | +\pgfaliasimage{beamericononline.!10opaque}{beamericononlineshaded} | |
| 36 | +\pgfaliasimage{beamericononline.!5opaque}{beamericononlineshaded} | |
| 37 | +\pgfaliasimage{beamericononline.!2opaque}{beamericononlineshaded} | |
| 38 | + | |
| 39 | +% Title page: default | |
| 40 | + | |
| 41 | +\defbeamertemplate*{title page}{default}[1][] | |
| 42 | +{ | |
| 43 | + \vbox{} | |
| 44 | + \vfill | |
| 45 | + \begingroup | |
| 46 | + \centering | |
| 47 | + \begin{beamercolorbox}[sep=8pt,center,#1]{title} | |
| 48 | + \usebeamerfont{title}\inserttitle\par% | |
| 49 | + \ifx\insertsubtitle\@empty% | |
| 50 | + \else% | |
| 51 | + \vskip0.25em% | |
| 52 | + {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}% | |
| 53 | + \fi% | |
| 54 | + \end{beamercolorbox}% | |
| 55 | + \vskip1em\par | |
| 56 | + \begin{beamercolorbox}[sep=8pt,center,#1]{author} | |
| 57 | + \usebeamerfont{author}\insertauthor | |
| 58 | + \end{beamercolorbox} | |
| 59 | + \begin{beamercolorbox}[sep=8pt,center,#1]{institute} | |
| 60 | + \usebeamerfont{institute}\insertinstitute | |
| 61 | + \end{beamercolorbox} | |
| 62 | + \begin{beamercolorbox}[sep=8pt,center,#1]{date} | |
| 63 | + \usebeamerfont{date}\insertdate | |
| 64 | + \end{beamercolorbox}\vskip0.5em | |
| 65 | + {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par} | |
| 66 | + \endgroup | |
| 67 | + \vfill | |
| 68 | +} | |
| 69 | + | |
| 70 | + | |
| 71 | +% Part page: default | |
| 72 | + | |
| 73 | +\defbeamertemplate*{part page}{default}[1][] | |
| 74 | +{ | |
| 75 | + \begingroup | |
| 76 | + \centering | |
| 77 | + {\usebeamerfont{part name}\usebeamercolor[fg]{part name}\partname~\insertromanpartnumber} | |
| 78 | + \vskip1em\par | |
| 79 | + \begin{beamercolorbox}[sep=16pt,center,#1]{part title} | |
| 80 | + \usebeamerfont{part title}\insertpart\par | |
| 81 | + \end{beamercolorbox} | |
| 82 | + \endgroup | |
| 83 | +} | |
| 84 | + | |
| 85 | + | |
| 86 | +% Section page: default | |
| 87 | + | |
| 88 | +\defbeamertemplate*{section page}{default}[1][] | |
| 89 | +{ | |
| 90 | + \begingroup | |
| 91 | + \centering | |
| 92 | + {\usebeamerfont{section name}\usebeamercolor[fg]{section name}\sectionname~\insertsectionnumber} | |
| 93 | + \vskip1em\par | |
| 94 | + \begin{beamercolorbox}[sep=12pt,center,#1]{part title} | |
| 95 | + \usebeamerfont{section title}\insertsection\par | |
| 96 | + \end{beamercolorbox} | |
| 97 | + \endgroup | |
| 98 | +} | |
| 99 | + | |
| 100 | +% Subection page: default | |
| 101 | + | |
| 102 | +\defbeamertemplate*{subsection page}{default}[1][] | |
| 103 | +{ | |
| 104 | + \begingroup | |
| 105 | + \centering | |
| 106 | + {\usebeamerfont{subsection name}\usebeamercolor[fg]{subsection name}\subsectionname~\insertsubsectionnumber} | |
| 107 | + \vskip1em\par | |
| 108 | + \begin{beamercolorbox}[sep=8pt,center,#1]{part title} | |
| 109 | + \usebeamerfont{subsection title}\insertsubsection\par | |
| 110 | + \end{beamercolorbox} | |
| 111 | + \endgroup | |
| 112 | +} | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | +% | |
| 118 | +% Table of contents | |
| 119 | +% | |
| 120 | + | |
| 121 | +\defbeamertemplateparent{sections/subsections in toc}{section in toc,subsection in toc,subsubsection in toc} | |
| 122 | +{} | |
| 123 | + | |
| 124 | +\defbeamertemplateparent{sections/subsections in toc shaded}{section in toc shaded,subsection in toc shaded,subsubsection in toc shaded}[1][20] | |
| 125 | +{[#1]} | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | +% (sub-)section in toc: default | |
| 131 | + | |
| 132 | +\defbeamertemplate*{section in toc}{default} | |
| 133 | +{\inserttocsection\par} | |
| 134 | + | |
| 135 | +\defbeamertemplate*{subsection in toc}{default} | |
| 136 | +{\leavevmode\leftskip=1.5em\inserttocsubsection\par} | |
| 137 | + | |
| 138 | +\defbeamertemplate*{subsubsection in toc}{default} | |
| 139 | +{\leavevmode\normalsize\usebeamerfont{subsection in toc}\leftskip=3em% | |
| 140 | + \usebeamerfont{subsubsection in toc}\inserttocsubsubsection\par} | |
| 141 | + | |
| 142 | + | |
| 143 | +% (sub-)section in toc shaded, default | |
| 144 | + | |
| 145 | +\defbeamertemplate*{section in toc shaded}{default}[1][20] | |
| 146 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{section in toc}\end{colormixin}\unskip} | |
| 147 | + | |
| 148 | +\defbeamertemplate*{subsection in toc shaded}{default}[1][20] | |
| 149 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsection in toc}\end{colormixin}\unskip} | |
| 150 | + | |
| 151 | +\defbeamertemplate*{subsubsection in toc shaded}{default}[1][20] | |
| 152 | +{\begin{colormixin}{#1!parent.bg}\usebeamertemplate{subsubsection in toc}\end{colormixin}\unskip} | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | +% | |
| 159 | +% Item | |
| 160 | +% | |
| 161 | + | |
| 162 | +\defbeamertemplateparent{items}{itemize items,enumerate items} | |
| 163 | +{} | |
| 164 | + | |
| 165 | + | |
| 166 | +% Itemize items | |
| 167 | + | |
| 168 | +\defbeamertemplateparent{itemize items}{itemize item,itemize subitem,itemize subsubitem} | |
| 169 | +{} | |
| 170 | + | |
| 171 | + | |
| 172 | +% Itemize items, default | |
| 173 | + | |
| 174 | +\defbeamertemplate*{itemize item}{default}{\scriptsize\raise1.25pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 175 | +\defbeamertemplate*{itemize subitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 176 | +\defbeamertemplate*{itemize subsubitem}{default}{\tiny\raise1.5pt\hbox{\donotcoloroutermaths$\blacktriangleright$}} | |
| 177 | + | |
| 178 | + | |
| 179 | +% Enumerate items, default | |
| 180 | + | |
| 181 | +\defbeamertemplateparent{enumerate items}{enumerate item,enumerate subitem,enumerate subsubitem,enumerate mini} | |
| 182 | +{} | |
| 183 | + | |
| 184 | +\defbeamertemplate*{enumerate item}{default}{\insertenumlabel.} | |
| 185 | +\defbeamertemplate*{enumerate subitem}{default}{\insertenumlabel.\insertsubenumlabel} | |
| 186 | +\defbeamertemplate*{enumerate subsubitem}{default}{\insertenumlabel.\insertsubenumlabel.\insertsubsubenumlabel} | |
| 187 | +\defbeamertemplate*{enumerate mini template}{default}{\insertenumlabel} | |
| 188 | + | |
| 189 | + | |
| 190 | +% Description item width | |
| 191 | + | |
| 192 | +\defbeamertemplate*{description item}{default}{\insertdescriptionitem} | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | +% Itemize/Enumerate body | |
| 197 | + | |
| 198 | +\defbeamertemplate*{itemize/enumerate body begin}{default}{} | |
| 199 | +\defbeamertemplate*{itemize/enumerate body end}{default}{} | |
| 200 | + | |
| 201 | +\defbeamertemplate*{itemize/enumerate subbody begin}{default}{} | |
| 202 | +\defbeamertemplate*{itemize/enumerate subbody end}{default}{} | |
| 203 | + | |
| 204 | +\defbeamertemplate*{itemize/enumerate subsubbody begin}{default}{} | |
| 205 | +\defbeamertemplate*{itemize/enumerate subsubbody end}{default}{} | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | +% Alerted text | |
| 210 | + | |
| 211 | +\defbeamertemplate*{alerted text begin}{default}{\setbeamercolor{local structure}{parent=alerted text}} | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | +% Structured text | |
| 216 | + | |
| 217 | +% empyt defaults | |
| 218 | + | |
| 219 | + | |
| 220 | +% Bibliography items | |
| 221 | + | |
| 222 | +\defbeamertemplate*{bibliography item}{default} | |
| 223 | +{\lower3.5pt\hbox{\hskip2pt\pgfuseimage{beamericonarticle}\hskip1pt}} | |
| 224 | + | |
| 225 | +\defbeamertemplate*{bibliography entry article}{default}{} | |
| 226 | +\defbeamertemplate*{bibliography entry title}{default}{\par} | |
| 227 | +\defbeamertemplate*{bibliography entry location}{default}{\par} | |
| 228 | +\defbeamertemplate*{bibliography entry note}{default}{\par} | |
| 229 | + | |
| 230 | + | |
| 231 | +% Buttons | |
| 232 | + | |
| 233 | +\newdimen\beamer@dima% | |
| 234 | +\newdimen\beamer@dimb% | |
| 235 | + | |
| 236 | +\defbeamertemplate*{button}{default} | |
| 237 | +{% | |
| 238 | + \setbox\beamer@tempbox=\hbox{{\insertbuttontext}}% | |
| 239 | + \ht\beamer@tempbox=6pt% | |
| 240 | + \dp\beamer@tempbox=0pt% | |
| 241 | + \setbox\beamer@tempbox=\vbox{\box\beamer@tempbox\vskip2pt}% | |
| 242 | + \beamer@tempdim=\wd\beamer@tempbox% | |
| 243 | + \beamer@dima=\beamer@tempdim\advance\beamer@dima by2.2pt | |
| 244 | + \beamer@dimb=\beamer@tempdim\advance\beamer@dimb by4pt | |
| 245 | + \begin{pgfpicture}{-4pt}{0pt}{\the\beamer@tempdim}{8pt} | |
| 246 | + \color{bg} | |
| 247 | + \pgfsetlinewidth{0.8pt} | |
| 248 | + \pgfpathqmoveto{0pt}{0pt} | |
| 249 | + \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} | |
| 250 | + \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} | |
| 251 | + \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} | |
| 252 | + \pgfpathcurveto% | |
| 253 | + {\pgfpoint{\the\beamer@dima}{8pt}}% | |
| 254 | + {\pgfpoint{\the\beamer@dimb}{6.2pt}}% | |
| 255 | + {\pgfpoint{\the\beamer@dimb}{4pt}} | |
| 256 | + \pgfpathcurveto% | |
| 257 | + {\pgfpoint{\the\beamer@dimb}{1.8pt}}% | |
| 258 | + {\pgfpoint{\the\beamer@dima}{0pt}}% | |
| 259 | + {\pgfpoint{\the\beamer@tempdim}{0pt}} | |
| 260 | + \pgfpathclose | |
| 261 | + \pgfusepathqfill | |
| 262 | + \colorlet{bg}{parent.bg} | |
| 263 | + \usebeamercolor[fg]{button border} | |
| 264 | + \pgfpathqmoveto{0pt}{0pt} | |
| 265 | + \pgfpathqcurveto{-2.2pt}{0pt}{-4pt}{1.8pt}{-4pt}{4pt} | |
| 266 | + \pgfpathqcurveto{-4pt}{6.2pt}{-2.2pt}{8pt}{0pt}{8pt} | |
| 267 | + \pgfpathlineto{\pgfpoint{\the\beamer@tempdim}{8pt}} | |
| 268 | + \pgfpathcurveto% | |
| 269 | + {\pgfpoint{\the\beamer@dima}{8pt}}% | |
| 270 | + {\pgfpoint{\the\beamer@dimb}{6.2pt}}% | |
| 271 | + {\pgfpoint{\the\beamer@dimb}{4pt}} | |
| 272 | + \pgfpathcurveto% | |
| 273 | + {\pgfpoint{\the\beamer@dimb}{1.8pt}}% | |
| 274 | + {\pgfpoint{\the\beamer@dima}{0pt}}% | |
| 275 | + {\pgfpoint{\the\beamer@tempdim}{0pt}} | |
| 276 | + \pgfpathclose | |
| 277 | + \pgfusepathqstroke | |
| 278 | + \end{pgfpicture}% | |
| 279 | + \hskip-\beamer@tempdim% | |
| 280 | + \box\beamer@tempbox% | |
| 281 | + \kern4pt% | |
| 282 | +} | |
| 283 | + | |
| 284 | + | |
| 285 | +% Abstract | |
| 286 | + | |
| 287 | +\defbeamertemplate*{abstract title}{default} | |
| 288 | +{% | |
| 289 | + \begin{center}% | |
| 290 | + \abstractname | |
| 291 | + \end{center}% | |
| 292 | +} | |
| 293 | + | |
| 294 | +\defbeamertemplate*{abstract begin}{default} | |
| 295 | +{\beamercolorbox[vmode]{abstract}\leftskip2em\rightskip2em plus 1fill\usebeamerfont*{abstract}} | |
| 296 | + | |
| 297 | +\defbeamertemplate*{abstract end}{default} | |
| 298 | +{\medskip\endbeamercolorbox} | |
| 299 | + | |
| 300 | + | |
| 301 | +% Verse | |
| 302 | + | |
| 303 | +\defbeamertemplate*{verse begin}{default} | |
| 304 | +{\beamercolorbox[vmode]{verse}} | |
| 305 | + | |
| 306 | +\defbeamertemplate*{verse end}{default} | |
| 307 | +{\endbeamercolorbox} | |
| 308 | + | |
| 309 | + | |
| 310 | +% Quotation | |
| 311 | + | |
| 312 | +\defbeamertemplate*{quotation begin}{default} | |
| 313 | +{\beamercolorbox[vmode]{quotation}} | |
| 314 | + | |
| 315 | +\defbeamertemplate*{quotation end}{default} | |
| 316 | +{\endbeamercolorbox} | |
| 317 | + | |
| 318 | + | |
| 319 | +% Quote | |
| 320 | + | |
| 321 | +\defbeamertemplate*{quote begin}{default} | |
| 322 | +{\beamercolorbox[vmode]{quote}} | |
| 323 | + | |
| 324 | +\defbeamertemplate*{quote end}{default} | |
| 325 | +{\endbeamercolorbox} | |
| 326 | + | |
| 327 | + | |
| 328 | +% Footnotes | |
| 329 | + | |
| 330 | +\defbeamertemplate*{footnote}{default} | |
| 331 | +{ | |
| 332 | + \parindent 1em\noindent% | |
| 333 | + \raggedright | |
| 334 | + \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par% | |
| 335 | +} | |
| 336 | + | |
| 337 | + | |
| 338 | +% Captions | |
| 339 | + | |
| 340 | +\defbeamertemplate*{caption}{default} | |
| 341 | +{% | |
| 342 | + \raggedright | |
| 343 | + {% | |
| 344 | + \usebeamercolor[fg]{caption name}% | |
| 345 | + \usebeamerfont*{caption name}% | |
| 346 | + \insertcaptionname | |
| 347 | + \usebeamertemplate{caption label separator}% | |
| 348 | + }% | |
| 349 | + \insertcaption\par | |
| 350 | +} | |
| 351 | +\defbeamertemplate*{caption label separator}{default}{: } | |
| 352 | + | |
| 353 | +% Blocks | |
| 354 | + | |
| 355 | +\defbeamertemplateparent{blocks}{block begin,block end,% | |
| 356 | + block alerted begin,block alerted end,% | |
| 357 | + block example begin,block example end} | |
| 358 | +{} | |
| 359 | + | |
| 360 | +\defbeamertemplate*{block begin}{default} | |
| 361 | +{ | |
| 362 | + \par\vskip\medskipamount% | |
| 363 | + \begin{beamercolorbox}[colsep*=.75ex]{block title} | |
| 364 | + \usebeamerfont*{block title}\insertblocktitle% | |
| 365 | + \end{beamercolorbox}% | |
| 366 | + {\parskip0pt\par}% | |
| 367 | + \ifbeamercolorempty[bg]{block title} | |
| 368 | + {} | |
| 369 | + {\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 370 | + \usebeamerfont{block body}% | |
| 371 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body}% | |
| 372 | + \ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 373 | +} | |
| 374 | +\defbeamertemplate*{block end}{default} | |
| 375 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 376 | + | |
| 377 | +\defbeamertemplate*{block alerted begin}{default} | |
| 378 | +{ | |
| 379 | + \par\vskip\medskipamount% | |
| 380 | + \begin{beamercolorbox}[colsep*=.75ex]{block title alerted} | |
| 381 | + \usebeamerfont*{block title alerted}\insertblocktitle% | |
| 382 | + \end{beamercolorbox}% | |
| 383 | + {\parskip0pt\par}% | |
| 384 | + \ifbeamercolorempty[bg]{block title alerted} | |
| 385 | + {} | |
| 386 | + {\ifbeamercolorempty[bg]{block body alerted}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 387 | + \usebeamerfont{block body alerted}% | |
| 388 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body alerted}% | |
| 389 | + \ifbeamercolorempty[bg]{block body alerted}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 390 | +} | |
| 391 | + | |
| 392 | +\defbeamertemplate*{block alerted end}{default} | |
| 393 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 394 | + | |
| 395 | + | |
| 396 | +\defbeamertemplate*{block example begin}{default} | |
| 397 | +{ | |
| 398 | + \par\vskip\medskipamount% | |
| 399 | + \begin{beamercolorbox}[colsep*=.75ex]{block title example} | |
| 400 | + \usebeamerfont*{block title example}\insertblocktitle% | |
| 401 | + \end{beamercolorbox}% | |
| 402 | + {\parskip0pt\par}% | |
| 403 | + \ifbeamercolorempty[bg]{block title example} | |
| 404 | + {} | |
| 405 | + {\ifbeamercolorempty[bg]{block body example}{}{\nointerlineskip\vskip-0.5pt}}% | |
| 406 | + \usebeamerfont{block body example}% | |
| 407 | + \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body example}% | |
| 408 | + \ifbeamercolorempty[bg]{block body example}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | |
| 409 | +} | |
| 410 | +\defbeamertemplate*{block example end}{default} | |
| 411 | +{\end{beamercolorbox}\vskip\smallskipamount} | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
| 415 | + | |
| 416 | +% Theorems | |
| 417 | + | |
| 418 | +\defbeamertemplateparent{theorems}{theorem begin,theorem end} | |
| 419 | +{} | |
| 420 | + | |
| 421 | +\defbeamertemplate*{theorem begin}{default} | |
| 422 | +{% | |
| 423 | + \begin{\inserttheoremblockenv} | |
| 424 | + {% | |
| 425 | + \inserttheoremname | |
| 426 | + \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% | |
| 427 | + }% | |
| 428 | +} | |
| 429 | + | |
| 430 | +\defbeamertemplate*{theorem end}{default} | |
| 431 | +{\end{\inserttheoremblockenv}} | |
| 432 | + | |
| 433 | + | |
| 434 | +% Proofs | |
| 435 | +\defbeamertemplate*{proof begin}{default} | |
| 436 | +{\begin{block}{\insertproofname}} | |
| 437 | + | |
| 438 | +\defbeamertemplate*{proof end}{default} | |
| 439 | +{\end{block}} | |
| 440 | + | |
| 441 | +\defbeamertemplate*{qed symbol}{default} | |
| 442 | +{\openbox} | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | +\mode | |
| 448 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/outer/beamerouterthemeGiraldo.sty
0 → 100644
| ... | ... | @@ -0,0 +1,51 @@ |
| 1 | +% Copyright 2014 by Francisco Coelho | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | + | |
| 9 | +\mode<presentation> | |
| 10 | + | |
| 11 | +\setbeamercolor*{author in head/foot}{parent=palette tertiary} | |
| 12 | +\setbeamercolor*{title in head/foot}{parent=palette secondary} | |
| 13 | +\setbeamercolor*{date in head/foot}{parent=palette primary} | |
| 14 | + | |
| 15 | +\setbeamercolor*{section in head/foot}{parent=palette tertiary} | |
| 16 | +\setbeamercolor*{subsection in head/foot}{parent=palette primary} | |
| 17 | + | |
| 18 | +\defbeamertemplate*{footline}{infolines theme} | |
| 19 | +{ | |
| 20 | + \leavevmode% | |
| 21 | + \hbox{% | |
| 22 | + \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% | |
| 23 | + \usebeamerfont{author in head/foot}\insertshortauthor\expandafter\beamer@ifempty\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)} | |
| 24 | + \end{beamercolorbox}% | |
| 25 | + \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% | |
| 26 | + \usebeamerfont{title in head/foot}\insertshorttitle | |
| 27 | + \end{beamercolorbox}% | |
| 28 | + \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% | |
| 29 | + \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} | |
| 30 | + \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} | |
| 31 | + \end{beamercolorbox}}% | |
| 32 | + \vskip0pt% | |
| 33 | +} | |
| 34 | + | |
| 35 | +\defbeamertemplate*{headline}{infolines theme} | |
| 36 | +{ | |
| 37 | + \leavevmode% | |
| 38 | + \hbox{% | |
| 39 | + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,right]{section in head/foot}% | |
| 40 | + \usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex} | |
| 41 | + \end{beamercolorbox}% | |
| 42 | + \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,left]{subsection in head/foot}% | |
| 43 | + \usebeamerfont{subsection in head/foot}\hspace*{2ex}\insertsubsectionhead | |
| 44 | + \end{beamercolorbox}}% | |
| 45 | + \vskip0pt% | |
| 46 | +} | |
| 47 | + | |
| 48 | +\setbeamersize{text margin left=1em,text margin right=1em} | |
| 49 | + | |
| 50 | +\mode | |
| 51 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/outer/beamerouterthemeLoios.sty
0 → 100644
| ... | ... | @@ -0,0 +1,237 @@ |
| 1 | +% Copyright 2007 by Till Tantau | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +% See the file doc/licenses/LICENSE for more details. | |
| 9 | + | |
| 10 | +\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemedefault.sty,v 1686da3db3c9 2012/12/19 12:35:18 nicolas $ | |
| 11 | + | |
| 12 | + | |
| 13 | +\mode<presentation> | |
| 14 | + | |
| 15 | + | |
| 16 | +% Mini frames | |
| 17 | + | |
| 18 | +\defbeamertemplateparent{mini frames} | |
| 19 | + {mini frame,mini frame in current section,mini frame in current subsection} | |
| 20 | +{} | |
| 21 | + | |
| 22 | +\defbeamertemplate*{mini frame}{default} | |
| 23 | +{% | |
| 24 | + \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} | |
| 25 | + \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} | |
| 26 | + \pgfusepath{fill,stroke} | |
| 27 | + \end{pgfpicture}% | |
| 28 | +} | |
| 29 | +[action] | |
| 30 | +{ | |
| 31 | + \setbeamersize{mini frame size=.14cm,mini frame offset=.03cm} | |
| 32 | +} | |
| 33 | + | |
| 34 | +\defbeamertemplate*{mini frame in current section}{default} | |
| 35 | +{% | |
| 36 | + \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} | |
| 37 | + \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} | |
| 38 | + \pgfusepath{stroke} | |
| 39 | + \end{pgfpicture}% | |
| 40 | +} | |
| 41 | + | |
| 42 | +\defbeamertemplate*{mini frame in current subsection}{default} | |
| 43 | +{% | |
| 44 | + \begin{pgfpicture}{0pt}{0pt}{0.1cm}{0.1cm} | |
| 45 | + \pgfpathcircle{\pgfpoint{0.05cm}{0.05cm}}{0.05cm} | |
| 46 | + \pgfusepath{stroke} | |
| 47 | + \end{pgfpicture}% | |
| 48 | +} | |
| 49 | + | |
| 50 | +\defbeamertemplate*{mini frame in other section}{default}[1][50] | |
| 51 | +{\color{fg!#1!bg}\usebeamertemplate{mini frame in current section}} | |
| 52 | +\defbeamertemplate*{mini frame in other subsection}{default}[1][50] | |
| 53 | +{\color{fg!#1!bg}\usebeamertemplate{mini frame in current subsection}} | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | +% Navigation symbols | |
| 59 | + | |
| 60 | +\defbeamertemplate*{navigation symbols}{default} | |
| 61 | +{% | |
| 62 | + \hbox{% | |
| 63 | + \hbox{\insertslidenavigationsymbol} | |
| 64 | + \hbox{\insertframenavigationsymbol} | |
| 65 | + \hbox{\insertsubsectionnavigationsymbol} | |
| 66 | + \hbox{\insertsectionnavigationsymbol} | |
| 67 | + \hbox{\insertdocnavigationsymbol} | |
| 68 | + \hbox{\insertbackfindforwardnavigationsymbol}% | |
| 69 | + }% | |
| 70 | +} | |
| 71 | + | |
| 72 | +% No navigation symbols in handout or trans mode: | |
| 73 | +\only<handout| trans>{\setbeamertemplate{navigation symbols}{}} | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | +% Section and subsections in head/foot | |
| 78 | + | |
| 79 | +\defbeamertemplate*{section in head/foot}{default} | |
| 80 | +{\insertsectionhead} | |
| 81 | + | |
| 82 | +\defbeamertemplate*{section in head/foot shaded}{default}[1][50] | |
| 83 | +{\color{fg!#1!bg}\usebeamertemplate{section in head/foot}} | |
| 84 | + | |
| 85 | +\defbeamertemplate*{subsection in head/foot}{default} | |
| 86 | +{\insertsubsectionhead} | |
| 87 | + | |
| 88 | +\defbeamertemplate*{subsection in head/foot shaded}{default}[1][50] | |
| 89 | +{\color{fg!#1!bg}\usebeamertemplate{subsection in head/foot}} | |
| 90 | + | |
| 91 | +\defbeamertemplate*{subsubsection in head/foot}{default} | |
| 92 | +{\insertsubsubsectionhead} | |
| 93 | + | |
| 94 | +\defbeamertemplate*{subsubsection in head/foot shaded}{default}[1][50] | |
| 95 | +{\color{fg!#1!bg}\usebeamertemplate{subsubsection in head/foot}} | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | +% Headline and footline | |
| 102 | + | |
| 103 | +\defbeamertemplate*{headline}{default} | |
| 104 | +{} | |
| 105 | + | |
| 106 | +\defbeamertemplate*{footline}{default} | |
| 107 | +{} | |
| 108 | + | |
| 109 | + | |
| 110 | +% background | |
| 111 | + | |
| 112 | +\defbeamertemplate*{background}{default} | |
| 113 | +{} | |
| 114 | + | |
| 115 | +\defbeamertemplate*{background canvas}{default} | |
| 116 | +{% | |
| 117 | + \ifbeamercolorempty[bg]{background canvas}{}{\color{bg}\vrule width\paperwidth height\paperheight}% | |
| 118 | +} | |
| 119 | + | |
| 120 | + | |
| 121 | +% Sidebar | |
| 122 | + | |
| 123 | +\defbeamertemplate*{sidebar left}{default} | |
| 124 | +{} | |
| 125 | + | |
| 126 | +\defbeamertemplate*{sidebar right}{default} | |
| 127 | +{ | |
| 128 | + \vfill% | |
| 129 | + \llap{\insertlogo\hskip0.1cm}% | |
| 130 | + \vskip2pt% | |
| 131 | + \llap{\usebeamertemplate***{navigation symbols}\hskip0.1cm}% | |
| 132 | + \vskip2pt% | |
| 133 | +} | |
| 134 | + | |
| 135 | +\defbeamertemplate*{sidebar canvas left}{default} | |
| 136 | +{% | |
| 137 | + \ifbeamercolorempty[bg]{sidebar left}{} | |
| 138 | + {\color{bg}\vrule height\sidebarheight width\beamer@leftsidebar}% | |
| 139 | +} | |
| 140 | + | |
| 141 | +\defbeamertemplate*{sidebar canvas right}{default} | |
| 142 | +{% | |
| 143 | + \ifbeamercolorempty[bg]{sidebar right}{} | |
| 144 | + {\color{bg}\vrule height\sidebarheight width\beamer@rightsidebar}% | |
| 145 | +} | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | +% Frame title: default | |
| 150 | + | |
| 151 | +\defbeamertemplate*{frametitle}{default}[1][left] | |
| 152 | +{ | |
| 153 | + \ifbeamercolorempty[bg]{frametitle}{}{\nointerlineskip}% | |
| 154 | + \@tempdima=\textwidth% | |
| 155 | + \advance\@tempdima by\beamer@leftmargin% | |
| 156 | + \advance\@tempdima by\beamer@rightmargin% | |
| 157 | + \begin{beamercolorbox}[sep=0.3cm,#1,wd=\the\@tempdima]{frametitle} | |
| 158 | + \usebeamerfont{frametitle}% | |
| 159 | + \vbox{}\vskip-1ex% | |
| 160 | + \if@tempswa\else\csname beamer@fte#1\endcsname\fi% | |
| 161 | + \strut\insertframetitle\strut\par% | |
| 162 | + {% | |
| 163 | + \ifx\insertframesubtitle\@empty% | |
| 164 | + \else% | |
| 165 | + {\usebeamerfont{framesubtitle}\usebeamercolor[fg]{framesubtitle}\insertframesubtitle\strut\par}% | |
| 166 | + \fi | |
| 167 | + }% | |
| 168 | + \vskip-1ex% | |
| 169 | + \if@tempswa\else\vskip-.3cm\fi% set inside beamercolorbox... evil here... | |
| 170 | + \end{beamercolorbox}% | |
| 171 | +} | |
| 172 | + | |
| 173 | +\def\beamer@fteright{\vskip0.35cm\advance\leftskip by 1.7cm\advance\rightskip by1.7cm} | |
| 174 | + | |
| 175 | + | |
| 176 | +% Frame title continuations, default | |
| 177 | + | |
| 178 | +\defbeamertemplate*{frametitle continuation}{default}{\insertcontinuationcountroman} | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | +% Notes | |
| 183 | + | |
| 184 | +\defbeamertemplate*{note page}{default} | |
| 185 | +{% | |
| 186 | + {% | |
| 187 | + \scriptsize | |
| 188 | + \usebeamerfont{note title}\usebeamercolor[fg]{note title}% | |
| 189 | + \ifbeamercolorempty[bg]{note title}{}{% | |
| 190 | + \insertvrule{.25\paperheight}{note title.bg}% | |
| 191 | + \vskip-.25\paperheight% | |
| 192 | + \nointerlineskip% | |
| 193 | + }% | |
| 194 | + \vbox{ | |
| 195 | + \hfill\insertslideintonotes{0.25}\hskip-\Gm@rmargin\hskip0pt% | |
| 196 | + \vskip-0.25\paperheight% | |
| 197 | + \nointerlineskip | |
| 198 | + \begin{pgfpicture}{0cm}{0cm}{0cm}{0cm} | |
| 199 | + \begin{pgflowlevelscope}{\pgftransformrotate{90}} | |
| 200 | + {\pgftransformshift{\pgfpoint{-2cm}{0.2cm}}% | |
| 201 | + \pgftext[base,left]{\usebeamerfont{note date}\usebeamercolor[fg]{note date}\the\year-\ifnum\month<10\relax0\fi\the\month-\ifnum\day<10\relax0\fi\the\day}} | |
| 202 | + \end{pgflowlevelscope} | |
| 203 | + \end{pgfpicture}} | |
| 204 | + \nointerlineskip | |
| 205 | + \vbox to .25\paperheight{\vskip0.5em | |
| 206 | + \hbox{\insertshorttitle[width=8cm]}% | |
| 207 | + \setbox\beamer@tempbox=\hbox{\insertsection}% | |
| 208 | + \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip4pt\raise3pt\hbox{\vrule | |
| 209 | + width0.4pt height7pt\vrule width 9pt | |
| 210 | + height0.4pt}}\hskip1pt\hbox{\begin{minipage}[t]{7.5cm}\def\breakhere{}\insertsection\end{minipage}}\fi% | |
| 211 | + }% | |
| 212 | + \setbox\beamer@tempbox=\hbox{\insertsubsection}% | |
| 213 | + \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip17.4pt\raise3pt\hbox{\vrule | |
| 214 | + width0.4pt height7pt\vrule width 9pt | |
| 215 | + height0.4pt}}\hskip1pt\hbox{\begin{minipage}[t]{7.5cm}\def\breakhere{}\insertsubsection\end{minipage}}\fi% | |
| 216 | + }% | |
| 217 | + \setbox\beamer@tempbox=\hbox{\insertshortframetitle}% | |
| 218 | + \hbox{\ifdim\wd\beamer@tempbox>1pt{\hskip30.8pt\raise3pt\hbox{\vrule | |
| 219 | + width0.4pt height7pt\vrule width 9pt | |
| 220 | + height0.4pt}}\hskip1pt\hbox{\insertshortframetitle[width=7cm]}\fi% | |
| 221 | + }% | |
| 222 | + \vfil}% | |
| 223 | + }% | |
| 224 | + \ifbeamercolorempty[bg]{note page}{}{% | |
| 225 | + \nointerlineskip% | |
| 226 | + \insertvrule{.75\paperheight}{note page.bg}% | |
| 227 | + \vskip-.75\paperheight% | |
| 228 | + }% | |
| 229 | + \vskip.25em | |
| 230 | + \nointerlineskip | |
| 231 | + \insertnote | |
| 232 | +} | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | +\mode | |
| 237 | +<all> | ... | ... |
texmf/tex/latex/beamer/themes/theme/beamerthemeGiraldo.sty
0 → 100644
| ... | ... | @@ -0,0 +1,52 @@ |
| 1 | +% Copyright 2014 by Francisco Coelho | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +\mode<presentation> | |
| 9 | +% | |
| 10 | +% \DeclareOptionBeamer{nosidebar}{\PassOptionsToPackage{nosidebar}{beamerouterthemeGiraldo}} | |
| 11 | +% \DeclareOptionBeamer{hideothersubsections}{\PassOptionsToPackage{hideothersubsections}{beamerouterthemeGiraldo}} | |
| 12 | +% | |
| 13 | +\newif\ifhidesections | |
| 14 | +\hidesectionsfalse | |
| 15 | +% | |
| 16 | +\DeclareOptionBeamer{hidesections}[true]{\csname hidesections#1\endcsname} | |
| 17 | +\DeclareOptionBeamer{strongtitles}{\PassOptionsToPackage{strongtitles}{beamercolorthemeGiraldo}} | |
| 18 | +\ProcessOptionsBeamer | |
| 19 | +% | |
| 20 | +\pgfdeclareimage[width=64pt]{university-logo}{logo_horizontal_duas_linhas} | |
| 21 | +\pgfdeclareimage[width=64pt]{university-logo-inverted}{logo_horizontal_duas_linhas_invertido} | |
| 22 | +\logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{university-logo}}}} | |
| 23 | +% | |
| 24 | +\ifhidesections | |
| 25 | +\else | |
| 26 | + \AtBeginSection[] {% | |
| 27 | + \begingroup% | |
| 28 | + \setbeamertemplate{footline}[]% | |
| 29 | + \setbeamercolor{background canvas}{bg=ue-red} | |
| 30 | + \setbeamercolor{section in toc shaded}{fg=black} | |
| 31 | + \setbeamercolor{section in toc}{fg=white} | |
| 32 | + \logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{university-logo-inverted}}}} | |
| 33 | + \begin{frame}<beamer> | |
| 34 | + \tableofcontents[currentsection] | |
| 35 | + \end{frame} | |
| 36 | + \endgroup | |
| 37 | + } | |
| 38 | +\fi | |
| 39 | + | |
| 40 | +\usecolortheme{Giraldo} | |
| 41 | +\usefonttheme{default} | |
| 42 | +\useinnertheme{default} | |
| 43 | +\useoutertheme{Giraldo} | |
| 44 | + | |
| 45 | +\setbeamertemplate{headline}{} | |
| 46 | +\setbeamertemplate{footline}[frame number] | |
| 47 | +\setbeamertemplate{navigation symbols}{} | |
| 48 | +\let\Tiny=\tiny | |
| 49 | +\mode | |
| 50 | +<all> | |
| 51 | + | |
| 52 | + | ... | ... |
texmf/tex/latex/beamer/themes/theme/beamerthemeLoios.sty
0 → 100644
| ... | ... | @@ -0,0 +1,19 @@ |
| 1 | +% Copyright 2007 by Till Tantau | |
| 2 | +% | |
| 3 | +% This file may be distributed and/or modified | |
| 4 | +% | |
| 5 | +% 1. under the LaTeX Project Public License and/or | |
| 6 | +% 2. under the GNU Public License. | |
| 7 | +% | |
| 8 | +% See the file doc/licenses/LICENSE for more details. | |
| 9 | + | |
| 10 | + | |
| 11 | +\mode<presentation> | |
| 12 | + | |
| 13 | +\usefonttheme{Loios} | |
| 14 | +\usecolortheme{Loios} | |
| 15 | +\useinnertheme{Loios} | |
| 16 | +\useoutertheme{Loios} | |
| 17 | + | |
| 18 | +\mode | |
| 19 | +<all> | ... | ... |
themes/color/beamercolorthemDiana.sty
| ... | ... | @@ -1,54 +0,0 @@ |
| 1 | -% Copyright 2014 by Francisco Coelho | |
| 2 | -% | |
| 3 | -% This file may be distributed and/or modified | |
| 4 | -% | |
| 5 | -% 1. under the LaTeX Project Public License and/or | |
| 6 | -% 2. under the GNU Public License. | |
| 7 | -% | |
| 8 | -% See the file doc/licenses/LICENSE for more details. | |
| 9 | - | |
| 10 | -\setbeamercolor*{normal text}{fg=black,bg=white} | |
| 11 | - | |
| 12 | -\DeclareOption{overlystylish} | |
| 13 | -{ | |
| 14 | - \def\beamer@cta@do{ | |
| 15 | - \setbeamertemplate{background canvas}[vertical shading][bottom=black,top=black,middle=blue!50!black] | |
| 16 | - } | |
| 17 | -} | |
| 18 | -\ProcessOptions | |
| 19 | - | |
| 20 | -\@ifundefined{beamer@cta@do}{}{\beamer@cta@do} | |
| 21 | - | |
| 22 | -\mode<presentation> | |
| 23 | - | |
| 24 | -\setbeamercolor*{example text}{fg=green!65!black} | |
| 25 | - | |
| 26 | -\setbeamercolor*{structure}{fg=blue!25!white} | |
| 27 | - | |
| 28 | -\setbeamercolor{palette primary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!75!black} | |
| 29 | -\setbeamercolor{palette secondary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!60!black} | |
| 30 | -\setbeamercolor{palette tertiary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!45!black} | |
| 31 | -\setbeamercolor{palette quaternary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!30!black} | |
| 32 | - | |
| 33 | -\setbeamercolor*{block body}{bg=normal text.bg!90!black} | |
| 34 | -\setbeamercolor*{block body alerted}{bg=normal text.bg!90!black} | |
| 35 | -\setbeamercolor*{block body example}{bg=normal text.bg!90!black} | |
| 36 | -\setbeamercolor*{block title}{parent=structure,bg=normal text.bg!75!black} | |
| 37 | -\setbeamercolor*{block title alerted}{use={normal text,alerted text},fg=alerted text.fg!75!normal text.fg,bg=normal text.bg!75!black} | |
| 38 | -\setbeamercolor*{block title example}{use={normal text,example text},fg=example text.fg!75!normal text.fg,bg=normal text.bg!75!black} | |
| 39 | - | |
| 40 | -\setbeamercolor{item projected}{fg=black} | |
| 41 | - | |
| 42 | -\setbeamercolor*{sidebar}{parent=palette primary} | |
| 43 | - | |
| 44 | -\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} | |
| 45 | -\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} | |
| 46 | -\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} | |
| 47 | -\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} | |
| 48 | - | |
| 49 | -\setbeamercolor*{separation line}{} | |
| 50 | -\setbeamercolor*{fine separation line}{} | |
| 51 | - | |
| 52 | - | |
| 53 | -\mode | |
| 54 | -<all> |
themes/color/beamercolorthemeDiana.sty
| ... | ... | @@ -1,51 +0,0 @@ |
| 1 | -% Copyright 2014 by Francisco Coelho | |
| 2 | -% | |
| 3 | -% This file may be distributed and/or modified | |
| 4 | -% | |
| 5 | -% 1. under the LaTeX Project Public License and/or | |
| 6 | -% 2. under the GNU Public License. | |
| 7 | -% | |
| 8 | -% See the file doc/licenses/LICENSE for more details. | |
| 9 | - | |
| 10 | -\definecolor{ue-red}{RGB}{158 27 50} | |
| 11 | -\definecolor{ue-gray}{RGB}{88 89 91} | |
| 12 | -\definecolor{ue-grey}{RGB}{88 89 91} | |
| 13 | -\definecolor{ue-black}{RGB}{0 0 0} | |
| 14 | - | |
| 15 | -\setbeamercolor*{normal text}{fg=black,bg=white} | |
| 16 | -\setbeamercolor*{alerted text}{fg=ue-red,bg=white} | |
| 17 | -\setbeamercolor*{title}{fg=ue-red} | |
| 18 | - | |
| 19 | -\@ifundefined{beamer@cta@do}{}{\beamer@cta@do} | |
| 20 | - | |
| 21 | -\mode<presentation> | |
| 22 | - | |
| 23 | -\setbeamercolor*{example text}{fg=ue-red!65!black} | |
| 24 | -\setbeamercolor*{structure}{fg=ue-grey} | |
| 25 | -\setbeamercolor{palette primary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!75!black} | |
| 26 | -\setbeamercolor{palette secondary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!60!black} | |
| 27 | -\setbeamercolor{palette tertiary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!45!black} | |
| 28 | -\setbeamercolor{palette quaternary}{use={structure,normal text},fg=structure.fg,bg=normal text.bg!30!black} | |
| 29 | -\setbeamercolor*{frametitle}{fg=ue-red} | |
| 30 | -\setbeamercolor*{block body}{bg=normal text.bg!90!black} | |
| 31 | -\setbeamercolor*{block body alerted}{bg=normal text.bg!90!black} | |
| 32 | -\setbeamercolor*{block body example}{bg=normal text.bg!90!black} | |
| 33 | -\setbeamercolor*{block title}{parent=structure,bg=ue-red,fg=white} | |
| 34 | -\setbeamercolor*{block title alerted}{use={normal text,alerted text},fg=alerted text.fg!75!normal text.fg,bg=normal text.bg!75!black} | |
| 35 | -\setbeamercolor*{block title example}{use={normal text,example text},fg=example text.fg!75!normal text.fg,bg=normal text.bg!75!black} | |
| 36 | - | |
| 37 | -\setbeamercolor{item projected}{fg=black} | |
| 38 | - | |
| 39 | -\setbeamercolor*{sidebar}{parent=palette primary} | |
| 40 | - | |
| 41 | -\setbeamercolor{palette sidebar primary}{use=normal text,fg=normal text.fg} | |
| 42 | -\setbeamercolor{palette sidebar secondary}{use=structure,fg=structure.fg} | |
| 43 | -\setbeamercolor{palette sidebar tertiary}{use=normal text,fg=normal text.fg} | |
| 44 | -\setbeamercolor{palette sidebar quaternary}{use=structure,fg=structure.fg} | |
| 45 | - | |
| 46 | -\setbeamercolor*{separation line}{} | |
| 47 | -\setbeamercolor*{fine separation line}{} | |
| 48 | - | |
| 49 | - | |
| 50 | -\mode | |
| 51 | -<all> |
themes/outer/beamerouterthemeRossio.sty
| ... | ... | @@ -1,55 +0,0 @@ |
| 1 | -% Copyright 2007 by Till Tantau | |
| 2 | -% | |
| 3 | -% This file may be distributed and/or modified | |
| 4 | -% | |
| 5 | -% 1. under the LaTeX Project Public License and/or | |
| 6 | -% 2. under the GNU Public License. | |
| 7 | -% | |
| 8 | -% See the file doc/licenses/LICENSE for more details. | |
| 9 | - | |
| 10 | -\ProvidesPackageRCS $Header: /Users/joseph/Documents/LaTeX/beamer/base/themes/outer/beamerouterthemeinfolines.sty,v 51a8c72084af 2012/10/16 20:17:59 joseph $ | |
| 11 | - | |
| 12 | - | |
| 13 | -\mode<presentation> | |
| 14 | - | |
| 15 | -\setbeamercolor*{author in head/foot}{parent=palette tertiary} | |
| 16 | -\setbeamercolor*{title in head/foot}{parent=palette secondary} | |
| 17 | -\setbeamercolor*{date in head/foot}{parent=palette primary} | |
| 18 | - | |
| 19 | -\setbeamercolor*{section in head/foot}{parent=palette tertiary} | |
| 20 | -\setbeamercolor*{subsection in head/foot}{parent=palette primary} | |
| 21 | - | |
| 22 | -\defbeamertemplate*{footline}{infolines theme} | |
| 23 | -{ | |
| 24 | - \leavevmode% | |
| 25 | - \hbox{% | |
| 26 | - \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% | |
| 27 | - \usebeamerfont{author in head/foot}\insertshortauthor\expandafter\beamer@ifempty\expandafter{\beamer@shortinstitute}{}{~~(\insertshortinstitute)} | |
| 28 | - \end{beamercolorbox}% | |
| 29 | - \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% | |
| 30 | - \usebeamerfont{title in head/foot}\insertshorttitle | |
| 31 | - \end{beamercolorbox}% | |
| 32 | - \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% | |
| 33 | - \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} | |
| 34 | - \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} | |
| 35 | - \end{beamercolorbox}}% | |
| 36 | - \vskip0pt% | |
| 37 | -} | |
| 38 | - | |
| 39 | -\defbeamertemplate*{headline}{infolines theme} | |
| 40 | -{ | |
| 41 | - \leavevmode% | |
| 42 | - \hbox{% | |
| 43 | - \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,right]{section in head/foot}% | |
| 44 | - \usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex} | |
| 45 | - \end{beamercolorbox}% | |
| 46 | - \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.65ex,dp=1.5ex,left]{subsection in head/foot}% | |
| 47 | - \usebeamerfont{subsection in head/foot}\hspace*{2ex}\insertsubsectionhead | |
| 48 | - \end{beamercolorbox}}% | |
| 49 | - \vskip0pt% | |
| 50 | -} | |
| 51 | - | |
| 52 | -\setbeamersize{text margin left=1em,text margin right=1em} | |
| 53 | - | |
| 54 | -\mode | |
| 55 | -<all> |
themes/theme/beamerthemeGiraldo.sty
| ... | ... | @@ -1,40 +0,0 @@ |
| 1 | -% Copyright 2007 by Till Tantau | |
| 2 | -% | |
| 3 | -% This file may be distributed and/or modified | |
| 4 | -% | |
| 5 | -% 1. under the LaTeX Project Public License and/or | |
| 6 | -% 2. under the GNU Public License. | |
| 7 | -% | |
| 8 | -% See the file doc/licenses/LICENSE for more details | |
| 9 | - | |
| 10 | -\mode<presentation> | |
| 11 | - | |
| 12 | -\usefonttheme{default} | |
| 13 | -\usecolortheme{Diana} | |
| 14 | -\useinnertheme{default} | |
| 15 | -\useoutertheme{default} | |
| 16 | - | |
| 17 | - | |
| 18 | -\pgfdeclareimage[width=64pt]{university-logo}{logo_horizontal_duas_linhas} | |
| 19 | -\pgfdeclareimage[width=64pt]{university-logo-inverted}{logo_horizontal_duas_linhas_invertido} | |
| 20 | -\logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{university-logo}}}} | |
| 21 | - | |
| 22 | - | |
| 23 | -\setbeamertemplate{headline}{} | |
| 24 | -\setbeamertemplate{footline}[frame number] | |
| 25 | -\setbeamertemplate{navigation symbols}{} | |
| 26 | - | |
| 27 | -\AtBeginSection[] { | |
| 28 | - \begingroup | |
| 29 | - \setbeamercolor{background canvas}{bg=ue-red} | |
| 30 | - \setbeamercolor{section in toc shaded}{fg=black} | |
| 31 | - \setbeamercolor{section in toc}{fg=white} | |
| 32 | - \logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{university-logo-inverted}}}} | |
| 33 | - \begin{frame}<beamer> | |
| 34 | - \tableofcontents[currentsection] | |
| 35 | - \end{frame} | |
| 36 | - \endgroup | |
| 37 | -} | |
| 38 | - | |
| 39 | -\mode | |
| 40 | -<all> |