diff --git a/Makefile b/Makefile index 92bb349..0548d79 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,6 @@ TEMP_DIR = .temptex INS = mtheme.ins DEMO_SRC = demo.tex DEMO_PDF = demo.pdf -DEMO_MIN_SRC = demo-minimal.tex -DEMO_MIN_PDF = demo-minimal.pdf DOC_SRC = mtheme.dtx DOC_PDF = mtheme.pdf DTX = $(wildcard *.dtx) @@ -20,9 +18,9 @@ DOCKER_IMAGE = latex-image DOCKER_CONTAINER = latex-container -.PHONY: sty doc demo demo-min ctan clean install uninstall docker-run docker-build docker-rm +.PHONY: sty doc demo ctan clean install uninstall docker-run docker-build docker-rm -all: sty doc demo demo-min +all: sty doc demo $(STY): $(DTX) $(INS) @latex $(INS) @@ -31,10 +29,6 @@ $(DEMO_PDF): $(STY) $(DEMO_SRC) $(TEXC) $(DEMO_SRC) @cp $(TEMP_DIR)/$(DEMO_PDF) . -$(DEMO_MIN_PDF): $(STY) $(DEMO_MIN_SRC) - $(TEXC) $(DEMO_MIN_SRC) - @cp $(TEMP_DIR)/$(DEMO_MIN_PDF) . - $(DOC_PDF): $(DOC_SRC) $(DTX) @$(TEXC) $(DOC_SRC) @cp $(TEMP_DIR)/$(DOC_PDF) . @@ -45,8 +39,6 @@ doc: $(DOC_PDF) demo: $(DEMO_PDF) -demo-min: $(DEMO_MIN_PDF) - ctan: $(CTAN_CONTENT) @mkdir -p mtheme @cp $(CTAN_CONTENT) mtheme/ diff --git a/demo-minimal.pdf b/demo-minimal.pdf deleted file mode 100644 index ad4782b..0000000 Binary files a/demo-minimal.pdf and /dev/null differ diff --git a/demo-minimal.tex b/demo-minimal.tex deleted file mode 100644 index 8326af2..0000000 --- a/demo-minimal.tex +++ /dev/null @@ -1,41 +0,0 @@ -\documentclass[10pt]{beamer} - -\usetheme{m} -\metroset{progressbar=frametitle} -\title{A modern beamer theme} -\subtitle{} -\date{\today} -\author{Matthias Vogelgesang} -\institute{Institute or miscellaneous information} - -\begin{document} - -\maketitle - -\section{Section 1} - -\begin{frame}{Frame 1} - Content 1 -\end{frame} - -\begin{frame}{Frame 2} - Content 2 -\end{frame} - -\section{Section 2} - -\begin{frame}{Frame 3} - Content 3 - \begin{block}{Block 1} - Block 1 content - \end{block} -\end{frame} - -\begin{frame}{Frame 4} - Content 4 - \begin{block}{Block 2} - Block 2 content - \end{block} -\end{frame} - -\end{document}