From b0a0984f1621bb8159737ae25f56047926f19446 Mon Sep 17 00:00:00 2001 From: Orestis Malaspinas <orestis.malaspinas@hesge.ch> Date: Fri, 8 Jun 2018 11:30:30 +0200 Subject: [PATCH] changed filenames and adapted makefile --- Makefile | 8 ++++---- cours.md => intro.md | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename cours.md => intro.md (100%) diff --git a/Makefile b/Makefile index c9e702e..00d05eb 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ BEAMEROPTIONS += --slide-level=1 REVEALOPRIONS = -t revealjs REVEALOPRIONS += --template ./default.revealjs # REVEALOPRIONS += -V theme=moon -REVEALOPRIONS += -V center=false +REVEALOPRIONS += -V center=true REVEALOPRIONS += -V margin=0 REVEALOPRIONS += -V minScale=0.2 REVEALOPRIONS += -V maxScale=2.0 @@ -27,13 +27,13 @@ REVEALOPRIONS += --highlight-style espresso # all: cours.pdf cours.html -all: cours.html +all: intro.html # cours.pdf: cours.md Makefile # pandoc -s $(BEAMEROPTIONS) -o $@ $< -cours.html: cours.md Makefile +intro.html: intro.md Makefile pandoc -s $(REVEALOPRIONS) -o $@ $< clean: - rm -rf cours.pdf cours.html \ No newline at end of file + rm -rf intro.html \ No newline at end of file diff --git a/cours.md b/intro.md similarity index 100% rename from cours.md rename to intro.md -- GitLab