From 36efb155be9d83fb8420ecd1456253808c0fb038 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Mon, 6 Mar 2023 22:36:54 -0500 Subject: [PATCH] slides-preamble.tex: Added missing file This has been missing for all these years; sorry everyone! Thanks to Amin Bandali for pointing this out to me. --- .gitignore | 2 +- slides-preamble.tex | 62 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 slides-preamble.tex diff --git a/.gitignore b/.gitignore index ba30eff..eebbf6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # build output *.aux *.pdf -*.tex +slides.tex *.html *.bbl diff --git a/slides-preamble.tex b/slides-preamble.tex new file mode 100644 index 0000000..03d7131 --- /dev/null +++ b/slides-preamble.tex @@ -0,0 +1,62 @@ +% Beamer configuration for slides.org +% +% Copyright (C) 2019 Mike Gerwitz +% +% This program is 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. +% +% This program 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 this program. If not, see . + +\beamertemplatenavigationsymbolsempty +\setbeamerfont{title}{size = \Large} + +\setbeamertemplate{headline}{} +\setbeamertemplate{page number in head/foot}{} + +% Palette can be found at +% (uppercase seems to be necessary in some contexts for hex values) +\definecolor{TangoLight}{HTML}{eeeeec} +\definecolor{TangoDark}{HTML}{2e3436} +\definecolor{TangoBlue}{HTML}{729FCF} + +\setbeamercolor{background canvas}{bg=black} +\setbeamercolor{subtitle}{fg=TangoLight} +\setbeamercolor{normal text}{fg=TangoLight} +\setbeamercolor{alerted text}{fg=TangoBlue} + +\setbeamercolor{author in head/foot}{bg=TangoDark} +\setbeamercolor{title in head/foot}{bg=TangoDark} +\setbeamercolor{date in head/foot}{bg=TangoDark} + +\setbeamercolor{frametitle}{bg=TangoDark} +\setbeamercolor{frametitle right}{bg=TangoDark} + +\setbeamertemplate{blocks}[shadow=false] +\setbeamercolor{block title}{bg=TangoDark} +\setbeamercolor{block body}{bg=TangoDark} + +\usefonttheme{serif} + +\usepackage{ccfonts} +\usepackage[T1]{fontenc} +\usepackage{color} +\usepackage[backend=biber]{biblatex} +\usepackage{color} +\usepackage{listings} + +\def\subskip{\vskip0.5in} +\def\medsubskip{\vskip0.25in} +\def\smallsubskip{\vskip0.15in} + +% Centering kluge (\aftergroup needed if slide does not contain subsections +% like notes in the TeX output, so just do both and hope for the best). +\def\fullslidetext{\Huge\aftergroup\centering\centering} +\def\fullsubtext{\subskip\Large}