Merge pull request #132 from rchurchley/organize
Reorganize repository into folders
This commit is contained in:
commit
5ee8cda15e
|
@ -1,7 +1,6 @@
|
||||||
demo.pdf
|
# Temporary files
|
||||||
mtheme.pdf
|
|
||||||
|
|
||||||
*.fls
|
.latex-cache
|
||||||
*.acn
|
*.acn
|
||||||
*.acr
|
*.acr
|
||||||
*.alg
|
*.alg
|
||||||
|
@ -10,6 +9,7 @@ mtheme.pdf
|
||||||
*.blg
|
*.blg
|
||||||
*.dvi
|
*.dvi
|
||||||
*.fdb_latexmk
|
*.fdb_latexmk
|
||||||
|
*.fls
|
||||||
*.glg
|
*.glg
|
||||||
*.glo
|
*.glo
|
||||||
*.gls
|
*.gls
|
||||||
|
@ -34,6 +34,8 @@ mtheme.pdf
|
||||||
*.vrb
|
*.vrb
|
||||||
*.xdy
|
*.xdy
|
||||||
*.tdo
|
*.tdo
|
||||||
*.sty
|
|
||||||
|
|
||||||
.temptex
|
|
||||||
|
# Output
|
||||||
|
|
||||||
|
*.sty
|
||||||
|
|
86
Makefile
86
Makefile
|
@ -1,65 +1,75 @@
|
||||||
|
INS = source/beamerthemem.ins
|
||||||
|
PACKAGE_SRC = $(wildcard source/*.dtx)
|
||||||
|
PACKAGE_STY = $(notdir $(PACKAGE_SRC:%.dtx=%.sty))
|
||||||
|
DEMO_SRC = demo/demo.tex demo/demo.bib
|
||||||
|
DEMO_PDF = demo/demo.pdf
|
||||||
|
DOC_SRC = doc/metropolistheme.dtx
|
||||||
|
DOC_PDF = doc/metropolistheme.pdf
|
||||||
|
|
||||||
|
CTAN_CONTENT = $(INS) $(PACKAGE_SRC) $(DOC_PDF)
|
||||||
|
|
||||||
TEXMFHOME = $(shell kpsewhich -var-value=TEXMFHOME)
|
TEXMFHOME = $(shell kpsewhich -var-value=TEXMFHOME)
|
||||||
INSTALL_DIR = $(TEXMFHOME)/tex/latex/mtheme
|
INSTALL_DIR = $(TEXMFHOME)/tex/latex/mtheme
|
||||||
DOC_DIR = $(TEXMFHOME)/doc/latex/mtheme
|
DOC_DIR = $(TEXMFHOME)/doc/latex/mtheme
|
||||||
TEMP_DIR = .temptex
|
CACHE_DIR := $(shell pwd)/.latex-cache
|
||||||
|
|
||||||
INS = mtheme.ins
|
COMPILE_TEX := latexmk -xelatex -output-directory=$(CACHE_DIR)
|
||||||
DEMO_SRC = demo.tex
|
export TEXINPUTS:=$(shell pwd):$(shell pwd)/source:${TEXINPUTS}
|
||||||
DEMO_PDF = demo.pdf
|
|
||||||
DOC_SRC = mtheme.dtx
|
|
||||||
DOC_PDF = mtheme.pdf
|
|
||||||
DTX = $(wildcard *.dtx)
|
|
||||||
STY = $(patsubst %.dtx,%.sty,$(wildcard beamer*.dtx pgfplotsthemetol.dtx))
|
|
||||||
CTAN_CONTENT = $(INS) $(DTX) $(DOC_PDF)
|
|
||||||
|
|
||||||
TEXC := latexmk -xelatex -output-directory=$(TEMP_DIR)
|
|
||||||
|
|
||||||
DOCKER_IMAGE = latex-image
|
DOCKER_IMAGE = latex-image
|
||||||
DOCKER_CONTAINER = latex-container
|
DOCKER_CONTAINER = latex-container
|
||||||
|
|
||||||
|
.PHONY: all sty doc demo clean install uninstall ctan clean-cache clean-sty ctan-version docker-run docker-build docker-rm
|
||||||
|
|
||||||
.PHONY: sty doc demo ctan clean install uninstall docker-run docker-build docker-rm
|
all: sty doc
|
||||||
|
|
||||||
all: sty doc demo
|
sty: $(PACKAGE_STY)
|
||||||
|
|
||||||
$(STY): $(DTX) $(INS)
|
|
||||||
@latex $(INS)
|
|
||||||
|
|
||||||
$(DEMO_PDF): $(STY) $(DEMO_SRC)
|
|
||||||
$(TEXC) $(DEMO_SRC)
|
|
||||||
@cp $(TEMP_DIR)/$(DEMO_PDF) .
|
|
||||||
|
|
||||||
$(DOC_PDF): $(DOC_SRC) $(DTX)
|
|
||||||
@$(TEXC) $(DOC_SRC)
|
|
||||||
@cp $(TEMP_DIR)/$(DOC_PDF) .
|
|
||||||
|
|
||||||
sty: $(STY)
|
|
||||||
|
|
||||||
doc: $(DOC_PDF)
|
doc: $(DOC_PDF)
|
||||||
|
|
||||||
demo: $(DEMO_PDF)
|
demo: $(DEMO_PDF)
|
||||||
|
|
||||||
ctan: $(CTAN_CONTENT)
|
clean: clean-cache clean-sty
|
||||||
@mkdir -p mtheme
|
|
||||||
@cp $(CTAN_CONTENT) mtheme/
|
|
||||||
@zip -q mtheme-$(shell grep -A1 ProvidesPackage < beamerthemem.dtx | grep -P -o '\d\.\d\.\d').zip mtheme/*
|
|
||||||
@rm -rf mtheme
|
|
||||||
|
|
||||||
clean:
|
install: $(PACKAGE_STY) $(DOC_PDF)
|
||||||
@git clean -xfd
|
|
||||||
|
|
||||||
install: $(STY) $(DOC_PDF)
|
|
||||||
@mkdir -p $(INSTALL_DIR)
|
@mkdir -p $(INSTALL_DIR)
|
||||||
@cp $(STY) $(INSTALL_DIR)
|
@cp $(PACKAGE_STY) $(INSTALL_DIR)
|
||||||
@mkdir -p $(DOC_DIR)
|
@mkdir -p $(DOC_DIR)
|
||||||
@cp $(DOC_PDF) $(DOC_DIR)
|
@cp $(DOC_PDF) $(DOC_DIR)
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@rm -f $(addprefix $(INSTALL_DIR)/, $(STY))
|
@rm -f $(addprefix $(INSTALL_DIR)/, $(PACKAGE_STY))
|
||||||
@rm -f $(DOC_DIR)/$(DOC_PDF)
|
|
||||||
@rmdir $(INSTALL_DIR)
|
@rmdir $(INSTALL_DIR)
|
||||||
|
@rm -f $(DOC_DIR)/$(notdir $(DOC_PDF))
|
||||||
@rmdir $(DOC_DIR)
|
@rmdir $(DOC_DIR)
|
||||||
|
|
||||||
|
ctan: $(CTAN_CONTENT) ctan-version
|
||||||
|
@zip mtheme-$(shell date "+%Y-%m-%d").zip $(CTAN_CONTENT)
|
||||||
|
|
||||||
|
clean-cache:
|
||||||
|
@rm -f $(CACHE_DIR)/*
|
||||||
|
|
||||||
|
clean-sty:
|
||||||
|
@rm -f $(PACKAGE_STY)
|
||||||
|
|
||||||
|
ctan-version:
|
||||||
|
@sed -i '' -- 's@\(ProvidesPackage.*\[\)[0-9/]*@\1$(shell date "+%Y/%m/%d")@' $(PACKAGE_SRC)
|
||||||
|
|
||||||
|
$(CACHE_DIR):
|
||||||
|
@mkdir -p $(CACHE_DIR)
|
||||||
|
|
||||||
|
$(PACKAGE_STY): $(PACKAGE_SRC) $(INS) | $(CACHE_DIR) clean-cache
|
||||||
|
@cd $(dir $(INS)) && latex -output-directory=$(CACHE_DIR) $(notdir $(INS))
|
||||||
|
@cp $(addprefix $(CACHE_DIR)/,$(PACKAGE_STY)) .
|
||||||
|
|
||||||
|
$(DOC_PDF): $(DOC_SRC) $(PACKAGE_STY) | $(CACHE_DIR) clean-cache
|
||||||
|
@cd $(dir $(DOC_SRC)) && $(COMPILE_TEX) $(notdir $(DOC_SRC))
|
||||||
|
@cp $(CACHE_DIR)/$(notdir $(DOC_PDF)) $(DOC_PDF)
|
||||||
|
|
||||||
|
$(DEMO_PDF): $(DEMO_SRC) $(PACKAGE_STY) | $(CACHE_DIR) clean-cache
|
||||||
|
@cd $(dir $(DEMO_SRC)) && $(COMPILE_TEX) $(notdir $(DEMO_SRC))
|
||||||
|
@cp $(CACHE_DIR)/$(notdir $(DEMO_PDF)) $(DEMO_PDF)
|
||||||
|
|
||||||
docker-run: docker-build
|
docker-run: docker-build
|
||||||
docker run --rm=true --name $(DOCKER_CONTAINER) -i -t -v `pwd`:/data $(DOCKER_IMAGE) make
|
docker run --rm=true --name $(DOCKER_CONTAINER) -i -t -v `pwd`:/data $(DOCKER_IMAGE) make
|
||||||
|
|
||||||
|
|
51
README.md
51
README.md
|
@ -1,17 +1,50 @@
|
||||||
## Beamer mtheme
|
## Metropolis
|
||||||
|
|
||||||
|
Metropolis is a simple, modern Beamer theme suitable for anyone to use. It tries to minimize noise and maximize space for content; the only visual flourish it offers is an (optional) progress bar added to each slide. The core design principles of the theme were described in a blog post [here](http://bloerg.net/2014/09/20/a-modern-beamer-theme.html).
|
||||||
|
|
||||||
The *mtheme* is a Beamer theme with minimal visual noise. The core design principles
|
|
||||||
of the theme were described in a [blog post](http://bloerg.net/2014/09/20/a-modern-beamer-theme.html).
|
|
||||||
Not convinced? Have a look at the [demo slides](demo.pdf).
|
Not convinced? Have a look at the [demo slides](demo.pdf).
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
For further information take a look at the [manual](mtheme.pdf).
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Installing Metropolis, like any Beamer theme, involves four easy steps:
|
||||||
|
|
||||||
|
1. **Download the source** with a `git clone` of the [Metropolis repository](https://github.com/matze/mtheme) or as a [zip archive](https://github.com/matze/mtheme/archive/master.zip) of the latest development version.
|
||||||
|
|
||||||
|
2. **Compile the style files** by running `make sty` inside the downloaded
|
||||||
|
directory. (Or run LaTeX directly on `source/metropolistheme.ins`.)
|
||||||
|
|
||||||
|
3. **Move the resulting `*.sty` files** to the folder containing your presentation. To use Metropolis with many presentations, run `make install` or move the `*.sty` files to a folder in your TeX path instead.
|
||||||
|
|
||||||
|
4. **Use the theme for your presentation** by declaring `\usetheme{m}` in
|
||||||
|
the preamble of your Beamer document.
|
||||||
|
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
The following code shows a minimal example of a Beamer presentation using Metropolis.
|
||||||
|
|
||||||
|
```latex
|
||||||
|
\documentclass{beamer}
|
||||||
|
\usetheme{m} % Use metropolis theme
|
||||||
|
\title{A minimal example}
|
||||||
|
\date{\today}
|
||||||
|
\author{Matthias Vogelgesang}
|
||||||
|
\institute{Centre for Modern Beamer Themes}
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
\section{First Section}
|
||||||
|
\begin{frame}{First Frame}
|
||||||
|
Hello, world!
|
||||||
|
\end{frame}
|
||||||
|
\end{document}
|
||||||
|
```
|
||||||
|
|
||||||
|
Detailed information on using Metropolis can be found in the [manual](doc/metropolistheme.pdf).
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
The theme itself is licensed under a [Creative Commons Attribution-ShareAlike
|
The theme itself is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/). This means that if you change the theme and re-distribute it, you *must* retain the copyright notice header and license it under the same CC-BY-SA license. This does not affect the presentation that you create with the theme.
|
||||||
4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/). This
|
|
||||||
means that if you change the theme and re-distribute it, you *must* retain the
|
|
||||||
copyright notice header and license it under the same CC-BY-SA license. This
|
|
||||||
does not affect the presentation that you create with the theme.
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -86,66 +86,103 @@
|
||||||
\newcommand{\themename}{\textsc{metropolis}\xspace}
|
\newcommand{\themename}{\textsc{metropolis}\xspace}
|
||||||
|
|
||||||
\GetFileInfo{beamerthemem.dtx}
|
\GetFileInfo{beamerthemem.dtx}
|
||||||
\title{Modern Beamer Presentations\\with the\\\themename package}
|
\title{Modern Beamer Presentations with the \themename{} package}
|
||||||
\author{Matthias Vogelgesang \\ \url{matthias.vogelgesang@gmail.com}}
|
\author{Matthias Vogelgesang \\ \url{matthias.vogelgesang@gmail.com}}
|
||||||
\date{v0.x.x}
|
\date{v0.x.x}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\maketitle
|
\maketitle
|
||||||
|
\tableofcontents
|
||||||
|
|
||||||
\section{Introduction}
|
\section{Introduction}
|
||||||
|
|
||||||
Beamer is an awesome way to make presentations with LaTeX. But the stock themes
|
Beamer is an awesome way to make presentations with LaTeX, but its theme
|
||||||
do not necessarily look particularly nice and the custom themes often scream
|
selection is surprisingly sparse. The stock themes share an aesthetic that is
|
||||||
“Beamer” at first sight. The goal of \themename is to provide a modern Beamer
|
now overused and can be a little cluttered, and the few distinctive custom
|
||||||
theme with minimal visual noise. It provides section slides with a neat progress
|
themes available are often specialized for a particular corporate or
|
||||||
bar and it is intended to be used with
|
institutional brand.
|
||||||
|
|
||||||
|
The goal of \themename{} is to provide a simple, modern Beamer theme suitable
|
||||||
|
for anyone to use. It tries to minimize noise and maximize space for content;
|
||||||
|
the only visual flourish it offers is an (optional) progress bar added to each
|
||||||
|
slide or to the section slides.
|
||||||
|
|
||||||
|
By default, \themename{} uses
|
||||||
\href{https://www.mozilla.org/en-US/styleguide/products/firefox-os/typeface/}
|
\href{https://www.mozilla.org/en-US/styleguide/products/firefox-os/typeface/}
|
||||||
{Fira Sans}, a gorgeous typeface commissioned by Mozilla and designed by
|
{Fira Sans}, a gorgeous typeface commissioned by Mozilla and designed by
|
||||||
\href{http://www.carrois.com/fira-3-1/}{Carrois}. Hence to get the best results
|
\href{http://www.carrois.com/fira-3-1/}{Carrois}. For best results, you will
|
||||||
you should have installed the Fira typeface and use XeTeX to typeset your
|
need the Fira typeface installed and use Xe\LaTeX{} to typeset your slides.
|
||||||
slides. Nevertheless this is no hard dependency. The theme also works fine with
|
However, \themename{} can also be used other typefaces and \LaTeX{} build
|
||||||
pdfTeX and the Computer Modern typeface.
|
systems.
|
||||||
|
|
||||||
The codebase is maintained on \href{https://github.com/matze/mtheme}{GitHub}.
|
\themename's codebase is maintained on \href{https://github.com/matze/mtheme}
|
||||||
So if you have issues, find mistakes in the manual or want to contribute – to
|
{GitHub}. If you have issues, find mistakes in the manual or want to help make
|
||||||
make the theme even better – get in touch there.
|
the theme even better, please get in touch there. The
|
||||||
|
\href{https://github.com/matze/mtheme/graphs/contributors}
|
||||||
|
{full list of contributors} already contains over a dozen names!
|
||||||
|
|
||||||
|
|
||||||
\section{Getting Started}
|
\section{Getting Started}
|
||||||
|
|
||||||
\subsection{Installation}
|
\subsection{Installing from GitHub}
|
||||||
|
|
||||||
The \themename theme uses Make as build system. Hence the installation is very
|
Installing \themename{}, like any Beamer theme, involves four easy steps:
|
||||||
straight forward. Simply type
|
\begin{description}
|
||||||
\begin{lstlisting}
|
\item[Download the source] with a |git clone| of the
|
||||||
$ make
|
\href{https://github.com/matze/mtheme}{\themename{} repository} or as a
|
||||||
$ make install
|
\href{https://github.com/matze/mtheme/archive/master.zip}{zip archive}
|
||||||
\end{lstlisting}
|
of the latest development version.
|
||||||
in the top directory and all the files will be created and installed on your
|
|
||||||
computer. The complete list of make rules is as follows:
|
\item[Compile the style files] by running |make sty| inside the downloaded
|
||||||
|
directory. (Or run \LaTeX{} directly on |source/metropolistheme.ins|.)
|
||||||
|
|
||||||
|
\item[Move the resulting |*.sty| files] to the folder containing your
|
||||||
|
presentation. To use \themename{} with many presentations, run
|
||||||
|
|make install| or move the |*.sty| files to a folder in your \TeX{} path
|
||||||
|
instead.
|
||||||
|
|
||||||
|
\item[Use the theme for your presentation] by declaring |\usetheme{m}| in
|
||||||
|
the preamble of your Beamer document.
|
||||||
|
\end{description}
|
||||||
|
|
||||||
|
\themename{} uses the Make build system to offer the following installation
|
||||||
|
options for advanced users:
|
||||||
|
|
||||||
\begin{description}
|
\begin{description}
|
||||||
\item[all] \hfill \\
|
\item[|make sty|] builds the theme style files.
|
||||||
Build the theme, the manual and the demo presentation.
|
\item[|make doc|] builds this documentation manual.
|
||||||
\item[install] \hfill \\
|
\item[|make demo|] builds a demo presentation to test the features of
|
||||||
Install the theme into your local texmf folder.
|
\themename{}.
|
||||||
\item[uninstall] \hfill \\
|
\item[|make all|] builds the theme, manual, and demo presentation.
|
||||||
Remove the theme from your local texmf folder.
|
\item[|make clean|] removes the files generated by |make all|.
|
||||||
\item[sty] \hfill \\
|
\item[|make install|] installs the theme into your local texmf folder.
|
||||||
Creat the package files.
|
\item[|make uninstall|] removes the theme from your local texmf folder.
|
||||||
\item[doc] \hfill \\
|
\item[|make ctan|] creates a package for CTAN distribution.
|
||||||
Build the documentation.
|
|
||||||
\item[demo] \hfill \\
|
|
||||||
Build the demo presentation.
|
|
||||||
\item[demo-min] \hfill \\
|
|
||||||
Build the minimal demo presentation.
|
|
||||||
\item[ctan] \hfill \\
|
|
||||||
Create a package for CTAN distribution.
|
|
||||||
\end{description}
|
\end{description}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{A Minimal Example}
|
||||||
|
|
||||||
|
The following code shows a minimal example of a Beamer presentation using \themename.
|
||||||
|
|
||||||
|
\begin{lstlisting}
|
||||||
|
\documentclass{beamer}
|
||||||
|
\usetheme{m} % Use metropolis theme
|
||||||
|
\title{A minimal example}
|
||||||
|
\date{\today}
|
||||||
|
\author{Matthias Vogelgesang}
|
||||||
|
\institute{Centre for Modern Beamer Themes}
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
\section{First Section}
|
||||||
|
\begin{frame}{First Frame}
|
||||||
|
Hello, world!
|
||||||
|
\end{frame}
|
||||||
|
\end{document}
|
||||||
|
\end{lstlisting}
|
||||||
|
|
||||||
|
|
||||||
\subsection{Dependencies}
|
\subsection{Dependencies}
|
||||||
|
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
|
@ -172,29 +209,7 @@ $ pandoc -t beamer --latex-engine=xelatex -V theme:m -o output.pdf input.md
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
|
|
||||||
\subsection{A Minimal Example}
|
|
||||||
|
|
||||||
To get started with the theme is very simple. The following code shows a
|
|
||||||
minimal example of a Beamer presentation using \themename.
|
|
||||||
|
|
||||||
\begin{lstlisting}
|
|
||||||
\documentclass[10pt]{beamer}
|
|
||||||
\usetheme{m} % load mtheme
|
|
||||||
\title{A modern beamer theme} % define title
|
|
||||||
\date{\today} % define date
|
|
||||||
\author{Matthias Vogelgesang} % define author
|
|
||||||
\institute{Institute} % define institute
|
|
||||||
\begin{document}
|
|
||||||
\maketitle % create titlepage
|
|
||||||
\section{First Section} % create section
|
|
||||||
\begin{frame}{First Frame} % first frame
|
|
||||||
Lorem ipsum dolor sit amet, ...
|
|
||||||
\end{frame}
|
|
||||||
\begin{frame}{Second Frame} % second frame
|
|
||||||
Lorem ipsum dolor sit amet, ...
|
|
||||||
\end{frame}
|
|
||||||
\end{document}
|
|
||||||
\end{lstlisting}
|
|
||||||
|
|
||||||
\section{Customization}
|
\section{Customization}
|
||||||
\subsection{Package options}
|
\subsection{Package options}
|
||||||
|
@ -344,11 +359,6 @@ license it under the same CC-BY-SA license. This does not affect the
|
||||||
presentation that you create with the theme.
|
presentation that you create with the theme.
|
||||||
|
|
||||||
|
|
||||||
\section{Contributors}
|
|
||||||
|
|
||||||
For a full list of contributors please visit the
|
|
||||||
\href{https://github.com/matze/mtheme/graphs/contributors}{GitHub Repository}.
|
|
||||||
|
|
||||||
|
|
||||||
\section{Implementation}
|
\section{Implementation}
|
||||||
|
|
Binary file not shown.
BIN
mtheme.pdf
BIN
mtheme.pdf
Binary file not shown.
|
@ -13,8 +13,7 @@
|
||||||
%<driver> \ProvidesFile{beamercolorthememetropolis.dtx}
|
%<driver> \ProvidesFile{beamercolorthememetropolis.dtx}
|
||||||
%<*package>
|
%<*package>
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
\ProvidesPackage{beamercolorthememetropolis}
|
\ProvidesPackage{beamercolorthememetropolis}[2015/06/12 Metropolis color theme]
|
||||||
[2015/06/12 A Modern Beamer Color Theme]
|
|
||||||
%</package>
|
%</package>
|
||||||
%<driver> \documentclass{ltxdoc}
|
%<driver> \documentclass{ltxdoc}
|
||||||
%<driver> \usepackage{beamercolorthememetropolis}
|
%<driver> \usepackage{beamercolorthememetropolis}
|
|
@ -13,8 +13,7 @@
|
||||||
%<driver> \ProvidesFile{beamerfontthememetropolis.dtx}
|
%<driver> \ProvidesFile{beamerfontthememetropolis.dtx}
|
||||||
%<*package>
|
%<*package>
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
\ProvidesPackage{beamerfontthememetropolis}
|
\ProvidesPackage{beamerfontthememetropolis}[2015/06/12 Metropolis font theme]
|
||||||
[2015/06/12 A Modern Beamer Font Theme]
|
|
||||||
%</package>
|
%</package>
|
||||||
%<driver> \documentclass{ltxdoc}
|
%<driver> \documentclass{ltxdoc}
|
||||||
%<driver> \usepackage{beamerfontthememetropolis}
|
%<driver> \usepackage{beamerfontthememetropolis}
|
|
@ -13,8 +13,7 @@
|
||||||
%<driver> \ProvidesFile{beamerinnerthememetropolis.dtx}
|
%<driver> \ProvidesFile{beamerinnerthememetropolis.dtx}
|
||||||
%<*package>
|
%<*package>
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
\ProvidesPackage{beamerinnerthememetropolis}
|
\ProvidesPackage{beamerinnerthememetropolis}[2015/06/12 Metropolis inner theme]
|
||||||
[2015/06/12 A Modern Beamer Theme]
|
|
||||||
%</package>
|
%</package>
|
||||||
%<driver> \documentclass{ltxdoc}
|
%<driver> \documentclass{ltxdoc}
|
||||||
%<driver> \usepackage{beamerinnerthememetropolis}
|
%<driver> \usepackage{beamerinnerthememetropolis}
|
|
@ -13,8 +13,7 @@
|
||||||
%<driver> \ProvidesFile{beamerouterthememetropolis.dtx}
|
%<driver> \ProvidesFile{beamerouterthememetropolis.dtx}
|
||||||
%<*package>
|
%<*package>
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
\ProvidesPackage{beamerouterthememetropolis}
|
\ProvidesPackage{beamerouterthememetropolis}[2015/06/12 Metropolis outer theme]
|
||||||
[2015/06/12 A Modern Beamer Theme]
|
|
||||||
%</package>
|
%</package>
|
||||||
%<driver> \documentclass{ltxdoc}
|
%<driver> \documentclass{ltxdoc}
|
||||||
%<driver> \usepackage{beamerouterthememetropolis}
|
%<driver> \usepackage{beamerouterthememetropolis}
|
|
@ -13,8 +13,7 @@
|
||||||
%<driver> \ProvidesFile{beamerthemem.dtx}
|
%<driver> \ProvidesFile{beamerthemem.dtx}
|
||||||
%<*package>
|
%<*package>
|
||||||
\NeedsTeXFormat{LaTeX2e}
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
\ProvidesPackage{beamerthemem}
|
\ProvidesPackage{beamerthemem}[2015/06/12 Metropolis Beamer theme]
|
||||||
[2015/06/12 A Modern Beamer Theme]
|
|
||||||
%</package>
|
%</package>
|
||||||
%<driver> \documentclass{ltxdoc}
|
%<driver> \documentclass{ltxdoc}
|
||||||
%<driver> \usepackage{beamerthemem}
|
%<driver> \usepackage{beamerthemem}
|
Loading…
Reference in New Issue