summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/fibeamer/theme
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/fibeamer/theme')
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx284
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/base.ins6
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx96
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx93
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/law.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/med.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx96
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.ins3
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx94
-rw-r--r--Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.ins3
20 files changed, 1166 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx
new file mode 100644
index 00000000000..32dd9799ede
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.dtx
@@ -0,0 +1,284 @@
+% \iffalse
+%<*color>
+% \fi\file{theme/mu/beamercolorthemefibeamer-mu.sty}
+% This is the base color theme for presentations written at the
+% Masaryk University in Brno.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu}[2015/08/26]
+% \end{macrocode}
+% \begin{macro}{\darkframes}
+% The |darkframes| environment switches the color definitions to
+% render the enclosed frames in dark colors. This is a dummy
+% definition, which will be overridden by the subsequently loaded
+% color theme in the presentation mode.
+% \begin{macrocode}
+\newenvironment{darkframes}{}{}
+% \end{macrocode}
+% \end{macro}
+% The rest of the theme will be ignored outside the presentation
+% mode.
+% \begin{macrocode}
+\mode<presentation>
+% \end{macrocode}
+% The theme loads the following packages, which will be used by the
+% subsequently loaded color theme specific to a faculty:
+% \begin{itemize}
+% \item\textsf{listings} -- This package is used for code
+% listings. The subsequently loaded color theme will specify
+% source code coloring for the package.
+% \item\textsf{ifthen} -- This package is used to construct
+% compound conditionals.
+% \item\textsf{tikz} -- This package is used to create gradient
+% background for dark slides.
+% \end{itemize}
+% \begin{macrocode}
+ \RequirePackage{listings}
+ \RequirePackage{ifthen}
+ \RequirePackage{tikz}
+% \end{macrocode}
+% \begin{macro}{\iffibeamer@dark}
+% The |\iffibeamer@dark| conditional will be switched on and off by
+% the subsequently loaded color theme based on whether or not the
+% given frame is being typeset in light or dark colors. This
+% information will be used by outer themes to insert the correct
+% logo into each frame.
+% \begin{macrocode}
+ \newif\iffibeamer@dark\fibeamer@darkfalse
+% \end{macrocode}
+% \end{macro}
+% A frame that is either title or dark, as specified by the value
+% of the |\iffibeamer@dark| conditional, will have a gradient
+% background. The |fibeamer@backgroundInner| and
+% |fibeamer@backgroundOuter| colors will be defined by the
+% subsequently loaded color theme.
+% \begin{macrocode}
+\defbeamertemplate*{background canvas}{fibeamer}{%
+ \ifthenelse{%
+ \boolean{fibeamer@dark} \OR \c@framenumber=0
+ }{%
+ \begin{tikzpicture}
+ \clip (0,\fibeamer@clipbottom) rectangle
+ (\paperwidth,\fibeamer@cliptop);
+ \path [inner color = fibeamer@backgroundInner,
+ outer color = fibeamer@backgroundOuter]
+ (0,0) rectangle (\paperwidth,\paperwidth);
+ \end{tikzpicture}
+ }{}}
+\mode
+<all>
+% \end{macrocode}
+% \iffalse
+%</color>
+%<*font>
+% \fi\file{theme/mu/beamerfontthemefibeamer-mu.sty}
+% This is the base font theme for presentations written at the
+% Masaryk University in Brno. The theme has no effect outside the
+% presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamerfontthemefibeamer-mu}[2015/08/26]
+\mode<presentation>
+ \setbeamerfont{normal text}{size=\normalsize}
+ \setbeamerfont{title}{size=\LARGE, series=\bfseries}
+ \setbeamerfont{subtitle}{parent=normal text, size=\Large}
+ \setbeamerfont{frametitle}{size=\Large}
+ \setbeamerfont{framesubtitle}{size=\large, shape=\itshape}
+ \setbeamerfont{description item}{series=\bfseries}
+ \setbeamerfont{author}{size=\large}
+\mode
+<all>
+% \end{macrocode}
+% \iffalse
+%</font>
+%<*inner>
+% \fi\file{theme/mu/beamerinnerthemefibeamer-mu.sty}
+% This is the base inner theme for presentations written at the
+% Masaryk University in Brno. The theme has no effect outside the
+% presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamerinnerthemefibeamer-mu}[2015/08/26]
+\defbeamertemplate*{itemize item}{fibeamer}{$\bullet$}
+\defbeamertemplate*{itemize subitem}{fibeamer}{\---}
+\defbeamertemplate*{itemize subsubitem}{fibeamer}{\guillemotright}
+\setbeamertemplate{bibliography item}{\insertbiblabel}
+% \end{macrocode}
+% \iffalse
+%</inner>
+%<*outer>
+% \fi\file{theme/mu/beamerouterthemefibeamer-mu.sty}
+% This is the base outer theme for presentations written at the
+% Masaryk University in Brno. The theme has no effect outside the
+% presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamerouterthemefibeamer-mu}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% The theme uses the following packages:
+% \begin{itemize}
+% \item\textsf{ifthen} -- This package is used to construct
+% compound conditionals.
+% \item\textsf{ifpdf} -- This package is used to check, whether
+% the document is being typeset in DVI mode. If it is, then
+% the |\pdfpagewidth| and |\pdfpageheight| dimensions are
+% defined, so that positioning in TikZ works correctly.
+% \changes{v1.0.1}{2015/10/02}{Added DVI output support. [VN]}
+% ^^A <http://tex.stackexchange.com/a/246631/70941>
+% \item\textsf{tikz} -- This package is used to position the
+% logo and the frame number on a frame.
+% \item\textsf{pgfcore} -- This package is used to draw the
+% dashed line at the title frame.
+% \end{itemize}
+% \begin{macrocode}
+ \RequirePackage{ifthen}
+ \RequirePackage{ifpdf}
+ \ifpdf\else
+ \@ifundefined{pdfpagewidth}{\newdimen\pdfpagewidth}{}
+ \@ifundefined{pdfpageheight}{\newdimen\pdfpageheight}{}
+ \pdfpagewidth=\paperwidth
+ \pdfpageheight=\paperheight
+ \fi
+ \RequirePackage{tikz}
+ \RequirePackage{pgfcore}
+% \end{macrocode}
+% This part of the outer theme defines the geometry of the frames
+% along with other dimensions.
+% \begin{macrocode}
+% The logo dimensions
+ \newlength{\fibeamer@logowidth}
+ \setlength{\fibeamer@logowidth}{15mm}
+ \newlength{\fibeamer@logoheight}
+ \setlength{\fibeamer@logoheight}{1.32\fibeamer@logowidth}
+ % The logo padding
+ \newlength{\fibeamer@logopad}
+ \setlength{\fibeamer@logopad}{0.25\fibeamer@logowidth}
+ % The footer padding
+ \newlength{\fibeamer@footerpad}
+ \setlength{\fibeamer@footerpad}{\fibeamer@logopad}
+ % The side margins
+ \newlength{\fibeamer@margin}
+ \setlength{\fibeamer@margin}{\fibeamer@logopad}
+ \addtolength\fibeamer@margin{0.5\fibeamer@logowidth}
+ \setbeamersize{
+ text margin left=\fibeamer@margin,
+ text margin right=\fibeamer@margin}
+ % The upper margin
+ \newlength{\fibeamer@titleline}
+ \setlength{\fibeamer@titleline}{0.5\fibeamer@logoheight}
+ \usebeamerfont{frametitle}%
+ \addtolength\fibeamer@titleline{-1em}
+ % The background clipping
+ \newlength{\fibeamer@clipbottom}
+ \setlength{\fibeamer@clipbottom}{\paperwidth}
+ \addtolength\fibeamer@clipbottom{-\paperheight}
+ \setlength{\fibeamer@clipbottom}{0.5\fibeamer@clipbottom}
+ \newlength{\fibeamer@cliptop}
+ \setlength{\fibeamer@cliptop}{\paperwidth}
+ \addtolength\fibeamer@cliptop{-\fibeamer@clipbottom}
+% \end{macrocode}
+% The outer theme completely culls the bottom navigation.
+% \begin{macrocode}
+ \defbeamertemplate*{navigation symbols}{fibeamer}{}
+% \end{macrocode}
+% The outer theme also culls the headline and replaces it with
+% either a dark or light version of the faculty logo, based on the
+% value of the |\iffibeamer@dark| conditional, which is controlled by
+% the color theme.
+% \begin{macrocode}
+ \defbeamertemplate*{headline}{fibeamer}{%
+ \begin{tikzpicture}[overlay,remember picture]
+ \node[anchor=north east,xshift=-\fibeamer@logopad]
+ at (current page.north east) {
+ \ifthenelse{\boolean{fibeamer@dark}\OR\c@framenumber=0}{
+ \includegraphics[width=\fibeamer@logowidth]%
+ {\fibeamer@logo-dark}
+ }{
+ \includegraphics[width=\fibeamer@logowidth]%
+ {\fibeamer@logo-light}
+ }
+ };
+ \end{tikzpicture}}
+% \end{macrocode}
+% The frame title is positioned on the axis of the faculty logo.
+% \begin{macrocode}
+ \defbeamertemplate*{frametitle}{fibeamer}{%
+ \vskip\fibeamer@titleline
+ \usebeamercolor[fg]{frametitle}%
+ \usebeamerfont{frametitle}%
+ \insertframetitle\par%
+ \usebeamercolor[fg]{framesubtitle}%
+ \usebeamerfont{framesubtitle}%
+ \insertframesubtitle}
+% \end{macrocode}
+% The footline contains the frame number. It is flushed right and
+% aligned with the faculty logo.
+% \begin{macrocode}
+ \defbeamertemplate*{footline}{fibeamer}{%
+ \ifnum\c@framenumber=0\else%
+ \begin{tikzpicture}[overlay]
+ \node[anchor=south east,yshift=\fibeamer@footerpad,
+ xshift=-\fibeamer@footerpad] at (current page.south east) {
+ \usebeamercolor[fg]{framenumber}%
+ \usebeamerfont{framenumber}%
+ \insertframenumber/\inserttotalframenumber
+ };
+ \end{tikzpicture}
+ \fi}
+% \end{macrocode}
+% The title frame contains the |\title| vertically positioned to
+% the upper $\phi^{-1}$ of the page, where $\phi$ refers to the
+% golden ratio, and underlined with a dashed line. At the bottom
+% of the page, there is the |\subtitle| followed by the |\author|.
+% \begin{macrocode}
+ \defbeamertemplate*{title page}{fibeamer}{%
+ % This is slide 0
+ \setcounter{framenumber}{0}
+
+ % Input the title
+ \usebeamerfont{title}%
+ \usebeamercolor[fg]{title}%
+ \begin{minipage}[b][2\baselineskip][b]{\textwidth}%
+ \raggedright%
+ \inserttitle%
+ \end{minipage}
+ \vskip-.5\baselineskip
+
+ % Input the dashed line
+ \begin{pgfpicture}
+ \pgfsetlinewidth{2pt}
+ \pgfsetroundcap
+ \pgfsetdash{{0pt}{4pt}}{0cm}
+
+ \pgfpathmoveto{\pgfpoint{0mm}{0mm}}
+ \pgfpathlineto{\pgfpoint{\textwidth}{0mm}}
+
+ \pgfusepath{stroke}
+ \end{pgfpicture}
+ \vfill
+
+ % Input the subtitle
+ \usebeamerfont{subtitle}%
+ \begin{minipage}{\textwidth}
+ \raggedright%
+ \insertsubtitle%
+ \end{minipage}\vskip.25\baselineskip
+
+ % Input the author's name
+ \usebeamerfont{author}%
+ \begin{minipage}{\textwidth}
+ \raggedright%
+ \insertauthor%
+ \end{minipage}}
+
+\mode
+<all>
+% \end{macrocode}
+% \iffalse
+%</outer>
+% \fi
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.ins
new file mode 100644
index 00000000000..28f27b8b2d4
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/base.ins
@@ -0,0 +1,6 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu.sty}{\from{base.dtx}{color}}
+ \file{beamerfontthemefibeamer-mu.sty} {\from{base.dtx}{font}}
+ \file{beamerinnerthemefibeamer-mu.sty}{\from{base.dtx}{inner}}
+ \file{beamerouterthemefibeamer-mu.sty}{\from{base.dtx}{outer}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx
new file mode 100644
index 00000000000..e55882f9062
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-econ.sty}
+% This is the color theme for presentations written at the Faculty
+% of Economics and Administration at the Masaryk University in
+% Brno. This theme has no effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-econ}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of red-brown, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@brown}{HTML}{6e222c}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@brown}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@brown!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@brown}
+ \setbeamercolor*{frametitle}{fg=fibeamer@brown!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@brown!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@brown!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@brown!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@brown!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@brown!90!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@brown, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{fibeamer@brown!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@brown}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@brown}
+ \setbeamercolor{footnote mark}{fg=fibeamer@brown}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@brown!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@brown!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@brown}
+ \setbeamercolor{block body}{
+ fg=fibeamer@brown, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@brown}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.ins
new file mode 100644
index 00000000000..a6b5a177be1
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/econ.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-econ.sty}{\from{econ.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx
new file mode 100644
index 00000000000..035c6405d58
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.dtx
@@ -0,0 +1,96 @@
+% \file{theme/mu/beamercolorthemefibeamer-fi.sty}
+% This is the color theme for presentations written at the
+% Faculty of Informatics at the Masaryk University in Brno.
+% This theme has no effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-fi}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of yellow and dark gray in light frames
+% and the combination of gold and white in dark frames. The
+% |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter| colors are used
+% within the background canvas template, which is defined within the color
+% theme of the Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@gold}{HTML}{a47312}
+ \definecolor{fibeamer@yellow}{HTML}{FFEB9C}
+ \definecolor{fibeamer@yellowDark}{HTML}{E9BC09}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@gold}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@gold!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@gold}
+ \setbeamercolor*{frametitle}{fg=fibeamer@gold!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@gold!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@gold!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@gold!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@gold!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@gold!90!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@gold, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{fibeamer@gold!30!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@yellowDark}
+ \setbeamercolor{framesubtitle}{fg=black!60!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black!75!white}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@yellowDark}
+ \setbeamercolor{footnote mark}{fg=fibeamer@yellowDark}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=black!75!white, bg=fibeamer@yellow}
+ \setbeamercolor{block title example}{
+ use=example text, fg=black!75!white, bg=fibeamer@yellow}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=black!75!white}
+ \setbeamercolor{block body}{
+ fg=fibeamer@yellow, use=block title, bg=black!75!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@gold}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.ins
new file mode 100644
index 00000000000..f537ea1a062
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fi.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-fi.sty}{\from{fi.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx
new file mode 100644
index 00000000000..e85a32a94cd
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-fsps.sty}
+% This is the color theme for presentations written at the Faculty
+% of Sports Studies at the Masaryk University in Brno. This theme
+% has no effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-fsps}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of dark blue, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@blue}{HTML}{1B458F}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@blue}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@blue!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@blue}
+ \setbeamercolor*{frametitle}{fg=fibeamer@blue!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@blue!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@blue!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@blue!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@blue!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@blue!95!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@blue, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{red!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@blue}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@blue}
+ \setbeamercolor{footnote mark}{fg=fibeamer@blue}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@blue!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@blue!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@blue}
+ \setbeamercolor{block body}{
+ fg=fibeamer@blue, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@blue}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.ins
new file mode 100644
index 00000000000..93d0c3ccbcc
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fsps.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-fsps.sty}{\from{fsps.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx
new file mode 100644
index 00000000000..c19ab68f03d
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-fss.sty}
+% This is the color theme for presentations written at the Faculty
+% of Social Studies at the Masaryk University in Brno. This theme
+% has no effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-fss}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of cyan, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@cyan}{HTML}{00796E}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@cyan!80!black}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@cyan!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@cyan}
+ \setbeamercolor*{frametitle}{fg=fibeamer@cyan!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@cyan!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@cyan!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@cyan!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@cyan!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@cyan}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@cyan, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{red!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@cyan}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@cyan}
+ \setbeamercolor{footnote mark}{fg=fibeamer@cyan}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@cyan!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@cyan!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@cyan}
+ \setbeamercolor{block body}{
+ fg=fibeamer@cyan, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@cyan}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.ins
new file mode 100644
index 00000000000..633c94422a0
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/fss.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-fss.sty}{\from{fss.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx
new file mode 100644
index 00000000000..50dd8123860
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.dtx
@@ -0,0 +1,93 @@
+% \file{theme/mu/beamercolorthemefibeamer-law.sty}
+% This is the color theme for presentations written at the Faculty
+% of Law at the Masaryk University in Brno. This theme has no
+% effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-law}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of violet, gray and white.
+% The |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter|
+% colors are used within the background canvas template, which is
+% defined within the color theme of the Masaryk University and
+% which draws the gradient background of dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@violet}{HTML}{660099}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@violet}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@violet!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@violet}
+ \setbeamercolor*{frametitle}{fg=fibeamer@violet!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@violet!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@violet!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@violet!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@violet!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@violet!90!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@violet, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{fibeamer@violet!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@violet}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@violet}
+ \setbeamercolor{footnote mark}{fg=fibeamer@violet}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@violet!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@violet!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@violet}
+ \setbeamercolor{block body}{
+ fg=fibeamer@violet, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@violet}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.ins
new file mode 100644
index 00000000000..e1fdd0c993a
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/law.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-law.sty}{\from{law.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx
new file mode 100644
index 00000000000..328f0930cd2
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-med.sty}
+% This is the color theme for presentations written at the Faculty
+% of Medicine at the Masaryk University in Brno. This theme has no
+% effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-med}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of red, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@red}{HTML}{c82600}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@red}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@red!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@red}
+ \setbeamercolor*{frametitle}{fg=fibeamer@red!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@red!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@red!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@red!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@red!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@red!90!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@red, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{fibeamer@red!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@red}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@red}
+ \setbeamercolor{footnote mark}{fg=fibeamer@red}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@red!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@red!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@red}
+ \setbeamercolor{block body}{
+ fg=fibeamer@red, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@red}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.ins
new file mode 100644
index 00000000000..10e78ce8216
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/med.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-med.sty}{\from{med.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx
new file mode 100644
index 00000000000..f2f5d584a74
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.dtx
@@ -0,0 +1,96 @@
+% \file{theme/mu/beamercolorthemefibeamer-ped.sty}
+% This is the color theme for presentations written at the
+% Faculty of Education at the Masaryk University in Brno.
+% This theme has no effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-ped}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of orange and dark gray in light frames
+% and the combination of gold and white in dark frames. The
+% |fibeamer@back|\-|groundInner| and |fibeamer@backgroundOuter| colors are used
+% within the background canvas template, which is defined within the color
+% theme of the Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@gold}{HTML}{CF7000}
+ \definecolor{fibeamer@orange}{HTML}{FABE6E}
+ \definecolor{fibeamer@orangeDark}{HTML}{F89C22}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@gold}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@gold!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@gold}
+ \setbeamercolor*{frametitle}{fg=fibeamer@gold!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@gold!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@gold!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@gold!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@gold!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@gold!90!white}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@gold, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{fibeamer@gold!30!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@orangeDark}
+ \setbeamercolor{framesubtitle}{fg=black!60!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black!75!white}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@orangeDark}
+ \setbeamercolor{footnote mark}{fg=fibeamer@orangeDark}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=black!75!white, bg=fibeamer@orange}
+ \setbeamercolor{block title example}{
+ use=example text, fg=black!75!white, bg=fibeamer@orange}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=black!75!white}
+ \setbeamercolor{block body}{
+ fg=fibeamer@orange, use=block title, bg=black!75!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@gold}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.ins
new file mode 100644
index 00000000000..99ed6193c6e
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/ped.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-ped.sty}{\from{ped.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx
new file mode 100644
index 00000000000..e8c199891a4
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-phil.sty}
+% This is the color theme for presentations written at the Faculty
+% of Arts at the Masaryk University in Brno. This theme has no
+% effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-phil}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of aquamarine, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@blue}{HTML}{0071B2}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@blue!80!black}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@blue!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@blue}
+ \setbeamercolor*{frametitle}{fg=fibeamer@blue!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@blue!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@blue!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@blue!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@blue!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@blue}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@blue, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{red!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@blue}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@blue}
+ \setbeamercolor{footnote mark}{fg=fibeamer@blue}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@blue!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@blue!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@blue}
+ \setbeamercolor{block body}{
+ fg=fibeamer@blue, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@blue}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.ins
new file mode 100644
index 00000000000..e14953766fb
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/phil.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-phil.sty}{\from{phil.dtx}{}}}
+\endbatchfile
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx
new file mode 100644
index 00000000000..f08e0c86c05
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.dtx
@@ -0,0 +1,94 @@
+% \file{theme/mu/beamercolorthemefibeamer-sci.sty}
+% This is the color theme for presentations written at the Faculty
+% of Science at the Masaryk University in Brno. This theme has no
+% effect outside the presentation mode.
+% \begin{macrocode}
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{fibeamer/theme/mu/%
+ beamercolorthemefibeamer-mu-sci}[2015/08/26]
+\mode<presentation>
+% \end{macrocode}
+% This color theme uses the combination of green, gray and
+% white. The |fibeamer@back|\-|groundInner| and
+% |fibeamer@backgroundOuter| colors are used within the background
+% canvas template, which is defined within the color theme of the
+% Masaryk University and which draws the gradient background of
+% dark frames.
+% \begin{macrocode}
+ \definecolor{fibeamer@green}{HTML}{139632}
+ \definecolor{fibeamer@gray}{HTML}{999999}
+ \colorlet{fibeamer@backgroundInner}{fibeamer@green!90!black}
+ \colorlet{fibeamer@backgroundOuter}{fibeamer@green!60!black}
+% \end{macrocode}
+% The |darkframes| environment switches the |\iffibeamer@darktrue|
+% conditional on and sets a dark color theme.
+% \begin{macrocode}
+ \renewenvironment{darkframes}{%
+ \begingroup
+ \fibeamer@darktrue
+ %% Structures
+ \setbeamercolor*{structure}{fg=white, bg=fibeamer@green}
+ \setbeamercolor*{frametitle}{fg=fibeamer@green!25!white}
+ \setbeamercolor*{framesubtitle}{fg=white}
+ %% Text
+ \setbeamercolor*{normal text}{fg=white, bg=white}
+ %% Items
+ \setbeamercolor*{item}{fg=fibeamer@green!25!white}
+ \setbeamercolor{footnote mark}{fg=fibeamer@green!25!white}
+ %% Blocks
+ \setbeamercolor*{block title}{
+ use=structure, fg=white, bg=fibeamer@green!60!white}
+ \setbeamercolor*{block title example}{
+ use=example text, fg=white, bg=fibeamer@green!60!white}
+ \setbeamercolor*{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@green}
+ \setbeamercolor*{block body}{
+ fg=fibeamer@green, use=block title,
+ bg=fibeamer@gray!15!white}
+ \usebeamercolor*{normal text}
+ % Code listings
+ \lstset{
+ commentstyle=\color{green!25!white},
+ keywordstyle=\color{blue!25!white},
+ stringstyle=\color{red!25!white}}
+ }{%
+ \endgroup}
+% \end{macrocode}
+% Outside the |darkframes| environment, the light theme is used.
+% \begin{macrocode}
+ %% Structures
+ \setbeamercolor{structure}{fg=black!75!white, bg=white}
+ \setbeamercolor{frametitle}{fg=fibeamer@green}
+ \setbeamercolor{framesubtitle}{fg=black!75!white}
+ %% Text
+ \setbeamercolor{normal text}{fg=black}
+ %% Items
+ \setbeamercolor{item}{fg=fibeamer@green}
+ \setbeamercolor{footnote mark}{fg=fibeamer@green}
+ %% Blocks
+ \setbeamercolor{block title}{
+ use=structure, fg=white, bg=fibeamer@green!50!white}
+ \setbeamercolor{block title example}{
+ use=example text, fg=white, bg=fibeamer@green!50!white}
+ \setbeamercolor{block title alerted}{
+ use=alerted text, fg=white, bg=fibeamer@green}
+ \setbeamercolor{block body}{
+ fg=fibeamer@green, use=block title, bg=fibeamer@gray!20!white}
+ %% Title
+ \setbeamercolor{title}{fg=white, bg=fibeamer@green}
+ \setbeamercolor{title}{use=structure}
+ % Code listings
+ \lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breakatwhitespace=false,
+ breaklines=true,
+ commentstyle=\color{green!60!black},
+ extendedchars=true,
+ keywordstyle=\color{blue},
+ showspaces=false,
+ showstringspaces=false,
+ showtabs=false,
+ stringstyle=\color{violet}}
+\mode
+<all>
+% \end{macrocode}
diff --git a/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.ins b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.ins
new file mode 100644
index 00000000000..cba4da4352c
--- /dev/null
+++ b/Master/texmf-dist/source/latex/fibeamer/theme/mu/sci.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{beamercolorthemefibeamer-mu-sci.sty}{\from{sci.dtx}{}}}
+\endbatchfile