blob: ec0244a13a279d2a4bd5630c477f51c5754e752c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
% Copyright (C) 2018 Pasquale Claudio Africa.
%
% This file is part of beamerthemefocus.
%
% beamerthemefocusis free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% beamerthemefocus is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with beamerthemefocus. If not, see <http://www.gnu.org/licenses/>.
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{beamerthemefocus}[2018/06/24 v1.0 Focus Beamer theme]
\mode<presentation>
\RequirePackage[T1]{fontenc}
\RequirePackage{FiraSans}
\RequirePackage{tikz}
\RequirePackage{etoolbox} % \BeforeBeginEnvironment
\RequirePackage{appendixnumberbeamer} % Don't number appendix frames.
\DeclareOptionBeamer{numbering}{
\PassOptionsToPackage{numbering=#1}{beamerouterthemefocus}
}
\ProcessOptionsBeamer
\usecolortheme{focus}
\usefonttheme{focus}
\useinnertheme{focus}
\useoutertheme{focus}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{blocks}[default]
\setbeamertemplate{section in toc}[square]
\setbeamertemplate{subsection in toc}[square]
\setbeamertemplate{itemize items}[square]
\setbeamertemplate{itemize subitem}[triangle]
% Set margins.
\setbeamersize{text margin left=0.75cm, text margin right=0.75cm}
\setlength{\leftmargini}{0.75cm}
%\leftmarginii=0.75\leftmargini\relax
\mode<all>
|