removed the testing minimal demo

This commit is contained in:
Benjamin Weiss 2015-06-30 09:35:55 +02:00
parent 2d84826c78
commit cae94eb926
3 changed files with 2 additions and 51 deletions

View File

@ -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/

Binary file not shown.

View File

@ -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}