Skip to content

Commit cd4f0c0

Browse files
authored
Merge pull request #9 from pdfpc/video-example
Rewrite the video demo
2 parents 31b56bb + 48e9967 commit cd4f0c0

File tree

7 files changed

+229
-209
lines changed

7 files changed

+229
-209
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
*.pdfpc
99

1010
demo/pdfpc-demo.pdf
11+
demo/pdfpc-video-example/video-example.pdf

demo/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Executables
55
PDFLATEX = pdflatex
66

7+
RM = rm -f
8+
79
# Rules
810
.tex.pdf :
911
$(PDFLATEX) $< && $(PDFLATEX) $<

demo/pdfpc-video-example/Makefile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Suffixes
2+
.SUFFIXES : .tex .pdf
3+
4+
# Executables
5+
PDFLATEX = pdflatex
6+
7+
RM = rm -f
8+
9+
# Rules
10+
.tex.pdf :
11+
$(PDFLATEX) $< && $(PDFLATEX) $<
12+
13+
# Config
14+
DEMO = video-example
15+
16+
PDFDOCS = $(DEMO).pdf
17+
18+
# Targets
19+
all : $(PDFDOCS)
20+
21+
clean :
22+
$(RM) $(PDFDOCS) *.aux *.log *.toc *.nav *.out *.snm *.vrb

demo/pdfpc-video-example/a17_moon.jpg

-160 KB
Binary file not shown.

demo/pdfpc-video-example/pdfpc-commands.sty

-163
This file was deleted.
-219 KB
Binary file not shown.

0 commit comments

Comments
 (0)