newcommand

This commit is contained in:
manuelthieme 2019-06-09 19:41:10 +02:00
parent d6d51e218f
commit 0ae7d566a6
4 changed files with 43 additions and 29 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
*.aux
*.log
*.out
*.pdf

BIN
charlie.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -20,6 +20,7 @@
\backgroundsetup{scale = 1.0, angle = 0, opacity = 1.0,%
contents = {\includegraphics[width = \paperwidth, height = \paperheight,
keepaspectratio] {background}}}%
\usepackage{ifthen}
% fitbox stuff
\usepackage{environ}% http://ctan.org/pkg/environ
@ -194,4 +195,40 @@
% pagestyle
\pagestyle{empty}
\newcommand{\schild}[4]{
\begin{minipage}[b][\textheight][b]{.25\textwidth}%
\centering
% QR code url is 3rd argument
\ifthenelse{\not{\equal{#3}{}}}{
% qrcode
\qrcode[height=.95\textwidth]{#3}
\begin{fitbox}{.95\textwidth}{1cm}
\url{#3}
\end{fitbox}
}{\hfill}
% pictogram is 4th argument
\ifthenelse{\not{\equal{#4}{}}}{
% pictogram
\includegraphics[width=\textwidth, keepaspectratio]{#4}%
}{\hfill}
\vspace{10px}
\end{minipage}
%
\hspace{.05\textwidth}
%
\begin{minipage}[b][\textheight][c]{.65\textwidth}
\begin{fitbox}{\textwidth}{.5\textheight} % adjust textheight here if too big
\centering
#1
\end{fitbox}
\vspace{0cm}
\begin{fitbox}{\textwidth}{.22\textheight}
\centering
#2
\end{fitbox}
\end{minipage}
}

View file

@ -1,34 +1,7 @@
\documentclass{kifschild}
\begin{document}
\begin{minipage}[b][\textheight][b]{.25\textwidth}%
\centering
% pictogram
%\includegraphics[width=\textwidth, keepaspectratio]{charlie.jpg}%
% qrcode
\qrcode[height=.95\textwidth]{https://m.dvb.de}
\begin{fitbox}{.95\textwidth}{1cm}
\url{https://m.dvb.de}
\end{fitbox}
\end{minipage}
%
\hspace{.05\textwidth}
%
\begin{minipage}[b][\textheight][c]{.65\textwidth}
\begin{fitbox}{\textwidth}{.5\textheight} % adjust textheight here if too big
\centering
NP
\end{fitbox}
\vspace{2cm}
\begin{fitbox}{\textwidth}{.22\textheight}
\centering
Unisex-Toilette\\
(nicht pissoiriert)
\end{fitbox}
\end{minipage}
\schild{Kein Papier?}{Sag dem Infopoint bescheid}{https://dvb.de}{}
\schild{Kein Papier!}{Ich sag' hier niemandem was.}{}{charlie.jpg}
\end{document}