Commit 15070a601aa944dc7e963e98b27fe6104eb97ac9
1 parent
33cbc0aa
Exists in
master
Added sources (wtf?)
Showing
15 changed files
with
1570 additions
and
0 deletions
Show diff stats
No preview for this file type
No preview for this file type
texmf/tex/latex/beamer/themes/color/beamercolorthemeGiraldo.sty
0 → 100644
@@ -0,0 +1,156 @@ | @@ -0,0 +1,156 @@ | ||
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 | +% Opcoes | ||
10 | +% | ||
11 | +% (default) ==> barra dos títulos: fundo cinza claro, texto cinza escuro | ||
12 | +% | ||
13 | +% sempavor ==> barra dos titulos: fundo branco, texto conza | ||
14 | +% | ||
15 | +\newif\ifgiraldo@sempavor | ||
16 | +\giraldo@sempavorfalse | ||
17 | +\DeclareOptionBeamer{sempavor}{\giraldo@sempavortrue} | ||
18 | +% | ||
19 | +% comvergonha ==> barra dos titulos: fundo vermelho, texto branco | ||
20 | +% | ||
21 | +\newif\ifgiraldo@comvergonha | ||
22 | +\giraldo@comvergonhafalse | ||
23 | +\DeclareOptionBeamer{comvergonha}{\giraldo@comvergonhatrue} | ||
24 | +% | ||
25 | +\ProcessOptionsBeamer | ||
26 | +% | ||
27 | +\mode<presentation> | ||
28 | +% | ||
29 | +% | ||
30 | +% Define UE colors | ||
31 | +% | ||
32 | +\definecolor{ue-red}{RGB}{158 27 50} | ||
33 | +\definecolor{ue-gray}{RGB}{88 89 91} | ||
34 | +\definecolor{ue-grey}{RGB}{88 89 91} | ||
35 | +\definecolor{ue-black}{RGB}{0 0 0} | ||
36 | +% | ||
37 | +% | ||
38 | +% Basic text elements | ||
39 | +% | ||
40 | +\setbeamercolor*{normal text}{fg=black,bg=white} | ||
41 | +\setbeamercolor*{alerted text}{fg=ue-red,bg=white} | ||
42 | +% | ||
43 | +% | ||
44 | +% Title page elements | ||
45 | +% | ||
46 | +\setbeamercolor*{title}{fg=ue-red,bg=white} | ||
47 | +% | ||
48 | +% | ||
49 | +% Structures (lists, etc) | ||
50 | +% | ||
51 | +\setbeamercolor*{structure}{fg=ue-grey} | ||
52 | +% | ||
53 | +% | ||
54 | +% Frame block elements (theorems, etc) | ||
55 | +% | ||
56 | +\setbeamercolor*{block body}{bg=normal text.bg!90!black} | ||
57 | +\setbeamercolor*{block body alerted}{bg=normal text.bg!90!black} | ||
58 | +\setbeamercolor*{block title}{parent=structure,fg=white,bg=ue-red} | ||
59 | +\setbeamercolor*{block title alerted}{ | ||
60 | + use={normal text,alerted text}, | ||
61 | + fg=ue-g!75!normal text.fg, | ||
62 | + bg=normal text.bg!75!black | ||
63 | +} | ||
64 | +% | ||
65 | +% | ||
66 | +% Examples | ||
67 | +% | ||
68 | +\setbeamercolor*{example text}{fg=ue-grey!75!black} | ||
69 | +% | ||
70 | +\setbeamercolor*{block body example}{bg=normal text.bg!90!black} | ||
71 | +\setbeamercolor*{block title example}{ | ||
72 | + use={normal text,example text}, | ||
73 | + fg=ue-red!75!normal text.fg, | ||
74 | + bg=normal text.bg!75!black | ||
75 | +} | ||
76 | +% | ||
77 | +% | ||
78 | +% Palettes | ||
79 | +% | ||
80 | +\setbeamercolor{palette primary}{ | ||
81 | + use={structure,normal text}, | ||
82 | + fg=structure.fg, | ||
83 | + bg=normal text.bg!75!black | ||
84 | +} | ||
85 | +% | ||
86 | +\setbeamercolor{palette secondary}{ | ||
87 | + use={structure,normal text}, | ||
88 | + fg=structure.fg, | ||
89 | + bg=normal text.bg!60!black | ||
90 | +} | ||
91 | +% | ||
92 | +\setbeamercolor{palette tertiary}{ | ||
93 | + use={structure,normal text}, | ||
94 | + fg=ue-grey, | ||
95 | + bg=white | ||
96 | +} | ||
97 | +% | ||
98 | +\setbeamercolor{palette quaternary}{ | ||
99 | + use={structure,normal text}, | ||
100 | + fg=structure.fg, | ||
101 | + bg=normal text.bg!30!black | ||
102 | +} | ||
103 | +% | ||
104 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
105 | +% | ||
106 | +% | ||
107 | +% Processamento de opcoes | ||
108 | +% | ||
109 | +% sempavor | ||
110 | +% | ||
111 | +\ifgiraldo@sempavor | ||
112 | + \setbeamercolor{frametitle}{bg=white,fg=ue-gray} | ||
113 | + \pgfdeclareimage[width=64pt]{page-logo}{lhn} | ||
114 | +% | ||
115 | +% alcaide | ||
116 | +% | ||
117 | +\else\ifgiraldo@comvergonha | ||
118 | + \setbeamercolor{frametitle}{bg=ue-red,fg=white} | ||
119 | + \pgfdeclareimage[width=64pt]{page-logo}{lhb} | ||
120 | +% | ||
121 | +% (default) | ||
122 | +% | ||
123 | +\else | ||
124 | + \setbeamercolor{frametitle}{bg=ue-grey!12.5!white,fg=ue-grey} | ||
125 | + \pgfdeclareimage[width=64pt]{page-logo}{lhn} | ||
126 | +\fi\fi | ||
127 | +% | ||
128 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
129 | +% | ||
130 | +% | ||
131 | +% Sidebar stuff | ||
132 | +% | ||
133 | +%\setbeamercolor*{sidebar}{parent=palette primary} | ||
134 | +% \setbeamercolor*{sidebar}{bg=ue-red,fg=black} | ||
135 | +% \setbeamercolor*{title in sidebar}{fg=white} | ||
136 | +% \setbeamercolor*{subsection in sidebar}{fg=white} | ||
137 | +% \setbeamercolor{palette sidebar primary}{ | ||
138 | +% use=normal text, | ||
139 | +% fg=normal text.fg | ||
140 | +% } | ||
141 | +% \setbeamercolor{palette sidebar secondary}{ | ||
142 | +% use=structure, | ||
143 | +% fg=white | ||
144 | +% } | ||
145 | +% \setbeamercolor{palette sidebar tertiary}{ | ||
146 | +% use=normal text, | ||
147 | +% fg=normal text.fg | ||
148 | +% } | ||
149 | +% \setbeamercolor{palette sidebar quaternary}{ | ||
150 | +% use=structure, | ||
151 | +% fg=structure.fg | ||
152 | +%} | ||
153 | +% | ||
154 | +% | ||
155 | +% | ||
156 | +\mode<all> |
No preview for this file type
texmf/tex/latex/beamer/themes/font/beamerfontthemeGiraldo.sty
0 → 100644
@@ -0,0 +1,121 @@ | @@ -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> |
No preview for this file type
texmf/tex/latex/beamer/themes/inner/beamerinnerthemeGiraldo.sty
0 → 100644
@@ -0,0 +1,436 @@ | @@ -0,0 +1,436 @@ | ||
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 | +% % Quotation | ||
309 | +% | ||
310 | +% \defbeamertemplate*{quotation begin}{default} | ||
311 | +% {\beamercolorbox[vmode]{quotation}} | ||
312 | +% | ||
313 | +% \defbeamertemplate*{quotation end}{default} | ||
314 | +% {\endbeamercolorbox} | ||
315 | +% | ||
316 | +% % Quote | ||
317 | +% | ||
318 | +% \defbeamertemplate*{quote begin}{default} | ||
319 | +% {\beamercolorbox[vmode]{quote}} | ||
320 | +% | ||
321 | +% \defbeamertemplate*{quote end}{default} | ||
322 | +% {\endbeamercolorbox} | ||
323 | +% | ||
324 | +% % Footnotes | ||
325 | +% | ||
326 | +% \defbeamertemplate*{footnote}{default} | ||
327 | +% { | ||
328 | +% \parindent 1em\noindent% | ||
329 | +% \raggedright | ||
330 | +% \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par% | ||
331 | +% } | ||
332 | +% | ||
333 | +% % Captions | ||
334 | +% | ||
335 | +% \defbeamertemplate*{caption}{default} | ||
336 | +% {% | ||
337 | +% \raggedright | ||
338 | +% {% | ||
339 | +% \usebeamercolor[fg]{caption name}% | ||
340 | +% \usebeamerfont*{caption name}% | ||
341 | +% \insertcaptionname | ||
342 | +% \usebeamertemplate{caption label separator}% | ||
343 | +% }% | ||
344 | +% \insertcaption\par | ||
345 | +% } | ||
346 | +% \defbeamertemplate*{caption label separator}{default}{: } | ||
347 | +% | ||
348 | +% % Blocks | ||
349 | +% | ||
350 | +% \defbeamertemplateparent{blocks}{block begin,block end,% | ||
351 | +% block alerted begin,block alerted end,% | ||
352 | +% block example begin,block example end} | ||
353 | +% {} | ||
354 | +% | ||
355 | +% \defbeamertemplate*{block begin}{default} | ||
356 | +% { | ||
357 | +% \par\vskip\medskipamount% | ||
358 | +% \begin{beamercolorbox}[colsep*=.75ex]{block title} | ||
359 | +% \usebeamerfont*{block title}\insertblocktitle% | ||
360 | +% \end{beamercolorbox}% | ||
361 | +% {\parskip0pt\par}% | ||
362 | +% \ifbeamercolorempty[bg]{block title} | ||
363 | +% {} | ||
364 | +% {\ifbeamercolorempty[bg]{block body}{}{\nointerlineskip\vskip-0.5pt}}% | ||
365 | +% \usebeamerfont{block body}% | ||
366 | +% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body}% | ||
367 | +% \ifbeamercolorempty[bg]{block body}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | ||
368 | +% } | ||
369 | +% \defbeamertemplate*{block end}{default} | ||
370 | +% {\end{beamercolorbox}\vskip\smallskipamount} | ||
371 | +% | ||
372 | +% \defbeamertemplate*{block alerted begin}{default} | ||
373 | +% { | ||
374 | +% \par\vskip\medskipamount% | ||
375 | +% \begin{beamercolorbox}[colsep*=.75ex]{block title alerted} | ||
376 | +% \usebeamerfont*{block title alerted}\insertblocktitle% | ||
377 | +% \end{beamercolorbox}% | ||
378 | +% {\parskip0pt\par}% | ||
379 | +% \ifbeamercolorempty[bg]{block title alerted} | ||
380 | +% {} | ||
381 | +% {\ifbeamercolorempty[bg]{block body alerted}{}{\nointerlineskip\vskip-0.5pt}}% | ||
382 | +% \usebeamerfont{block body alerted}% | ||
383 | +% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body alerted}% | ||
384 | +% \ifbeamercolorempty[bg]{block body alerted}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | ||
385 | +% } | ||
386 | +% | ||
387 | +% \defbeamertemplate*{block alerted end}{default} | ||
388 | +% {\end{beamercolorbox}\vskip\smallskipamount} | ||
389 | +% | ||
390 | +% \defbeamertemplate*{block example begin}{default} | ||
391 | +% { | ||
392 | +% \par\vskip\medskipamount% | ||
393 | +% \begin{beamercolorbox}[colsep*=.75ex]{block title example} | ||
394 | +% \usebeamerfont*{block title example}\insertblocktitle% | ||
395 | +% \end{beamercolorbox}% | ||
396 | +% {\parskip0pt\par}% | ||
397 | +% \ifbeamercolorempty[bg]{block title example} | ||
398 | +% {} | ||
399 | +% {\ifbeamercolorempty[bg]{block body example}{}{\nointerlineskip\vskip-0.5pt}}% | ||
400 | +% \usebeamerfont{block body example}% | ||
401 | +% \begin{beamercolorbox}[colsep*=.75ex,vmode]{block body example}% | ||
402 | +% \ifbeamercolorempty[bg]{block body example}{\vskip-.25ex}{\vskip-.75ex}\vbox{}% | ||
403 | +% } | ||
404 | +% \defbeamertemplate*{block example end}{default} | ||
405 | +% {\end{beamercolorbox}\vskip\smallskipamount} | ||
406 | +% | ||
407 | +% % Theorems | ||
408 | +% | ||
409 | +% \defbeamertemplateparent{theorems}{theorem begin,theorem end} | ||
410 | +% {} | ||
411 | +% | ||
412 | +% \defbeamertemplate*{theorem begin}{default} | ||
413 | +% {% | ||
414 | +% \begin{\inserttheoremblockenv} | ||
415 | +% {% | ||
416 | +% \inserttheoremname | ||
417 | +% \ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi% | ||
418 | +% }% | ||
419 | +% } | ||
420 | +% | ||
421 | +% \defbeamertemplate*{theorem end}{default} | ||
422 | +% {\end{\inserttheoremblockenv}} | ||
423 | +% | ||
424 | +% % Proofs | ||
425 | +% \defbeamertemplate*{proof begin}{default} | ||
426 | +% {\begin{block}{\insertproofname}} | ||
427 | +% | ||
428 | +% \defbeamertemplate*{proof end}{default} | ||
429 | +% {\end{block}} | ||
430 | +% | ||
431 | +% \defbeamertemplate*{qed symbol}{default} | ||
432 | +% {\openbox} | ||
433 | +% | ||
434 | +% | ||
435 | +\mode | ||
436 | +<all> |
No preview for this file type
texmf/tex/latex/beamer/themes/outer/beamerouterthemeGiraldo.sty
0 → 100644
@@ -0,0 +1,72 @@ | @@ -0,0 +1,72 @@ | ||
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 | +% | ||
12 | +% Logotipo(s) | ||
13 | +% | ||
14 | +\pgfdeclareimage[width=64pt]{university-logo}{logo_horizontal_duas_linhas} | ||
15 | +\pgfdeclareimage[width=64pt]{university-logo-inverted}{logo_horizontal_duas_linhas_invertido} | ||
16 | +% | ||
17 | +\newif\ifsidebar | ||
18 | +\sidebarfalse | ||
19 | +% | ||
20 | +\DeclareOptionBeamer{sidebar}[true]{\csname sidebar#1\endcsname} | ||
21 | +\ProcessOptionsBeamer | ||
22 | +% | ||
23 | +\ifsidebar | ||
24 | + \useoutertheme[width=72pt,right,hideothersubsections]{sidebar} | ||
25 | + \useoutertheme[width=72pt,right,hideothersubsections]{infolines} | ||
26 | + \logo{\pgfuseimage{university-logo-inverted}} | ||
27 | + \setbeamertemplate{headline}[sidebar theme] | ||
28 | + % | ||
29 | + \setbeamertemplate{sidebar right} | ||
30 | + { | ||
31 | + % {% | ||
32 | + % \vskip1.25em% | ||
33 | + % \hbox to72pt{\hss\insertlogo\hss} | ||
34 | + % \vskip1.25em% | ||
35 | + % }% | ||
36 | + {% Titulo na barra lateral | ||
37 | + \usebeamerfont{title in sidebar}% | ||
38 | + \usebeamercolor[fg]{title in sidebar}% | ||
39 | + \hbox to72pt{\hss\insertshorttitle[width=64pt,center,respectlinebreaks]\hss} | ||
40 | + %\insertshorttitle[width=64pt,center,respectlinebreaks]\par% | ||
41 | + %\insertshortsubtitle[width=2cm,center,respectlinebreaks]\par% | ||
42 | + }% | ||
43 | + {% Barra de navegacao | ||
44 | + \vskip1.25em% | ||
45 | + \usebeamercolor[fg]{subsection in sidebar} | ||
46 | + \insertverticalnavigation{64pt}% | ||
47 | + \vfill | ||
48 | + }% | ||
49 | + \hbox to 72pt{% lecture.frame em baixo a direita | ||
50 | + \hfill% | ||
51 | + \strut% | ||
52 | + \usebeamerfont{subsection in sidebar}% | ||
53 | + \usebeamercolor[fg]{subsection in sidebar}% | ||
54 | + \insertframenumber/\inserttotalframenumber | ||
55 | + \hskip5pt | ||
56 | + } | ||
57 | + \vskip3pt% | ||
58 | + }% | ||
59 | + % | ||
60 | + \setbeamertemplate{footline}[] | ||
61 | +\else | ||
62 | + \logo{\pgfuseimage{university-logo}} | ||
63 | + \setbeamertemplate{headline}{} | ||
64 | + \setbeamertemplate{footline}[frame number] | ||
65 | +\fi | ||
66 | + | ||
67 | +\setbeamersize{text margin left=1em,text margin right=1em} | ||
68 | + | ||
69 | +\setbeamertemplate{navigation symbols}{} | ||
70 | + | ||
71 | +\mode | ||
72 | +<all> |
No preview for this file type
texmf/tex/latex/beamer/themes/theme/beamerthemeGiraldo.sty
0 → 100644
@@ -0,0 +1,167 @@ | @@ -0,0 +1,167 @@ | ||
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 | +% Opcoes | ||
12 | +\DeclareOptionBeamer{sempavor}{\PassOptionsToPackage{sempavor}{beamercolorthemeGiraldo}} | ||
13 | +\DeclareOptionBeamer{comvergonha}{\PassOptionsToPackage{comvergonha}{beamercolorthemeGiraldo}} | ||
14 | +% | ||
15 | +% Opcoes | ||
16 | +% | ||
17 | +% comsapatos ==> barra de contexo | ||
18 | +% | ||
19 | +\newif\ifgiraldo@calcado | ||
20 | +\giraldo@calcadofalse | ||
21 | +\DeclareOptionBeamer{calcado}{\giraldo@calcadotrue} | ||
22 | +% | ||
23 | +% | ||
24 | +\ProcessOptionsBeamer | ||
25 | +% | ||
26 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
27 | +% | ||
28 | +% | ||
29 | +% Logotipo(s) | ||
30 | +% | ||
31 | +%\pgfdeclareimage[width=64pt]{ue-logo}{logo_horizontal_duas_linhas} | ||
32 | +%\pgfdeclareimage[width=64pt]{ue-logo-branco}{logo_horizontal_duas_linhas_invertido} | ||
33 | +\pgfdeclareimage[width=64pt]{section-logo}{lhb} | ||
34 | +\pgfdeclareimage[width=96pt]{main-logo}{lue} | ||
35 | +\titlegraphic{\pgfuseimage{main-logo}} | ||
36 | +%\logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{ue-logo}}}} | ||
37 | +% | ||
38 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
39 | +% | ||
40 | +% | ||
41 | +% Temas por omissao | ||
42 | +% | ||
43 | +\usecolortheme{Giraldo} | ||
44 | +\usefonttheme[onlymath]{serif} | ||
45 | +% | ||
46 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
47 | +% | ||
48 | +% | ||
49 | +% Afinação de elementos nas páginas | ||
50 | +% | ||
51 | +\ifgiraldo@calcado | ||
52 | + \setbeamertemplate{footline}[text line]{ | ||
53 | + \insertsectionnavigationhorizontal{\linewidth}{} | ||
54 | + {\hskip0pt plus1filll\textbf{\insertframenumber}/\inserttotalframenumber} | ||
55 | + } | ||
56 | +\else | ||
57 | + \setbeamertemplate{footline}[text line]{ | ||
58 | + \hskip0pt plus1filll\textbf{\insertframenumber}/\inserttotalframenumber | ||
59 | + } | ||
60 | +\fi | ||
61 | +% | ||
62 | +% | ||
63 | +% | ||
64 | +\setbeamertemplate{headline}{} | ||
65 | +% | ||
66 | +% | ||
67 | +% | ||
68 | +\setbeamertemplate{navigation symbols}{} | ||
69 | +% | ||
70 | +% Titulo da pagina | ||
71 | +% | ||
72 | +\addtobeamertemplate{frametitle}{}{% | ||
73 | + \begin{tikzpicture}[remember picture,overlay] | ||
74 | + \node[anchor=north east] at (current page.north east) { | ||
75 | + \pgfuseimage{page-logo}}; | ||
76 | + \end{tikzpicture} | ||
77 | +} | ||
78 | +%\logo{\pgfputat{\pgfxy(-1.2,8)}{\pgfbox[center,base]{\pgfuseimage{section-logo}}}} | ||
79 | +% | ||
80 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
81 | +% | ||
82 | +% | ||
83 | +% Pagina de seccao | ||
84 | +% | ||
85 | +\AtBeginSection | ||
86 | +{ \begingroup | ||
87 | + \setbeamercolor{background canvas}{bg=ue-red} | ||
88 | + \setbeamercolor{palette tertiary}{ | ||
89 | + use={structure,normal text}, | ||
90 | + fg=ue-red, | ||
91 | + bg=ue-red} | ||
92 | + % | ||
93 | + \setbeamercolor{section in toc}{fg=white,bg=ue-red} | ||
94 | + % | ||
95 | + \setbeamercolor{section in toc shaded}{fg=ue-red,bg=ue-red} | ||
96 | + \setbeamertemplate{section in toc shaded}[default][50] | ||
97 | + % | ||
98 | + \setbeamercolor{subsection in toc}{fg=white,bg=ue-red} | ||
99 | + % | ||
100 | + \setbeamercolor{subsection in toc shaded}{fg=ue-red,bg=ue-red} | ||
101 | + \setbeamertemplate{subsection in toc shaded}[default][50] | ||
102 | + % | ||
103 | + \setbeamertemplate{footline}[text line]{} | ||
104 | + % | ||
105 | + % FIXME: hardcoded logo coordinates (while in frametitle are page referenced...) | ||
106 | + % | ||
107 | +% \logo{ | ||
108 | +% \pgfputat | ||
109 | +% %{\pgfxy(-1.19,8.09)} | ||
110 | +% {\pgfxy(0,0)} | ||
111 | +% {\pgfbox[center,base]{\pgfuseimage{section-logo}}}} | ||
112 | + \begin{frame}<beamer>\small | ||
113 | + \tableofcontents[currentsection,subsectionstyle=shaded/shaded/hide] | ||
114 | + \end{frame} | ||
115 | + \endgroup | ||
116 | +} | ||
117 | +% | ||
118 | +% Pagina de Subseccao | ||
119 | +% | ||
120 | +\AtBeginSubsection | ||
121 | +{ \begingroup | ||
122 | + \setbeamercolor{background canvas}{bg=ue-red} | ||
123 | + \setbeamercolor{palette tertiary}{ | ||
124 | + use={structure,normal text}, | ||
125 | + fg=ue-red, | ||
126 | + bg=ue-red} | ||
127 | + % | ||
128 | + \setbeamercolor{section in toc}{fg=white,bg=ue-red} | ||
129 | + % | ||
130 | + \setbeamercolor{section in toc shaded}{fg=ue-red,bg=ue-red} | ||
131 | + \setbeamertemplate{section in toc shaded}[default][50] | ||
132 | + % | ||
133 | + \setbeamercolor{subsection in toc}{fg=white,bg=ue-red} | ||
134 | + % | ||
135 | + \setbeamercolor{subsection in toc shaded}{fg=ue-red,bg=ue-red} | ||
136 | + \setbeamertemplate{subsection in toc shaded}[default][50] | ||
137 | + % | ||
138 | + \setbeamertemplate{footline}[text line]{} | ||
139 | + % | ||
140 | + % FIXME: hardcoded logo coordinates (while in frametitle are page referenced...) | ||
141 | + % | ||
142 | + %\logo{\pgfputat{\pgfxy(-1.19,8.09)}{\pgfbox[center,base]{\pgfuseimage{section-logo}}}} | ||
143 | + \begin{frame}<beamer>\small | ||
144 | + \tableofcontents[ | ||
145 | + currentsection,sectionstyle=shaded/shaded, | ||
146 | + currentsubsection,subsectionstyle=show/shaded/hide] | ||
147 | + \end{frame} | ||
148 | + \endgroup | ||
149 | +} | ||
150 | +% | ||
151 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
152 | +% | ||
153 | +% | ||
154 | +% Correccoes | ||
155 | +% | ||
156 | +% Avisos sobre as fontes | ||
157 | +% | ||
158 | +\let\Tiny=\tiny | ||
159 | +% | ||
160 | +% Dicionarios para Portugues | ||
161 | +% | ||
162 | +\languagepath{Portuguese} | ||
163 | +\newtranslation[to=Portuguese]{Definition}{Defini\c{c}\~{a}o} | ||
164 | +\newtranslation[to=Portuguese]{Example}{Exemplo} | ||
165 | +\newtranslation[to=Portuguese]{Theorem}{Teorema} | ||
166 | +\uselanguage{Portuguese} | ||
167 | + |
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type