[pypy-svn] extradoc extradoc: Add make and stuff

fijal commits-noreply at bitbucket.org
Thu Mar 10 15:15:50 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r3370:ea1c214c19c5
Date: 2011-03-10 09:15 -0500
http://bitbucket.org/pypy/extradoc/changeset/ea1c214c19c5/

Log:	Add make and stuff

diff --git a/talk/pycon2011/whyslow/title.latex b/talk/pycon2011/whyslow/title.latex
new file mode 100644
--- /dev/null
+++ b/talk/pycon2011/whyslow/title.latex
@@ -0,0 +1,5 @@
+\begin{titlepage}
+\begin{figure}[h]
+\scalebox{0.8}{\includegraphics[width=80px]{../../img/py-web.png}}
+\end{figure}
+\end{titlepage}

diff --git a/talk/pycon2011/whyslow/Makefile b/talk/pycon2011/whyslow/Makefile
new file mode 100644
--- /dev/null
+++ b/talk/pycon2011/whyslow/Makefile
@@ -0,0 +1,10 @@
+
+
+whyslow-talk.pdf: talk.rst author.latex title.latex stylesheet.latex
+	rst2beamer --input-encoding=utf-8 --output-encoding=utf-8 --stylesheet=stylesheet.latex --documentoptions=14pt --theme=Warsaw --overlaybullets=False talk.rst whyslow-talk.latex || exit
+	sed 's/\\date{}/\\input{author.latex}/' -i whyslow-talk.latex || exit
+	sed 's/\\maketitle/\\input{title.latex}/' -i whyslow-talk.latex || exit
+	pdflatex whyslow-talk.latex  || exit
+
+view: whyslow-talk.pdf
+	evince whyslow-talk.pdf &
\ No newline at end of file

diff --git a/talk/pycon2011/whyslow/stylesheet.latex b/talk/pycon2011/whyslow/stylesheet.latex
new file mode 100644
--- /dev/null
+++ b/talk/pycon2011/whyslow/stylesheet.latex
@@ -0,0 +1,10 @@
+\usetheme{Warsaw}
+\setbeamercovered{transparent}
+\setbeamertemplate{navigation symbols}{}
+
+\definecolor{darkgreen}{rgb}{0, 0.5, 0.0}
+\newcommand{\docutilsrolegreen}[1]{\color{darkgreen}#1\normalcolor}
+\newcommand{\docutilsrolered}[1]{\color{red}#1\normalcolor}
+
+\newcommand{\green}[1]{\color{darkgreen}#1\normalcolor}
+\newcommand{\red}[1]{\color{red}#1\normalcolor}

diff --git a/talk/pycon2011/whyslow/author.latex b/talk/pycon2011/whyslow/author.latex
new file mode 100644
--- /dev/null
+++ b/talk/pycon2011/whyslow/author.latex
@@ -0,0 +1,8 @@
+\definecolor{rrblitbackground}{rgb}{0.0, 0.0, 0.0}
+
+\title[PyPy]{Why is Python slow and how PyPy can help}
+\author[fijal, agaynor, arigato]
+{Maciej Fija&#322;kowski, Alex Gaynor, Armin Rigo}
+
+\institute{PyCon 2011}
+\date{11 March 2011}


More information about the Pypy-commit mailing list