summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/modernposter/README.md
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-01-02 23:19:40 +0000
committerKarl Berry <karl@freefriends.org>2018-01-02 23:19:40 +0000
commit9158dbdb39e37a9bc2fb3f0814ca198a3f5444ac (patch)
tree80dbc578a712cec2d3954fdfa62df3f0f85ee829 /Master/texmf-dist/doc/latex/modernposter/README.md
parent685cec803afc9aea54127325a7dc839ba9e7a563 (diff)
modernposter (2jan18)
git-svn-id: svn://tug.org/texlive/trunk@46193 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/modernposter/README.md')
-rw-r--r--Master/texmf-dist/doc/latex/modernposter/README.md44
1 files changed, 44 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/modernposter/README.md b/Master/texmf-dist/doc/latex/modernposter/README.md
new file mode 100644
index 00000000000..bd376f9d705
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/modernposter/README.md
@@ -0,0 +1,44 @@
+## modernposter - A modern LaTeX poster theme (2018/01/02 v1.01.2)
+
+This class extends the a0poster class in that it adds support to easily create posters without the need for taking care of the layout at all. It allows to use \maketitle to generate a fancy header containing the title information and also provides macros to position various different types of text boxes in a two-column layout. The color scheme and some parts of the Makefile are inspired by the [metropolis beamer theme](https://github.com/matze/mtheme).
+
+Below you can find a preview of the demo:
+
+![Preview](https://i.imgur.com/XUr9a5U.jpg)
+
+## Usage
+
+Below you can find a toy example, demonstrating how to use modernposter
+
+```latex
+\documentclass{modernposter}
+
+\title{This is a Modernposter Demo}
+\author{Firstname Lastname}
+\email{firstname.lastname@domain.com}
+
+\begin{document}
+ \maketitle
+
+ \begin{postercolumn}
+ \posterbox{Introduction}{
+ $\dots$
+ }
+ \end{postercolumn}
+ \begin{postercolumn}
+ \doubleposterbox[0.6]
+ {Problem Statement}{
+ $\dots$
+ }
+ {\highlight{Results}}{
+ $\dots$
+ }
+ \end{postercolumn}
+\end{document}
+```
+
+## Authors
+The code was written by David Derler. He can be contacted via [modernposter@derler.info](mailto:modernposter@derler.info).
+
+## License
+The code is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/).