summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/modernposter/modernposter.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/modernposter/modernposter.tex')
-rw-r--r--Master/texmf-dist/doc/latex/modernposter/modernposter.tex89
1 files changed, 89 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/modernposter/modernposter.tex b/Master/texmf-dist/doc/latex/modernposter/modernposter.tex
new file mode 100644
index 00000000000..2d4ee4d17c5
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/modernposter/modernposter.tex
@@ -0,0 +1,89 @@
+% modernposter.tex
+%
+% This file is part of the modernposter LaTeX template
+%
+% Version 1.01.2 2018/01/02
+%
+% Copyright 2018 David Derler
+%
+% This work is licensed under the Creative Commons Attribution-ShareAlike 4.0
+% International license (cf. https://creativecommons.org/licenses/by-sa/4.0/)
+\documentclass{article}
+
+\usepackage{xcolor}
+\usepackage[hidelinks=true]{hyperref}
+\usepackage{listings}
+\lstset{
+ basicstyle=\footnotesize\ttfamily,
+ breaklines=true,
+ language=TeX,
+ numbers=left,
+ numbersep=5pt,
+ numberstyle=\tiny\color{lightgray},
+ stepnumber=2,
+ tabsize=2,
+ backgroundcolor=\color{black!4}
+}
+
+\title{modernposter - A modern \LaTeX~poster theme}
+\author{David Derler}
+\date{Version 1.01.2 2018/01/02}
+
+\begin{document}
+ \maketitle
+
+ \begin{abstract}
+\noindent 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 {\tt $\backslash$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 is inspired by the metropolis beamer theme.
+ \end{abstract}
+ \section{Installation}
+ The package can be installed by copying the {\tt modernposter.cls} file to the folder of your \LaTeX~distribution, which contains the manually installed packages.\footnote{For TeXLive distributions this should be {\tt $\sim$/texmf/tex/latex/modernposter/}.} Alternatively, you may choose to clone the github repository\footnote{\url{https://github.com/derlerd/modernposter}} containing the development version of this package and use the {\tt install} target of the Makefile contained in this repository. This target will automatically install the package at {\tt $\sim$/texmf/tex/latex/modern\-poster/} and the documentation at {\tt $\sim$/texmf/doc/latex/modernposter/}.
+ \section{Usage}
+ This package is intended to save time whenever a poster needs to be created. Thus we have tried to keep the package as easy to use as possible. Below, we describe the available options followed by a toy example which should illustrate the usage of the package. For more details also refer to the {\tt demo.tex} file in the package.
+ \subsection{Options}
+ The following options can be set. All option keys allow to optionally supply an explicit value.
+ \begin{description}
+ \item[{\tt logo=[logo]}] This option allows to provide a path to a logo which is then included on the top right of the page. For example, {\tt logo=img.png}.
+ \item[{\tt hlcolor=[color]}] This option allows to override the highlight color. The color needs to be supplied in HTML format. For example, {\tt hlcolor=F70146}.
+ \end{description}
+ \subsection{Toy Example}
+ The following listing demonstrates the basic usage of the package.
+ \begin{lstlisting}
+\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}
+
+ \end{lstlisting}
+
+ \section{Getting Involved}
+ We are pretty sure that there is quite some potential for improvements. Please send feedback to \href{mailto:modernposter@derler.info}{\tt modernposter@derler.info} or consider getting involved - the development repository is hosted on GitHub and can be found at \url{https://github.com/derlerd/modernposter}.
+
+ \section{License}
+ The code is licensed under the \href{https://creativecommons.org/licenses/by-sa/4.0/}{Creative Commons Attribution-ShareAlike 4.0 International license}.
+
+ \section{Version History}
+ \begin{description}
+ \item[1.0] Initial release.
+ \item[1.01.2] Improved versioning; added explicit version numbers to every file.
+ \end{description}
+\end{document} \ No newline at end of file