summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/ppt-slides/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/ppt-slides/README.md')
-rw-r--r--macros/latex/contrib/ppt-slides/README.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/macros/latex/contrib/ppt-slides/README.md b/macros/latex/contrib/ppt-slides/README.md
new file mode 100644
index 0000000000..91d4058c89
--- /dev/null
+++ b/macros/latex/contrib/ppt-slides/README.md
@@ -0,0 +1,34 @@
+[![make](https://github.com/yegor256/ppt-slides/actions/workflows/latexmk.yml/badge.svg)](https://github.com/yegor256/ppt-slides/actions/workflows/latexmk.yml)
+[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/yegor256/ppt-slides/blob/master/LICENSE.txt)
+
+This LaTeX package helps you create slide decks as good looking
+as with [PowerPointâ„¢](https://en.wikipedia.org/wiki/Microsoft_PowerPoint),
+but more precise, uniform, and visually strict.
+Check [this series of lectures](https://github.com/yegor256/ssd16)
+fully designed with the use of this package.
+
+First, [install it](https://en.wikibooks.org/wiki/LaTeX/Installing_Extra_Packages)
+from [CTAN](https://ctan.org/pkg/ppt-slides)
+and then use in preamble:
+
+```tex
+\documentclass{article}
+\usepackage{clicks}
+\usepackage[template=dark]{ppt-slides}
+\begin{document}
+\plick{\pptBanner{This Is My First Slide}}
+\plick{The slide tells you an interesting story...}
+\plick{but slowly...}
+\plick{step by step...}
+\plush{until you get totally bored.}
+\end{document}
+```
+
+The full example and all commands are available in
+[`ppt-slides.tex`](https://github.com/yegor256/ppt-slides/blob/master/ppt-slides.tex) file.
+
+If you want to contribute yourself, make a fork, create a branch,
+then run `make` in root directory.
+It should compile everything without errors. If not, submit an issue and wait.
+Otherwise, make your changes and then run `make` again. If the build is
+still clean, submit a pull request.