# HG changeset patch # User Markus Kaiser # Date 1400337890 -7200 # Node ID e852e2a62ce4b569d01353a70c15f0bbbb5da702 # Parent ab2aea16b8a0b6a14b09a66aafc3f7781c4621c5 presentation framework diff -r ab2aea16b8a0 -r e852e2a62ce4 minimum_bisection/beamerthemeLEA2.sty --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minimum_bisection/beamerthemeLEA2.sty Sat May 17 16:44:50 2014 +0200 @@ -0,0 +1,61 @@ +\ProvidesPackage{beamerthemeLEA2} + +\xdefinecolor{tumblue} {RGB}{ 0,101,189} +\xdefinecolor{tumgreen} {RGB}{162,173, 0} +\xdefinecolor{tumred} {RGB}{229, 52, 24} +\xdefinecolor{tumivory} {RGB}{218,215,203} +\xdefinecolor{tumorange} {RGB}{227,114, 34} +\xdefinecolor{tumlightblue}{RGB}{152,198,234} + +%% shadow, font, color, outer, inner +%% normal text, alerted text, example text, structure + +\useoutertheme{split} + +\setbeamercolor{normal text}{fg=black,bg=white} +\setbeamercolor{alerted text}{fg=tumred,bg=white} +\setbeamercolor{example text}{fg=tumgreen,bg=white} +\setbeamercolor{structure}{fg=tumblue,bg=white} +\setbeamercolor{titlelike}{fg=tumblue} +\setbeamercolor{subtitle}{fg=black} +\setbeamerfont{title}{series=\bfseries} + +\setbeamertemplate{sections/subsections in toc}[square] +\setbeamertemplate{items}[square] +\setbeamertemplate{navigation symbols}[only frame symbol] + +\setbeamertemplate{blocks}[default] + +\setbeamercolor{block title} {use=normal text, fg=black,bg=tumlightblue} +\setbeamercolor{block title alerted}{use=alerted text,fg=white,bg=alerted text.fg} +\setbeamercolor{block title example}{use=example text,fg=white,bg=example text.fg} + +\setbeamercolor{block body} {parent=normal text,use=block title, bg=block title.bg!25!bg} +\setbeamercolor{block body alerted}{parent=normal text,use=block title alerted,bg=block title.bg!25!bg} +\setbeamercolor{block body example}{parent=normal text,use=block title example,bg=block title example.bg!15!bg} + +%\pgfdeclareimage[height=5mm]{uni}{TU_Muenchen_Logo_Breit} +\pgfdeclareimage[height=5mm]{uni}{tum} +\logo{\pgfuseimage{uni}} + +\defbeamertemplate*{footline}{infolines theme}{% + \hspace*{2ex}\raisebox{1.5ex}[-1.5ex]{% + \tiny\insertframenumber{}/\inserttotalframenumber \hspace{5mm} \insertnavigation{0.8\paperwidth}}% +} + +\setbeamertemplate{frametitle}{ + \begin{beamercolorbox}[wd=\textwidth,leftskip=0mm]{frametitle} + \usebeamerfont*{frametitle} + \insertframetitle\hfill\parbox{10mm}{\vspace{-1.5mm}\insertlogo} + \end{beamercolorbox} + \vspace{-2.5mm}\textcolor{tumblue}{\noindent\rule{\textwidth}{0.4px}} +} +% hier kein Logo +\setbeamertemplate{sidebar right}{}%{\vfill\vskip2pt\llap{\usebeamertemplate***{navigation symbols}\hskip1mm}\vskip2pt} + +\setbeamertemplate{headline}{} + +\setbeamercovered{transparent} + +% escapeinside= removed for utf8 compatibility +\lstset{numbers=left, numberstyle=\tiny, numbersep=5pt, basicstyle=\small, backgroundcolor=\color{tumlightblue}} diff -r ab2aea16b8a0 -r e852e2a62ce4 minimum_bisection/preamble.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minimum_bisection/preamble.tex Sat May 17 16:44:50 2014 +0200 @@ -0,0 +1,64 @@ +\documentclass[compress, 9pt, german, t]{beamer} +\usepackage{etex} + +\usepackage[english]{babel} +\uselanguage{English} +\languagepath{English} + +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} + +\usepackage{arev} +\usepackage{mathpazo} +\usepackage{microtype} + +\usepackage{url} +\usepackage{listings} +\usepackage{xcolor} +\usepackage{tabu} +\usepackage{tikz} +\usepackage{pgfplots} +\pgfplotsset{compat=1.8} +\usetikzlibrary{automata} +\usetikzlibrary{calc} +\usetikzlibrary{shapes} +\usetikzlibrary{positioning} +\usetikzlibrary{chains} + +\usepackage{amsmath} +\usepackage{mathdots} +\usepackage{mathtools} +\mathtoolsset{showonlyrefs,showmanualtags} +\usepackage{mathrsfs} +\usepackage{csquotes} + +\usepackage{todonotes} + +\usepackage{beamerthemeLEA2} +\setbeamercovered{transparent} + +\newcommand{\N}{\mathbb{N}} +\newcommand{\Z}{\mathbb{Z}} +\newcommand{\Q}{\mathbb{Q}} +\newcommand{\R}{\mathbb{R}} +\newcommand{\C}{\mathbb{C}} +\newcommand{\Prob}{\mathrm{P}} +\newcommand{\Oh}{\mathcal{O}} + +\newcommand{\abs}[1]{\left\vert #1 \right\vert} +\newcommand{\powerset}[1]{\mathcal{P}\left( #1 \right)} +\newcommand{\setnot}[1]{\overline{#1}} +\newcommand{\setsymdiff}{\,\triangle\,} + +\newcommand{\defeq}{\coloneqq} %Mathtools already defines this + +\pgfdeclarelayer{background} +\pgfdeclarelayer{foreground} +\pgfsetlayers{background,main,foreground} + +\tikzstyle{edge} = [draw,very thick,->,>=latex] +\tikzstyle{pretty} = [circle,thick,draw,fill=tumblue!10] +\tikzstyle{every edge} = [edge] +\tikzstyle{every state} = [pretty] +\tikzstyle{automaton} = [shorten >=1pt, node distance = 3cm, auto, bend angle=20, initial text=] +\tikzstyle{small} = [every node/.style={scale=0.5}, baseline=(current bounding box.north), font=\Huge] diff -r ab2aea16b8a0 -r e852e2a62ce4 minimum_bisection/presentation.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minimum_bisection/presentation.tex Sat May 17 16:44:50 2014 +0200 @@ -0,0 +1,13 @@ +\input{preamble.tex} + +\title{Oblivious Routing and Minimum Bisection} +\subtitle{Approximation Algorithms Seminar} +\author{\href{mailto:markus.kaiser@in.tum.de}{Markus Kaiser}} +\date{May 28, 2014} + +\begin{document} +\begin{frame} + \titlepage +\end{frame} + +\end{document}