[pypy-svn] r54548 - pypy/extradoc/talk/s3-2008

cfbolz at codespeak.net cfbolz at codespeak.net
Thu May 8 11:45:45 CEST 2008


Author: cfbolz
Date: Thu May  8 11:45:43 2008
New Revision: 54548

Added:
   pypy/extradoc/talk/s3-2008/Makefile
   pypy/extradoc/talk/s3-2008/beamerouterthememy.sty
   pypy/extradoc/talk/s3-2008/beamerthemeWarsaw.sty
   pypy/extradoc/talk/s3-2008/talk.tex
Log:
set up the latex files for the s3 talk


Added: pypy/extradoc/talk/s3-2008/Makefile
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/s3-2008/Makefile	Thu May  8 11:45:43 2008
@@ -0,0 +1,12 @@
+%.pdf: %.eps
+	epstopdf $<
+
+viewtalk: talk.pdf
+	evince talk.pdf  &
+
+clean:
+	rm talk.pdf
+
+talk.pdf: talk.tex beamerouterthememy.sty beamerthemeWarsaw.sty
+	pdflatex talk
+

Added: pypy/extradoc/talk/s3-2008/beamerouterthememy.sty
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/s3-2008/beamerouterthememy.sty	Thu May  8 11:45:43 2008
@@ -0,0 +1,39 @@
+\ProvidesPackageRCS $Header: /cvsroot/latex-beamer/latex-beamer/themes/outer/beamerouterthemesplit.sty,v 1.4 2004/10/07 22:21:16 tantau Exp $
+
+% Copyright 2003 by Till Tantau <tantau at users.sourceforge.net>
+%
+% This program can be redistributed and/or modified under the terms
+% of the GNU Public License, version 2.
+
+\mode<presentation>
+
+\setbeamercolor{section in head/foot}{parent=palette quaternary}
+\setbeamercolor{subsection in head/foot}{parent=palette primary}
+
+\setbeamercolor{author in head/foot}{parent=section in head/foot}
+\setbeamercolor{title in head/foot}{parent=subsection in head/foot}
+
+
+
+\usesectionheadtemplate
+  {\hfill\insertsectionhead}
+  {\hfill\color{fg!50!bg}\insertsectionhead}
+
+
+
+
+\defbeamertemplate*{footline}{split theme}
+{%
+  \leavevmode%
+  \hbox{\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot}%
+    \usebeamerfont{author in head/foot}\insertshortauthor
+  \end{beamercolorbox}%
+  \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
+    \usebeamerfont{title in head/foot}\insertshorttitle
+  \end{beamercolorbox}}%
+  \vskip0pt%
+}
+
+
+\mode
+<all>

Added: pypy/extradoc/talk/s3-2008/beamerthemeWarsaw.sty
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/s3-2008/beamerthemeWarsaw.sty	Thu May  8 11:45:43 2008
@@ -0,0 +1,18 @@
+\ProvidesPackageRCS $Header: /cvsroot/latex-beamer/latex-beamer/themes/theme/beamerthemeWarsaw.sty,v 1.8 2004/10/07 20:53:10 tantau Exp $
+
+% Copyright 2003 by Till Tantau <tantau at users.sourceforge.net>
+%
+% This program can be redistributed and/or modified under the terms
+% of the GNU Public License, version 2.
+
+\mode<presentation>
+
+\useinnertheme[shadow=true]{rounded}
+\useoutertheme{my}
+\usecolortheme{orchid}
+\usecolortheme{whale}
+
+\setbeamerfont{block title}{size={}}
+
+\mode
+<all>

Added: pypy/extradoc/talk/s3-2008/talk.tex
==============================================================================
--- (empty file)
+++ pypy/extradoc/talk/s3-2008/talk.tex	Thu May  8 11:45:43 2008
@@ -0,0 +1,73 @@
+\documentclass[utf8x]{beamer}
+
+\mode<presentation>
+{
+  \usetheme{Warsaw}
+
+  %\setbeamercovered{transparent}
+}
+
+
+\usepackage[english]{babel}
+
+\usepackage[utf8x]{inputenc}
+
+\usepackage{times}
+\usepackage[T1]{fontenc}
+
+\title{Back to the Future in one Week --- Implementing a Smalltalk VM in PyPy}
+
+\author{Carl Friedrich Bolz, Adrian Kuhn, Adrian Lienhard, Nicholas D. Matsakis, Oscar Nierstrasz, Lukas Renggli, Armin Rigo, Toon Verwaest}
+
+
+\date{Workshop on Self-sustaining Systems, May 16 2008}
+
+
+% Delete this, if you do not want the table of contents to pop up at
+% the beginning of each subsection:
+%\AtBeginSubsection[]
+%{
+%  \begin{frame}<beamer>
+%    \frametitle{Outline}
+%    \tableofcontents[currentsection,currentsubsection]
+%  \end{frame}
+%}
+
+
+% If you wish to uncover everything in a step-wise fashion, uncomment
+% the following command: 
+
+%\beamerdefaultoverlayspecification{<+->}
+
+
+\begin{document}
+
+\begin{frame}
+  \titlepage
+\end{frame}
+
+%\begin{frame}
+%  \frametitle{Outline}
+%  \tableofcontents
+  % You might wish to add the option [pausesections]
+%\end{frame}
+
+\begin{frame}
+  \frametitle{Scope}
+  This talk is about: XXX
+  \begin{itemize}
+  \item
+    writing a Squeak implementation
+  \item
+    with eight people
+  \item
+    in five days
+  \item
+    using PyPy
+\end{frame}
+
+
+
+\end{document}
+
+



More information about the Pypy-commit mailing list