[pypy-commit] extradoc extradoc: update

fijal noreply at buildbot.pypy.org
Thu Oct 1 13:30:07 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r5560:b80c359f91b5
Date: 2015-10-01 13:31 +0200
http://bitbucket.org/pypy/extradoc/changeset/b80c359f91b5/

Log:	update

diff --git a/talk/pyconza2015/Makefile b/talk/pyconza2015/Makefile
new file mode 100644
--- /dev/null
+++ b/talk/pyconza2015/Makefile
@@ -0,0 +1,18 @@
+# you can find rst2beamer.py here:
+# http://codespeak.net/svn/user/antocuni/bin/rst2beamer.py
+
+# WARNING: to work, it needs this patch for docutils
+# https://sourceforge.net/tracker/?func=detail&atid=422032&aid=1459707&group_id=38414
+
+talk.pdf: talk.rst author.latex stylesheet.latex
+	python ../bin/rst2beamer.py --stylesheet=stylesheet.latex --documentoptions=14pt --input-encoding=utf8 --output-encoding=utf8 talk.rst talk.latex || exit
+	#/home/antocuni/.virtualenvs/rst2beamer/bin/python `which rst2beamer.py` --stylesheet=stylesheet.latex --documentoptions=14pt talk.rst talk.latex || exit
+	sed 's/\\date{}/\\input{author.latex}/' -i talk.latex || exit
+	#sed 's/\\maketitle/\\input{title.latex}/' -i talk.latex || exit
+	pdflatex talk.latex  || exit
+
+view: talk.pdf
+	evince talk.pdf &
+
+xpdf: talk.pdf
+	xpdf talk.pdf &
diff --git a/talk/pyconza2015/author.latex b/talk/pyconza2015/author.latex
new file mode 100644
--- /dev/null
+++ b/talk/pyconza2015/author.latex
@@ -0,0 +1,8 @@
+\definecolor{rrblitbackground}{rgb}{0.0, 0.0, 0.0}
+
+\title[Python and PyPy performance]{Python and PyPy performance\\(not) for dummies}
+\author[antocuni,fijal]
+{Antonio Cuni and Maciej Fijałkowski}
+
+\institute{EuroPython 2015}
+\date{July 21, 2015}
diff --git a/talk/pyconza2015/stylesheet.latex b/talk/pyconza2015/stylesheet.latex
new file mode 100644
--- /dev/null
+++ b/talk/pyconza2015/stylesheet.latex
@@ -0,0 +1,10 @@
+\usetheme{Boadilla}
+\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}


More information about the pypy-commit mailing list