Community-Lab introduction

Check-in [ef1e71b301]
Login
Overview
Comment:Makefile and LaTeX header to generate Beamer and DZSlides presentations.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | fosdem-2014
Files: files | file ages | folders
SHA1:ef1e71b301514b1745d5e67edb1488dd9166b224
User & Date: ivan on 2014-01-28 19:11:52
Other Links: manifest | tags
Context
2014-01-29
14:34
Rename ``pngs`` to ``imgs``, use PDF for background. check-in: 79f59fb314 user: ivan tags: fosdem-2014
2014-01-28
19:11
Makefile and LaTeX header to generate Beamer and DZSlides presentations. check-in: ef1e71b301 user: ivan tags: fosdem-2014
19:10
Cheesy way of showing network ownership diagrams. check-in: 636dffad94 user: ivan tags: fosdem-2014
Changes
Hide Diffs Side-by-Side Diffs Ignore Whitespace Patch

Added Makefile version [9cd58208c3].

            1  +PNGS = pngs/network-private.png pngs/network-public.png pngs/network-community.png
            2  +PNGS_BEAMER = pngs/confine,background.png
            3  +
            4  +.PHONY:	clean
            5  +
            6  +all:	slides,lightning.pdf
            7  +
            8  +slides,lightning.pdf:	script,lightning.txt $(PNGS) slides-header.tex $(PNGS_BEAMER)
            9  +	pandoc -t beamer -H slides-header.tex slides,lightning.txt -o $@
           10  +
           11  +slides,lightning.html:	script,lightning.txt $(PNGS)
           12  +	pandoc -t dzslides --self-contained script,lightning.txt -o $@
           13  +
           14  +pngs/confine,background.png:	logos/confine,logo.svg
           15  +	inkscape -z -D -e $@ -w 1024 $<
           16  +
           17  +pngs/network-private.png:	diagrams/network-private.dia
           18  +	dia -e $@ -s 1024x $<
           19  +
           20  +pngs/network-public.png:	diagrams/network-public.dia
           21  +	dia -e $@ -s 1024x $<
           22  +
           23  +pngs/network-community.png:	diagrams/network-community.dia
           24  +	dia -e $@ -s 1024x $<
           25  +
           26  +clean:
           27  +	rm -f $(PNGS) $(PNGS_BEAMER) slides,lightning.pdf slides,lightning.html

Added slides-header.tex version [ee98e694dd].

            1  +%% https://tex.stackexchange.com/questions/26458/beamer-background-image-centered
            2  +%% https://tex.stackexchange.com/questions/74038/transparent-image-background-in-beamer
            3  +\usepackage{tikz}
            4  +\usebackgroundtemplate {
            5  +  \vbox to \paperheight {
            6  +    \vfil
            7  +    \hbox to \paperwidth {
            8  +      \hfil
            9  +      \tikz\node[opacity=0.25] {
           10  +        \includegraphics[width=0.75\textwidth]{pngs/confine,background.png}
           11  +      };
           12  +      \hfil
           13  +    }
           14  +    \vfil
           15  +  }
           16  +}