removed the testing minimal demo
This commit is contained in:
parent
2d84826c78
commit
cae94eb926
12
Makefile
12
Makefile
|
@ -6,8 +6,6 @@ TEMP_DIR = .temptex
|
||||||
INS = mtheme.ins
|
INS = mtheme.ins
|
||||||
DEMO_SRC = demo.tex
|
DEMO_SRC = demo.tex
|
||||||
DEMO_PDF = demo.pdf
|
DEMO_PDF = demo.pdf
|
||||||
DEMO_MIN_SRC = demo-minimal.tex
|
|
||||||
DEMO_MIN_PDF = demo-minimal.pdf
|
|
||||||
DOC_SRC = mtheme.dtx
|
DOC_SRC = mtheme.dtx
|
||||||
DOC_PDF = mtheme.pdf
|
DOC_PDF = mtheme.pdf
|
||||||
DTX = $(wildcard *.dtx)
|
DTX = $(wildcard *.dtx)
|
||||||
|
@ -20,9 +18,9 @@ DOCKER_IMAGE = latex-image
|
||||||
DOCKER_CONTAINER = latex-container
|
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)
|
$(STY): $(DTX) $(INS)
|
||||||
@latex $(INS)
|
@latex $(INS)
|
||||||
|
@ -31,10 +29,6 @@ $(DEMO_PDF): $(STY) $(DEMO_SRC)
|
||||||
$(TEXC) $(DEMO_SRC)
|
$(TEXC) $(DEMO_SRC)
|
||||||
@cp $(TEMP_DIR)/$(DEMO_PDF) .
|
@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)
|
$(DOC_PDF): $(DOC_SRC) $(DTX)
|
||||||
@$(TEXC) $(DOC_SRC)
|
@$(TEXC) $(DOC_SRC)
|
||||||
@cp $(TEMP_DIR)/$(DOC_PDF) .
|
@cp $(TEMP_DIR)/$(DOC_PDF) .
|
||||||
|
@ -45,8 +39,6 @@ doc: $(DOC_PDF)
|
||||||
|
|
||||||
demo: $(DEMO_PDF)
|
demo: $(DEMO_PDF)
|
||||||
|
|
||||||
demo-min: $(DEMO_MIN_PDF)
|
|
||||||
|
|
||||||
ctan: $(CTAN_CONTENT)
|
ctan: $(CTAN_CONTENT)
|
||||||
@mkdir -p mtheme
|
@mkdir -p mtheme
|
||||||
@cp $(CTAN_CONTENT) mtheme/
|
@cp $(CTAN_CONTENT) mtheme/
|
||||||
|
|
BIN
demo-minimal.pdf
BIN
demo-minimal.pdf
Binary file not shown.
|
@ -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}
|
|
Loading…
Reference in New Issue