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 Unified Diffs Ignore Whitespace Patch

Added Makefile version [9cd58208c3].























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PNGS = pngs/network-private.png pngs/network-public.png pngs/network-community.png
PNGS_BEAMER = pngs/confine,background.png

.PHONY:	clean

all:	slides,lightning.pdf

slides,lightning.pdf:	script,lightning.txt $(PNGS) slides-header.tex $(PNGS_BEAMER)
	pandoc -t beamer -H slides-header.tex slides,lightning.txt -o $@

slides,lightning.html:	script,lightning.txt $(PNGS)
	pandoc -t dzslides --self-contained script,lightning.txt -o $@

pngs/confine,background.png:	logos/confine,logo.svg
	inkscape -z -D -e $@ -w 1024 $<

pngs/network-private.png:	diagrams/network-private.dia
	dia -e $@ -s 1024x $<

pngs/network-public.png:	diagrams/network-public.dia
	dia -e $@ -s 1024x $<

pngs/network-community.png:	diagrams/network-community.dia
	dia -e $@ -s 1024x $<

clean:
	rm -f $(PNGS) $(PNGS_BEAMER) slides,lightning.pdf slides,lightning.html

Added slides-header.tex version [ee98e694dd].

































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