Skip to content
Snippets Groups Projects
Commit 1cdceb5d authored by Vít Novotný's avatar Vít Novotný
Browse files

Added proper coloring of `\qed`.

parent 9638c4b2
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
\NeedsTeXFormat{LaTeX2e} \NeedsTeXFormat{LaTeX2e}
% %
% Define `\fibeamer@version` and store it in the `VERSION.tex` file \fi % Define `\fibeamer@version` and store it in the `VERSION.tex` file \fi
\def\fibeamer@version{2016/01/13 v1.1.1-dev fibeamer MU beamer theme} \def\fibeamer@version{2016/01/13 v1.1.1:2-dev fibeamer MU beamer theme}
% {\newwrite\f\openout\f=VERSION\write\f{\fibeamer@version}\closeout\f} % {\newwrite\f\openout\f=VERSION\write\f{\fibeamer@version}\closeout\f}
% %
% \iffalse Use `\fibeamer@version` as the PDF creator key. % \iffalse Use `\fibeamer@version` as the PDF creator key.
...@@ -340,7 +340,7 @@ ...@@ -340,7 +340,7 @@
% \subsection{The \texttt{fallbackLogo} option} % \subsection{The \texttt{fallbackLogo} option}
% \changes{v1.1.0:3}{2016/01/11}{Added the \cs{fibeamer@fallbackLogo} % \changes{v1.1.0:3}{2016/01/11}{Added the \cs{fibeamer@fallbackLogo}
% macro. [VN]} % macro. [VN]}
% \changes{v1.1.1}{2016/01/14}{Added the \texttt{fallbackLogo} % \changes{v1.1.1:1}{2016/01/14}{Added the \texttt{fallbackLogo}
% option. [VN]} % option. [VN]}
% The |\fibeamer@fallbackLogo| macro contains the filename of the % The |\fibeamer@fallbackLogo| macro contains the filename of the
% logo file to be used, if |\fibeamer@logo| does not exist. The % logo file to be used, if |\fibeamer@logo| does not exist. The
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
% \begin{macrocode} % \begin{macrocode}
\NeedsTeXFormat{LaTeX2e} \NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{fibeamer/theme/mu/% \ProvidesPackage{fibeamer/theme/mu/%
beamercolorthemefibeamer-mu}[2016/01/12] beamercolorthemefibeamer-mu}[2016/01/14]
% \end{macrocode} % \end{macrocode}
% \begin{macro}{\darkframes} % \begin{macro}{\darkframes}
% The |darkframes| environment switches the color definitions to % The |darkframes| environment switches the color definitions to
...@@ -54,18 +54,28 @@ ...@@ -54,18 +54,28 @@
% |fibeamer@backgroundOuter| colors will be defined by the % |fibeamer@backgroundOuter| colors will be defined by the
% subsequently loaded color theme. % subsequently loaded color theme.
% \begin{macrocode} % \begin{macrocode}
\defbeamertemplate*{background canvas}{fibeamer}{% \defbeamertemplate*{background canvas}{fibeamer}{%
\ifthenelse{% \ifthenelse{%
\boolean{fibeamer@dark} \OR \c@framenumber=0 \boolean{fibeamer@dark} \OR \c@framenumber=0
}{% }{%
\begin{tikzpicture} \begin{tikzpicture}
\clip (0,\fibeamer@lengths@clipbottom) rectangle \clip (0,\fibeamer@lengths@clipbottom) rectangle
(\paperwidth,\fibeamer@lengths@cliptop); (\paperwidth,\fibeamer@lengths@cliptop);
\path [inner color = fibeamer@backgroundInner, \path [inner color = fibeamer@backgroundInner,
outer color = fibeamer@backgroundOuter] outer color = fibeamer@backgroundOuter]
(0,0) rectangle (\paperwidth,\paperwidth); (0,0) rectangle (\paperwidth,\paperwidth);
\end{tikzpicture} \end{tikzpicture}
}{}} }{}}
% \end{macrocode}
% The |\qed| symbol inserted at the end of proofs will have the
% same color as the rest of the proof.
% \changes{v1.1.1:2}{2016/01/14}{Added proper coloring of
% \cs{qed} to the themes of the Masaryk University in Brno. [VN]}
% \begin{macrocode}
\setbeamercolor{qed symbol}{%
use=block body,
fg=block body.fg,
bg=block body.bg}
\mode \mode
<all> <all>
% \end{macrocode} % \end{macrocode}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment