Compare commits
14 Commits
c0d94079b1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 3db96f6fa9 | |||
| d21d039d7a | |||
| fd103f2ede | |||
| fd43bead80 | |||
| 2b8e515145 | |||
| 42d0ba6b2d | |||
| 1d5ab67579 | |||
| ccbdef3ac2 | |||
| e339f04174 | |||
| e0f2bc813b | |||
| 2e7c5db1bc | |||
| f5357d28ee | |||
| 609204f2c8 | |||
| 0d5da1b8b1 |
6
.gitignore
vendored
@@ -19,7 +19,10 @@
|
||||
# these rules might exclude image files for figures etc.
|
||||
# *.ps
|
||||
# *.eps
|
||||
# *.pdf
|
||||
*.pdf
|
||||
|
||||
# Ignores Images in /wd
|
||||
img/wd
|
||||
|
||||
## Generated if empty string is given at "Please type another file name for output:"
|
||||
.pdf
|
||||
@@ -299,3 +302,4 @@ TSWLatexianTemp*
|
||||
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
|
||||
# Uncomment the next line to have this generated file ignored.
|
||||
#*Notes.bib
|
||||
*.~lock.drinks.csv\#
|
||||
|
||||
@@ -1 +1,5 @@
|
||||
# Simplicissimus LaTeX Menu
|
||||
## Requirements
|
||||
- [pdftk](https://packages.ubuntu.com/search?keywords=pdftk)
|
||||
- [ghostscript](https://packages.ubuntu.com/search?suite=default§ion=all&arch=any&keywords=ghostscript)
|
||||
- xelatex
|
||||
130
cmds-onesheet.tex
Normal file
@@ -0,0 +1,130 @@
|
||||
\newfontfamily{\headfont}{Sandwich}
|
||||
\newfontfamily{\artfont}{Parisish}
|
||||
\newfontfamily{\linefont}{FoglihtenDeH02} %https://www.1001fonts.com/foglihtendeh0-font.html
|
||||
|
||||
\usepackage{blindtext}
|
||||
|
||||
\backgroundsetup{contents={}}
|
||||
|
||||
% https://coolors.co/f6ebe0-ba5624-381d2a-9395d3-065143
|
||||
|
||||
\definecolor{bg}{HTML}{F6EBE0} % https://color.adobe.com/create/color-wheel
|
||||
\definecolor{head}{HTML}{45252A}
|
||||
\definecolor{desc}{HTML}{6C5B61}
|
||||
%\definecolor{desc}{HTML}{381D2A}
|
||||
%\definecolor{desc}{HTML}{363331}
|
||||
\definecolor{text}{HTML}{413135}
|
||||
\definecolor{boxbg}{HTML}{fbf5f0}
|
||||
\color{text}
|
||||
|
||||
\graphicspath{{img/}}
|
||||
|
||||
\let\olddotfill\dotfill
|
||||
\renewcommand{\dotfill}{\scriptsize\olddotfill}
|
||||
|
||||
\newcommand*\Icon[2]{%
|
||||
\begin{tikzpicture}[remember picture,overlay]
|
||||
\node[xshift=5mm,yshift=-2mm]{%
|
||||
\includegraphics[width=#2]{#1}
|
||||
};
|
||||
\end{tikzpicture}%
|
||||
}
|
||||
|
||||
% a tabular* for each drink group
|
||||
\newenvironment{Group}[2]{%
|
||||
\heading{#1}
|
||||
\ifblank{#2}{}{\centering{\dsctxt{#2}}}
|
||||
}
|
||||
|
||||
\newcommand*{\dsctxt}[1]{%
|
||||
\textcolor{desc}{\fontsize{10}{12}\selectfont#1}}
|
||||
|
||||
% to format each entry
|
||||
\newcommand*{\Entry}[2]{%
|
||||
%\vspace{0.5mm} % if you uncomment this line, change the Glass yshift to -4mm (idk why such difference)
|
||||
\Large{\artfont #1 #2\\*}}
|
||||
|
||||
\newcommand*{\illupage}[1]{\newpage
|
||||
\PageBackground{\bg}
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{#1}
|
||||
\end{center}}
|
||||
|
||||
\newcommand{\bg}{bg-border.png} % define used border background
|
||||
|
||||
\newcommand*{\titlef}[1]{%
|
||||
{\fontsize{50}{60}\headfont\textcolor{head}{#1}}\\*}
|
||||
|
||||
\newcommand*{\heading}[1]{%
|
||||
\makebox[\linewidth]{\centering\linefont\fontsize{25}{10}\selectfont Q+=q {\fontsize{30}{35}{\headfont\textcolor{head}{#1}}} Q+=q\\*}}
|
||||
|
||||
\newcommand*{\subheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++=q {\LARGE{\artfont\selectfont\textcolor{head}{#1}}} Q++=q\\*}}
|
||||
|
||||
\newcommand*{\subsubheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++=q {\Large{\artfont\selectfont\textcolor{head}{#1}}} Q++=q\\*}}
|
||||
|
||||
\newcommand*{\subsubsubheading}[1]{%
|
||||
{\Large{\artfont\selectfont\textcolor{head}{#1}}\\*}}
|
||||
|
||||
\newcommand*{\subsubsubsubheading}[1]{%
|
||||
{\raggedright\Large\artfont\selectfont\textcolor{head}{#1}\\*}}
|
||||
|
||||
\newcommand*{\oeffnungszeitenf}[1]{%
|
||||
{\LARGE{\artfont\selectfont\textcolor{head}{#1}}\\*}}
|
||||
|
||||
% to format each subentry
|
||||
\newcommand*{\Expl}[1]{%
|
||||
\small #1}
|
||||
|
||||
\newcommand*{\Price}[1]{%
|
||||
\normalsize #1 \texteuro}
|
||||
|
||||
% sets page Backround to #1
|
||||
\newcommand*{\PageBackground}[1]{%
|
||||
\tikz[remember picture,overlay] \node[opacity=1,inner sep=0pt] at (current
|
||||
page.center){\includegraphics[width=\paperwidth,height=\paperheight]{#1}};
|
||||
}
|
||||
|
||||
\newcommand*{\StdEntry}[6]{
|
||||
\Entry{#1}{}\\*
|
||||
\Expl{#2}\\*
|
||||
\DTLifnullorempty{#6}{\PriceSingl{#3}{#4}}{\PriceSingl{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\CofEntry}[6]{
|
||||
\Entry{#1}{}\\*
|
||||
\Expl{#2}\DTLifnullorempty{#6}{\PriceSingl{}{#4}}{\\*\PriceMultB{#3}{#4}{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\PriceMultA}[4]{%
|
||||
\small #1 \dotfill\Price{#2}\\*
|
||||
\small #3 \dotfill\Price{#4}\\*
|
||||
}
|
||||
|
||||
\newcommand*{\PriceMultB}[4]{%
|
||||
\hspace*{0.5cm}\small #1 \dotfill\Price{#2}\\*
|
||||
\hspace*{0.5cm}\small #3 \dotfill\Price{#4}\\*
|
||||
}
|
||||
|
||||
\newcommand*{\PriceSingl}[2]{%
|
||||
\small#1\dotfill\Price{#2}\\*
|
||||
}
|
||||
|
||||
\newcommand*{\ShotItem}[4]{%1 = Name; 2 = Desc; 3 = Size; 4 = Price
|
||||
\small#1\scriptsize\space\textit{#2}\small\dotfill #3\space\Price{#4}}
|
||||
|
||||
\newcommand*{\LoDrItem}[4]{%1 = Name; 2 = Desc; 3 = Size; 4 = Price
|
||||
\normalsize#1\scriptsize\space\textit{#2}\dotfill\Price{#3}\hspace{1cm}\Price{#4}}
|
||||
|
||||
|
||||
\newcommand*{\parseprule}{%
|
||||
\par
|
||||
\begingroup
|
||||
\centering
|
||||
\raisebox{.2\baselineskip}{%
|
||||
\rule{.6667\linewidth}{.4pt}%
|
||||
}%
|
||||
\par
|
||||
\endgroup
|
||||
}
|
||||
77
cmds.tex
@@ -1,41 +1,69 @@
|
||||
\let\olddotfill\dotfill
|
||||
\renewcommand{\dotfill}{\scriptsize\olddotfill}
|
||||
\newfontfamily{\headfont}{Sandwich}
|
||||
\newfontfamily{\artfont}{Parisish}
|
||||
\newfontfamily{\linefont}{FoglihtenDeH02} %https://www.1001fonts.com/foglihtendeh0-font.html
|
||||
|
||||
% colorize text
|
||||
\newcommand*{\ColText}[1]{\textcolor{desc}{#1}}
|
||||
\usepackage{blindtext}
|
||||
|
||||
\backgroundsetup{contents={}}
|
||||
|
||||
% https://coolors.co/f6ebe0-ba5624-381d2a-9395d3-065143
|
||||
|
||||
\definecolor{bg}{HTML}{F6EBE0} % https://color.adobe.com/create/color-wheel
|
||||
\definecolor{head}{HTML}{45252A}
|
||||
\definecolor{desc}{HTML}{6C5B61}
|
||||
%\definecolor{desc}{HTML}{381D2A}
|
||||
%\definecolor{desc}{HTML}{363331}
|
||||
\definecolor{text}{HTML}{413135}
|
||||
\definecolor{boxbg}{HTML}{fbf5f0}
|
||||
\color{text}
|
||||
|
||||
\graphicspath{{img/}}
|
||||
|
||||
\newcommand*\Icon[2]{%
|
||||
\begin{tikzpicture}[remember picture,overlay]
|
||||
\node[xshift=5mm,yshift=-2mm]{%
|
||||
\includegraphics[width=#2]{img/Glasses/#1.png}
|
||||
};
|
||||
\end{tikzpicture}%
|
||||
}
|
||||
|
||||
\let\olddotfill\dotfill
|
||||
\renewcommand{\dotfill}{\scriptsize\leaders\hbox to 1mm{\hss.\hss}\hfill}
|
||||
|
||||
% a tabular* for each drink group
|
||||
\newenvironment{Group}[2]{%
|
||||
\heading{#1}
|
||||
\centering{\desctext{#2}}}
|
||||
\centering{\dsctxt{#2}}
|
||||
}
|
||||
|
||||
\newcommand*{\desctext}[1]{%
|
||||
\fontsize{11}{14}\selectfont\ColText{#1}}
|
||||
\newcommand*{\dsctxt}[1]{%
|
||||
\textcolor{desc}{\fontsize{11}{14}\selectfont#1}}
|
||||
|
||||
% to format each entry
|
||||
\newcommand*{\Entry}[2]{%
|
||||
%\vspace{0.5mm} % if you uncomment this line, change the Glass yshift to -4mm (idk why such difference)
|
||||
\Large{\artfont #1 #2}\\}
|
||||
\Large{\artfont #1 #2\\}}
|
||||
|
||||
\newcommand*{\illupage}[1]{\newpage
|
||||
\PageBackground{\bg}
|
||||
\newcommand*{\illupage}[2]{\newpage
|
||||
\PageBackground{#1}
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{#1}
|
||||
\includegraphics[width=\textwidth]{#2}
|
||||
\end{center}}
|
||||
|
||||
\newcommand{\bg}{bg-border.png} % define used border background
|
||||
\newcommand{\bgl}{bg-border-l.png} % define used border background
|
||||
\newcommand{\bgr}{bg-border-r.png} % define used border background
|
||||
|
||||
\newcommand*{\titlef}[1]{%
|
||||
{\fontsize{70}{60}\headfont\textcolor{head}{#1}}\\\medskip}
|
||||
{\fontsize{60}{60}\headfont\textcolor{head}{#1}}\\\medskip}
|
||||
|
||||
\newcommand*{\heading}[1]{%
|
||||
\makebox[\textwidth]{\centering\linefont\fontsize{30}{10}\selectfont Q+=q {\fontsize{40}{60}{\headfont\textcolor{head}{#1}}} Q+=q\\\medskip}}
|
||||
|
||||
\newcommand*{\subheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++++=q {\LARGE{\artfont\selectfont\textcolor{head}{#1}}} Q++++=q\\}}
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q+=q {\LARGE{\artfont\selectfont\textcolor{head}{#1}}} Q+=q\\}}
|
||||
|
||||
\newcommand*{\subsubheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++++=q {\Large{\artfont\selectfont\textcolor{head}{#1}}} Q++++=q\\}}
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q+=q {\Large{\artfont\selectfont\textcolor{head}{#1}}} Q+=q\\}}
|
||||
|
||||
\newcommand*{\subsubsubheading}[1]{%
|
||||
{\Large{\artfont\selectfont\textcolor{head}{#1}}\\}}
|
||||
@@ -56,6 +84,17 @@
|
||||
page.center){\includegraphics[width=\paperwidth,height=\paperheight]{#1}};
|
||||
}
|
||||
|
||||
\newcommand*{\StdEntry}[6]{
|
||||
\Entry{#1}{}\\
|
||||
\Expl{#2}\\
|
||||
\DTLifnullorempty{#6}{\PriceSingl{#3}{#4}}{\PriceMultB{#3}{#4}{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\CofEntry}[6]{
|
||||
\Entry{#1}{}\\
|
||||
\Expl{#2}\DTLifnullorempty{#6}{\PriceSingl{}{#4}}{\\\PriceMultB{#3}{#4}{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\PriceMultA}[4]{%
|
||||
\small #1 \dotfill\Price{#2}\\
|
||||
\small #3 \dotfill\Price{#4}\\
|
||||
@@ -66,9 +105,17 @@
|
||||
\hspace*{0.5cm}\small #3 \dotfill\Price{#4}\\
|
||||
}
|
||||
|
||||
\newcommand*{\PriceSingl}[2]{%
|
||||
\hspace*{0.5cm}\small#1\dotfill\Price{#2}\\
|
||||
}
|
||||
|
||||
\newcommand*{\ShotItem}[4]{%1 = Name; 2 = Desc; 3 = Size; 4 = Price
|
||||
\small#1\scriptsize\space\textit{#2}\small\dotfill #3\space\Price{#4}}
|
||||
|
||||
\newcommand*{\LoDrItem}[4]{%1 = Name; 2 = Desc; 3 = Size; 4 = Price
|
||||
\normalsize#1\scriptsize\space\textit{#2}\dotfill\Price{#3}\hspace{1cm}\Price{#4}}
|
||||
|
||||
|
||||
\newcommand*{\parseprule}{%
|
||||
\par
|
||||
\begingroup
|
||||
|
||||
97
cmds.tex~
Normal file
@@ -0,0 +1,97 @@
|
||||
\let\olddotfill\dotfill
|
||||
\renewcommand{\dotfill}{\scriptsize\olddotfill}
|
||||
|
||||
% colorize text
|
||||
\newcommand*{\ColText}[1]{\textcolor{}{#1}}
|
||||
|
||||
% a tabular* for each drink group
|
||||
\newenvironment{Group}[2]{%
|
||||
\heading{#1}
|
||||
\centering{\desctext{#2}}}
|
||||
|
||||
\newcommand*{\desctext}[1]{%
|
||||
\fontsize{11}{14}\selectfont\ColText{#1}}
|
||||
|
||||
% to format each entry
|
||||
\newcommand*{\Entry}[2]{%
|
||||
%\vspace{0.5mm} % if you uncomment this line, change the Glass yshift to -4mm (idk why such difference)
|
||||
\Large{\artfont #1 #2\\}}
|
||||
|
||||
\newcommand*{\illupage}[1]{\newpage
|
||||
\PageBackground{\bg}
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{#1}
|
||||
\end{center}}
|
||||
|
||||
\newcommand{\bg}{bg-border.png} % define used border background
|
||||
|
||||
\newcommand*{\titlef}[1]{%
|
||||
{\fontsize{70}{60}\headfont\textcolor{head}{#1}}\\\medskip}
|
||||
|
||||
\newcommand*{\heading}[1]{%
|
||||
\makebox[\textwidth]{\centering\linefont\fontsize{30}{10}\selectfont Q+=q {\fontsize{40}{60}{\headfont\textcolor{head}{#1}}} Q+=q\\\medskip}}
|
||||
|
||||
\newcommand*{\subheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++++=q {\LARGE{\artfont\selectfont\textcolor{head}{#1}}} Q++++=q\\}}
|
||||
|
||||
\newcommand*{\subsubheading}[1]{%
|
||||
{\centering\linefont\fontsize{20}{30}\selectfont Q++++=q {\Large{\artfont\selectfont\textcolor{head}{#1}}} Q++++=q\\}}
|
||||
|
||||
\newcommand*{\subsubsubheading}[1]{%
|
||||
{\Large{\artfont\selectfont\textcolor{head}{#1}}\\}}
|
||||
|
||||
\newcommand*{\subsubsubsubheading}[1]{%
|
||||
{\raggedright\Large\artfont\selectfont\textcolor{head}{#1}\\}}
|
||||
|
||||
% to format each subentry
|
||||
\newcommand*{\Expl}[1]{%
|
||||
\small #1}
|
||||
|
||||
\newcommand*{\Price}[1]{%
|
||||
\normalsize #1 \texteuro}
|
||||
|
||||
% sets page Backround to #1
|
||||
\newcommand*{\PageBackground}[1]{%
|
||||
\tikz[remember picture,overlay] \node[opacity=1,inner sep=0pt] at (current
|
||||
page.center){\includegraphics[width=\paperwidth,height=\paperheight]{#1}};
|
||||
}
|
||||
|
||||
\newcommand*{\StdEntry}[6]{
|
||||
\Entry{#1}{}\\
|
||||
\Expl{#2}\\
|
||||
\DTLifnullorempty{#6}{\PriceSingl{#3}{#4}}{\PriceMultB{#3}{#4}{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\CofEntry}[6]{
|
||||
\Entry{#1}{}\\
|
||||
\Expl{#2}
|
||||
\DTLifnullorempty{#6}{\PriceSingl{}{#4}}{\\PriceMultB{#3}{#4}{#5}{#6}}
|
||||
}
|
||||
|
||||
\newcommand*{\PriceMultA}[4]{%
|
||||
\small #1 \dotfill\Price{#2}\\
|
||||
\small #3 \dotfill\Price{#4}\\
|
||||
}
|
||||
|
||||
\newcommand*{\PriceMultB}[4]{%
|
||||
\hspace*{0.5cm}\small #1 \dotfill\Price{#2}\\
|
||||
\hspace*{0.5cm}\small #3 \dotfill\Price{#4}\\
|
||||
}
|
||||
|
||||
\newcommand*{\PriceSingl}[2]{%
|
||||
\hspace*{0.5cm}\small#1\dotfill\Price{#2}\\
|
||||
}
|
||||
|
||||
\newcommand*{\ShotItem}[4]{%1 = Name; 2 = Desc; 3 = Size; 4 = Price
|
||||
\small#1\scriptsize\space\textit{#2}\small\dotfill #3\space\Price{#4}}
|
||||
|
||||
\newcommand*{\parseprule}{%
|
||||
\par
|
||||
\begingroup
|
||||
\centering
|
||||
\raisebox{.2\baselineskip}{%
|
||||
\rule{.6667\linewidth}{.4pt}%
|
||||
}%
|
||||
\par
|
||||
\endgroup
|
||||
}
|
||||
11
compile-pdfs-compress.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -dNOPAUSE -dQUIET -dBATCH -dPrinted=false -sOutputFile=compressed-main.pdf -sColorConversionStrategy=CMYK -dProcessColorModel=/DeviceCMYK main.pdf
|
||||
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -dNOPAUSE -dQUIET -dBATCH -dPrinted=false -sOutputFile=compressed-covers.pdf -sColorConversionStrategy=CMYK -dProcessColorModel=/DeviceCMYK covers.pdf
|
||||
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -dNOPAUSE -dQUIET -dBATCH -dPrinted=false -sOutputFile=final/compressed-onesheet.pdf -sColorConversionStrategy=CMYK -dProcessColorModel=/DeviceCMYK onesheet.pdf
|
||||
pdfimages -list compressed-main.pdf
|
||||
pdfimages -list final/compressed-onesheet.pdf
|
||||
pdfimages -list compressed-covers.pdf
|
||||
pdftk A=compressed-main.pdf B=compressed-covers.pdf cat B1 A2-end output final/final1.pdf
|
||||
pdftk A=compressed-main.pdf B=compressed-covers.pdf cat B2 A2-end output final/final2.pdf
|
||||
pdftk A=compressed-main.pdf B=compressed-covers.pdf cat B3 A2-end output final/final3.pdf
|
||||
pdftk A=compressed-main.pdf B=compressed-covers.pdf cat B4 A2-end output final/final4.pdf
|
||||
pdftk A=compressed-main.pdf B=compressed-covers.pdf cat B5 A2-end output final/final5.pdf
|
||||
42
compile-pdfs-uncompressed.sh
Executable file
@@ -0,0 +1,42 @@
|
||||
gs \
|
||||
-sDEVICE=pdfwrite \
|
||||
-dCompatibilityLevel=1.5 \
|
||||
-dNOPAUSE -dQUIET -dBATCH \
|
||||
-dPrinted=false \
|
||||
-sOutputFile=uncompressed-main.pdf \
|
||||
-sColorConversionStrategy=CMYK \
|
||||
-dProcessColorModel=/DeviceCMYK \
|
||||
-dEncodeColorImages=false \
|
||||
-dEncodeGrayImages=false \
|
||||
-dEncodeMonoImages=false \
|
||||
main.pdf
|
||||
gs -sDEVICE=pdfwrite \
|
||||
-dCompatibilityLevel=1.5 \
|
||||
-dNOPAUSE -dQUIET \
|
||||
-dBATCH -dPrinted=false \
|
||||
-sOutputFile=uncompressed-covers.pdf \
|
||||
-sColorConversionStrategy=CMYK \
|
||||
-dProcessColorModel=/DeviceCMYK \
|
||||
-dEncodeColorImages=false \
|
||||
-dEncodeGrayImages=false \
|
||||
-dEncodeMonoImages=false \
|
||||
covers.pdf
|
||||
gs -sDEVICE=pdfwrite \
|
||||
-dCompatibilityLevel=1.5 \
|
||||
-dNOPAUSE -dQUIET \
|
||||
-dBATCH -dPrinted=false \
|
||||
-sOutputFile=uncompressed-onesheet.pdf \
|
||||
-sColorConversionStrategy=CMYK \
|
||||
-dProcessColorModel=/DeviceCMYK \
|
||||
-dEncodeColorImages=false \
|
||||
-dEncodeGrayImages=false \
|
||||
-dEncodeMonoImages=false \
|
||||
onesheet.pdf
|
||||
pdfimages -list uncompressed-main.pdf
|
||||
pdfimages -list final/uncompressed-onesheet.pdf
|
||||
pdfimages -list uncompressed-covers.pdf
|
||||
pdftk A=uncompressed-main.pdf B=uncompressed-covers.pdf cat B1 A2-end output final/final1-uncompressed.pdf
|
||||
pdftk A=uncompressed-main.pdf B=uncompressed-covers.pdf cat B2 A2-end output final/final2-uncompressed.pdf
|
||||
pdftk A=uncompressed-main.pdf B=uncompressed-covers.pdf cat B3 A2-end output final/final3-uncompressed.pdf
|
||||
pdftk A=uncompressed-main.pdf B=uncompressed-covers.pdf cat B4 A2-end output final/final4-uncompressed.pdf
|
||||
pdftk A=uncompressed-main.pdf B=uncompressed-covers.pdf cat B5 A2-end output final/final5-uncompressed.pdf
|
||||
84
covers.tex
Normal file
@@ -0,0 +1,84 @@
|
||||
\documentclass[10pt,a5paper]{article}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[x11names]{xcolor}
|
||||
\usepackage{background,mathpazo,pdfpages,tikz,datatool,graphicx,fontspec-xetex,ragged2e,setspace, lipsum, tcolorbox}
|
||||
% gute Website mit Bildern: https://illustrationage.com/2019/07/02/turn-back-the-pages-simplicissimus-magazine/
|
||||
% AI Image Enlarger https://bigjpg.com/
|
||||
\usepackage{incgraph}
|
||||
\usepackage[screen,nopanel]{pdfscreen}
|
||||
|
||||
\input{cmds.tex}
|
||||
\usepackage{geometry}
|
||||
\geometry{
|
||||
layout=a5paper,
|
||||
paperheight=216mm,
|
||||
paperwidth=154mm,
|
||||
layoutoffset=3mm,
|
||||
margin=3mm,
|
||||
showframe=false,
|
||||
showcrop=false
|
||||
}
|
||||
\pagestyle{empty}
|
||||
\pagecolor{bg}
|
||||
|
||||
\begin{document}
|
||||
\newpage
|
||||
|
||||
\noindent\includegraphics[height=\textheight]{cover_05_15_117-upscaled-alpha.resized.png}
|
||||
\vfill
|
||||
\clearpage
|
||||
\newpage
|
||||
\noindent\includegraphics[height=\textheight]{cover_05_36_285-upscaled-alpha.resized.png}
|
||||
\clearpage
|
||||
\newpage
|
||||
\noindent\includegraphics[height=\textheight]{cover_24_03_033-upscaled-alpha.resized.png}
|
||||
\clearpage
|
||||
\newpage
|
||||
\noindent\includegraphics[height=\textheight]{cover_09_53_521-upscale-alpha.resized.png}
|
||||
\clearpage
|
||||
\newpage
|
||||
\noindent\includegraphics[height=\textheight]{cover_37_19_217-upscaled-alpha.resized.png}
|
||||
\clearpage
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=0.85\pdfpagewidth]{cover_05_36_285-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_09_48_471-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_09_53_521-upscale-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_24_03_033-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_37_19_217-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
|
||||
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_37_05_049-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
|
||||
%\newpage
|
||||
%\begin{tikzpicture}[remember picture,overlay]
|
||||
% \node at (current page.center) {\includegraphics[width=\pdfpagewidth]{cover_37_35_409-upscaled-alpha.resized.png}};
|
||||
%\end{tikzpicture}
|
||||
%\clearpage
|
||||
\newpage
|
||||
|
||||
|
||||
\end{document}
|
||||
343
drinks.csv
@@ -1,172 +1,171 @@
|
||||
name;beschreibung;img;preis1;preis2;size1;size2;cat;note
|
||||
Trierer Stadtkaffee;Finca Yuri von Mondo del Caffè;GlassMugHot;2,10;3,00;klein;groß;Kaffee;
|
||||
Capuccino;Espresso mit heißem Milchschaum;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Milchkaffee;Kaffee mit heißem Milchschaum;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Espresso;Einfach Espresso;GlassMugHot;2,10;3,00;einfach;doppelt;Kaffee;
|
||||
Esspresso Macchiato;Espresso mit einer kleinen Schaumkrone;GlassMugHot;2,40;;;;Kaffee;
|
||||
Latte Macchiato;Heißer Milchschaum mit einem Schuss Kaffee;GlassMugHot;3,80;;;;Kaffee;
|
||||
Chocmoc;Cappucino mit Kakao;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Sahnehäubchen;;GlassMugHot;0,20;;;;Kaffee;zusatz
|
||||
Schuss Sirup;(z.B. Kokos, Haselnuss oder Karamell);GlassMugHot;0,40;;;;Kaffee;zusatz
|
||||
Honig;aus Olewig;GlassMugHot;0,20;;;;Kaffee;zusatz
|
||||
Schuss Schnaps;(z.B. Amaretto, Kahlua, Rum oder Veterano);GlassMugHot;2,20;;;;Kaffee;zusatz
|
||||
Hibiskustee;;GlassMugHot;2,50;;;;Tee;
|
||||
Schwarzer Tee;;GlassMugHot;2,50;;;;Tee;
|
||||
Grüner Tee;;GlassMugHot;2,50;;;;Tee;
|
||||
Pfefferminztee;;GlassMugHot;2,50;;;;Tee;
|
||||
Fencheltee;;GlassMugHot;2,50;;;;Tee;
|
||||
Kamillentee;;GlassMugHot;2,50;;;;Tee;
|
||||
Früchtetee;;GlassMugHot;2,50;;;;Tee;
|
||||
basischer Kräutertee;;GlassMugHot;2,50;;;;Tee;
|
||||
Kräutertee;;GlassMugHot;2,50;;;;Tee;
|
||||
Classic Chai;(Zimt, Yogi);GlassMugHot;2,50;;;;Tee;
|
||||
Black Chai;(Yogi);GlassMugHot;2,50;;;;Tee;
|
||||
Frische Minze;(nur saisonal);;0,20;;;;Tee;zusatz
|
||||
Limettensaft;;;0,20;;;;Tee;zusatz
|
||||
Zitronensaft;;;0,20;;;;Tee;zusatz
|
||||
Honig;aus Olewig;;0,20;;;;Tee;zusatz
|
||||
Sirup;(z.B. Kokos, Haselnuss oder Karamell);;0,20;;;;Tee;zusatz
|
||||
Schuss Schnaps;(z.B. Amaretto, Kahlua, Rum oder Veterano);;2,20;;;;Tee;zusatz
|
||||
Milchschaum;(z.B. Black Chai Latte);;0,90;;;;Tee;zusatz
|
||||
Teepreis;;;2,00;2,50;klein;groß;Teepreis;
|
||||
Ingwer;;GlassMugHot;2,50;;0,30l;;Frischer Tee;
|
||||
Heiße Limette;;GlassMugHot;2,50;;0,30l;;Frischer Tee;
|
||||
Heiße Zitrone;;GlassMugHot;2,50;;0,30l;;Frischer Tee;
|
||||
Kakao;Bio Cocoba, mit Kuh- oder Hafermlich;;2,10;3,80;klein;groß;Kakao;
|
||||
Ananas;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Banane;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Kirsche;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Maracuja;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Pink Grapefruit;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Apfel;(naturtrüb);;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Apfel-Mango;;;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Orange;;;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Saftpreis;;;2,10;3,80;0,20l;0,40l;Saftpreis;
|
||||
Blutorange;;;3,30;;0,33l;;Biozisch;
|
||||
Ingwer;;;3,30;;0,33l;;Biozisch;
|
||||
Himber-Cassis;;;3,30;;0,33l;;Biozisch;
|
||||
Mate;;;3,30;;0,33l;;Biozisch;
|
||||
Rhababer;;;3,30;;0,33l;;Biozisch;
|
||||
BiozischPreis;;;3,30;;0,33l;;BiozischPreis;
|
||||
Bitter Lemon;;;3,30;;0,33l;;Schweppes;
|
||||
Tonic;;;2,40;4,00;0,20l;0,40l;Schweppes;
|
||||
SchweppesPreis;;;2,40;4,00;0,20l;0,40l;SchweppesPreis;
|
||||
Orange;;;2,10;3,80;0,20l;0,40l;Bluna;
|
||||
Zitrone;;;2,10;3,80;0,20l;0,40l;Bluna;
|
||||
BlunaPreis;;;2,10;3,80;0,20l;0,40l;BlunaPreis;
|
||||
Cola;;;2,10;3,80;0,20l;0,40l;Afri;
|
||||
Cola Light;;;2,10;3,80;0,20l;0,40l;Afri;
|
||||
AfriPreis;;;2,10;3,80;0,20l;0,40l;AfriPreis;
|
||||
Sprudel;;;1,50;2,50;0,20l;0,40l;Sprudel;
|
||||
Schorle;;;2,10;3,80;0,20l;0,40l;Schorle;
|
||||
Bitburger Pils;\textbf{Frisch gezapft.} Klassisches hopfenbetontes Pils;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Benediktiner Hell;\textbf{Frisch gezapft.} Lagerbier. Mild und erfrischend;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Hacker-Pschorr Weizen;\textbf{Frisch gezapft.} Naturtrüb, würzig und erfrischend;;2,80;4,50;0,30l;0,50l;Bier;
|
||||
Rhenania Alt;\textbf{Frisch gezapft.} feinherb mit dezenter Malznote;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Lammsbräu Zzzisch;\textbf{Aus der Flasche.} Bio, Pils. Harmonisch Feinherb;;3,30;;0,33l;;Bier;
|
||||
Wulle Vollbier Hell;\textbf{Aus der Flasche.} Schnörkellos, ehrlich, mild;;3,30;;0,33l;;Bier;
|
||||
Lammsbräu Alkoholfrei;\textbf{Aus der Flasche.} Bio. Ausgewogenes Malzaroma mit feinherber Hopfennote;;3,30;;0,33l;;Bier;
|
||||
Erdinger Weizen Alkoholfrei;\textbf{Aus der Flasche.} Spritzig erfrischend;;4,50;;0,50l;;Bier;
|
||||
Lammsbräu Aktivmalz;\textbf{Aus der Flasche, Alkoholfrei.} Kräftig, aromatisch, süß;;3,30;;0,33l;;Bier;
|
||||
Riesling, halbtrocken;Weingut Becker, Pölich, Mosel;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Riesling, trocken;Weingut Becker, Pölich, Mosel;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Vinja del Oja Tinto, Rot;Tempranillo, Rioja, Spanien. Trocken;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Infinitus, Rot;Merlot, Spanien. Trocken;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Rosé des Demoiselles;Cellier des Demoiselles, Languedoc, Frankreich. Trocken;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Bernard-Massard Tradition Sekt;Jahrgangssekt, Trier. Trocken;;3,00;14,00;0,10l;Flasche, 0,75l;Wein;
|
||||
Piccolo;Sekt, Herrenklasse. Trocken. Nur im Winter verfügbar;;5,50;;0,20l;;Wein;
|
||||
Met;Honigwein, hausgemacht;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Viez;Viezhandel A. Scherf, Waldrach;;2,40;;0,40l;;Viez;
|
||||
Kräuterstern;bitter;;2,50;;2cl;;Kräuterapotheke;
|
||||
Santasapina;Maispitzen;;2,50;;2cl;;Kräuterapotheke;
|
||||
Schwedenbitter;;;2,50;;2cl;;Kräuterapotheke;
|
||||
Amaretto-Kirsch o. Apfel;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Batida-Kirsch;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Campari-Orange;;;5,50;;4cl;;LongdrinkAp;
|
||||
Gin Ginger;Finsbury;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Gute-Laune-Cola;Rum, Cola & Zitrone;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Jacky-Cola;;;5,30;8,00;2cl;4cl;Longdrinks;
|
||||
Jameson Ginger Lime;;;5,30;8,00;2cl;4cl;Longdrinks;
|
||||
Moscow Mule;Vodka, Limette, Ginger-Ale;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Munich Mule;Gin, Limette, Ginger-Ale;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Ouzokeule;Ouzo, Orangensaf;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Rum-Cola;Pott-Rum & Cola;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Skinny Bitch;Vodka, Sprudel & Zitrone;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Southern-Comfort-Sprite;;;4,80;7,00;2cl;4cl;Longdrinks;
|
||||
Vodka-Mate;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Aperol-Spritz;Aperol, Sekt, Sprudel;;5,00;;;;LongdrinkAp;
|
||||
Kir Royal;Sekt, Creme de Cassis;;5,00;;;;LongdrinkAp;
|
||||
Finsbury Tonic;;;4,30;;6,50;;GinTonic;
|
||||
Needle Tonic;;;4,80;;7,50;;GinTonic;
|
||||
Tanqueray Tonic;;;5,30;;8,00;;GinTonic;
|
||||
Amaretto Sour;Amaretto, Orangen- & Zitronensaft;;6,50;;;;Cocktails;
|
||||
Batida Sunrise;Batida, Ananassaft & Kirschlikör;;7,50;;;;Cocktails;
|
||||
Caipirinha;Cachaca, Rohrzucker & Bio-Limetten;;7,50;;;;Cocktails;
|
||||
Cuba Libre;Rum, Cola & Bio-Limette;;7,50;;;;Cocktails;
|
||||
Espresso-Martini;Espresso, Vodka, Kahlua;;6,00;;;;Cocktails;
|
||||
Grüne Witwe;Curacao & Orangensaft;;5,50;;;;Cocktails;
|
||||
Iris‘ Feuchtes Pfläumchen;Säfte, Vodka;;6,00;;;;Cocktails;
|
||||
Pina Colada;Rum, Ananassaft & Kokossirup;;7,50;;;;Cocktails;
|
||||
Simplicissimus;Säfte, Cachaca, Vodka & Zuckersirup;;7,50;;;;Cocktails;
|
||||
Tequila Sunrise;Tequila, Orangensaft & Grenadine;;7,50;;;;Cocktails;
|
||||
White Russian;Kahlua, Vodka & Milch;;7,50;;;;Cocktails;
|
||||
Whisky Sour;Whisky, Zitronensaft, Zuckersirup;;7,50;;;;Cocktails;
|
||||
Drachenblut;Kirsch-, Maracuja-, Zitronensaft & Zuckersirup;;5,50;;;;CocktailsAlkoholfrei;
|
||||
Suppes;Ananas-, Bananen-, Maracuja-, Zitronensaft & Cocossirup;;5,50;;;;CocktailsAlkoholfrei;
|
||||
Chilli;;;2,50;;2cl;;Hausgemachtes;
|
||||
Pfefferminz;;;2,50;;2cl;;Hausgemachtes;
|
||||
Hagebutte;;;2,50;;2cl;;Hausgemachtes;
|
||||
Don Promillo;Kakao, Honig, Chilli;;2,50;;2cl;;Hausgemachtes;
|
||||
Zivo;Zitrone & Vodka;;2,50;;2cl;;Hausgemachtes;
|
||||
Rose;Guarana;;2,50;;2cl;;Hausgemachtes;
|
||||
Mexikaner;;;1,50;;2cl;;Hausgemachtes;
|
||||
Eulenmassaker;Zivo, Grenadine & Tabasco;;1,50;;2cl;;Hausgemachtes;
|
||||
Hemmerling;Pfirsich, Maracuja, Vodka, Sahne;;3,50;;2cl;;Hausgemachtes;
|
||||
Amaretto;;;2,50;;2cl;;Classics;
|
||||
Aquavit;;;2,50;;2cl;;Classics;
|
||||
Asbach;;;2,50;;2cl;;Classics;
|
||||
Baileys;;;2,50;;2cl;;Classics;
|
||||
Batida;;;2,50;;2cl;;Classics;
|
||||
Campari;;;3,50;;4cl;;Classics;
|
||||
Cointreau;;;2,50;;2cl;;Classics;
|
||||
Cynar;;;2,50;;2cl;;Classics;
|
||||
Erdbeerlimes;;;1,50;;2cl;;Classics;
|
||||
Escorial;;;2,50;;2cl;;Classics;
|
||||
Fernet Branca;;;2,50;;2cl;;Classics;
|
||||
Fernet Menta;;;2,50;;2cl;;Classics;
|
||||
Frangelico;;;1,90;;2cl;;Classics;
|
||||
Friesengeist;;;2,50;;2cl;;Classics;
|
||||
Gin Finsbury;;;2,50;;2cl;;Classics;
|
||||
Gin Needle;;;3,00;;2cl;;Classics;
|
||||
Gin Tanqueray;;;3,50;;2cl;;Classics;
|
||||
Genever;;;1,90;;2cl;;Classics;
|
||||
Haifischblut;;;2,50;;2cl;;Classics;
|
||||
Jägermeister;;;2,50;;2cl;;Classics;
|
||||
Kahlua;;;2,50;;2cl;;Classics;
|
||||
Korn;;;2,50;;2cl;;Classics;
|
||||
Luft;;;1,50;;2cl;;Classics;
|
||||
Martini;;;2,50;;5cl;;Classics;
|
||||
Obstler;;;2,50;;2cl;;Classics;
|
||||
Ouzo;;;2,80;;2cl;;Classics;
|
||||
Pastis 51;;;2,80;;2cl;;Classics;
|
||||
Pernod;;;2,50;;2cl;;Classics;
|
||||
Ramazzotti;;;2,50;;2cl;;Classics;
|
||||
Remy Martin;;;3,50;;2cl;;Classics;
|
||||
Southern Comfort;;;3,00;;2cl;;Classics;
|
||||
Sambuca;;;2,50;;2cl;;Classics;
|
||||
Saarländer;;;1,50;;2cl;;Classics;
|
||||
Tequila;;;2,50;;2cl;;Classics;
|
||||
Vodka Wyborowa;;;2,50;;2cl;;Classics;
|
||||
Vodka Moskovskaya;;;2,50;;2cl;;Classics;
|
||||
Veterano;;;2,50;;2cl;;Classics;
|
||||
Glenlivet;;;3,80;;2cl;;Whisky;
|
||||
Glenmorangie;;;3,80;;2cl;;Whisky;
|
||||
Oban;;;4,00;;2cl;;Whisky;
|
||||
Talisker;;;4,00;;2cl;;Whisky;
|
||||
Jim Beam;;;3,50;;2cl;;Whisky;
|
||||
Jack Daniels;;;3,50;;2cl;;Whisky;
|
||||
Old Pascas White;;;2,50;;2cl;;Rum;
|
||||
Pott 54%;;;2,50;;2cl;;Rum;
|
||||
Old Pascas 72%;;;3,50;;2cl;;Rum;
|
||||
Cachaca;;;2,50;;2cl;;Rum;
|
||||
Botucal;;;4,00;;2cl;;Rum;
|
||||
name;beschreibung;img;preis1;preis2;size1;size2;cat;note;note2
|
||||
Trierer Stadtkaffee;Finca Yuri;GlassMugHot;2,20;3,50;klein;groß;Kaffee;;
|
||||
Capuccino;Espresso mit heißem Milchschaum;GlassMugHot;2,20;4,20;klein;groß;Kaffee;;
|
||||
Milchkaffee;Kaffee mit heißem Milchschaum;GlassMugHot;2,20;4,20;klein;groß;Kaffee;;
|
||||
Espresso;Italian Taste;GlassMugHot;2,20;3,50;einfach;doppelt;Kaffee;;
|
||||
Espresso Macchiato;Espresso mit einer kleinen Schaumkrone;GlassMugHot;2,40;;;;Kaffee;;
|
||||
Latte Macchiato;Heißer Milchschaum mit einem Schuss Kaffee;GlassMugHot;4,20;;;;Kaffee;;
|
||||
Chocmoc;Cappucino mit Kakao;GlassMugHot;2,20;4,20;klein;groß;Kaffee;;
|
||||
Sahnehäubchen;;GlassMugHot;0,20;;;;Kaffee;zusatz;
|
||||
Honig;aus Olewig;GlassMugHot;0,20;;;;Kaffee;zusatz;
|
||||
Schuss Schnaps;2cl, z.B. Amaretto, Kahlua, Rum oder Veterano;GlassMugHot;2,20;;;;Kaffee;zusatz;
|
||||
Hibiskustee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Schwarzer Tee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Grüner Tee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Pfefferminztee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Fencheltee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Kamillentee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Früchtetee;;GlassMugHot;2,50;;;;Tee;;
|
||||
basischer Kräutertee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Kräutertee;;GlassMugHot;2,50;;;;Tee;;
|
||||
Classic Chai;Zimt, Yogi;GlassMugHot;2,50;;;;Tee;;
|
||||
Black Chai;Yogi;GlassMugHot;2,50;;;;Tee;;
|
||||
Frische Minze;nur saisonal;;0,20;;;;Tee;zusatz;
|
||||
Limettensaft;;;0,20;;;;Tee;zusatz;
|
||||
Zitronensaft;;;0,20;;;;Tee;zusatz;
|
||||
Honig;aus Olewig;;0,20;;;;Tee;zusatz;
|
||||
Schuss Schnaps;z.B. Amaretto, Kahlua, Rum oder Veterano;;2,20;;;;Tee;zusatz;
|
||||
Milchschaum;z.B. Black Chai Latte;;1,00;;;;Tee;zusatz;
|
||||
Teepreis;;;2,00;2,50;klein;groß;Teepreis;;
|
||||
Ingwer;;GlassMugHot;3,00;;;;Frischer Tee;;
|
||||
Frische Limette;;GlassMugHot;3,00;;;;Frischer Tee;;
|
||||
Heiße Zitrone;;GlassMugHot;3,00;;;;Frischer Tee;;
|
||||
Kakao;Kakao, mit Bio Kuh- oder Hafermlich;;2,20;4,20;klein;groß;Kakao;;
|
||||
Ananas;;;2,20;4,20;0,20l;0,40l;Granini;;
|
||||
Banane;;;2,20;4,20;0,20l;0,40l;Granini;;
|
||||
Kirsche;;;2,20;4,20;0,20l;0,40l;Granini;;
|
||||
Maracuja;;;2,20;4,20;0,20l;0,40l;Granini;;
|
||||
Pink Grapefruit;;;2,20;4,20;0,20l;0,40l;Granini;;
|
||||
Apfel;naturtrüb;;2,20;4,20;0,20l;0,40l;Saft Conrad;;
|
||||
Apfel-Mango;;;2,20;4,20;0,20l;0,40l;Saft Conrad;;
|
||||
Orange;;;2,20;4,20;0,20l;0,40l;Saft Conrad;;
|
||||
Saftpreis;;;2,20;4,20;0,20l;0,40l;Saftpreis;;
|
||||
Blutorange;;;3,60;;0,33l;;Biozisch;;
|
||||
Ingwer;;;3,60;;0,33l;;Biozisch;;
|
||||
Himbeer-Cassis;;;3,60;;0,33l;;Biozisch;;
|
||||
Mate;;;3,60;;0,33l;;Biozisch;;
|
||||
Rhabarber;;;3,60;;0,33l;;Biozisch;;
|
||||
BiozischPreis;;;3,60;;0,33l;;BiozischPreis;;
|
||||
Bitter Lemon;;;2,50;4,50;0,20l;0,40l;Schweppes;;
|
||||
Tonic;;;2,50;4,20;0,20l;0,40l;Schweppes;;
|
||||
SchweppesPreis;;;2,40;4,50;0,20l;0,40l;SchweppesPreis;;
|
||||
Orange;;;2,20;4,20;0,20l;0,40l;Bluna;;
|
||||
Zitrone;;;2,20;4,20;0,20l;0,40l;Bluna;;
|
||||
BlunaPreis;;;2,20;4,20;0,20l;0,40l;BlunaPreis;;
|
||||
Cola;;;2,20;4,20;0,20l;0,40l;Afri;;
|
||||
Cola Light;;;2,20;4,20;0,20l;0,40l;Afri;;
|
||||
AfriPreis;;;2,20;4,20;0,20l;0,40l;AfriPreis;;
|
||||
Sprudel;;;1,50;2,80;0,20l;0,40l;Sprudel;;
|
||||
Schorle;;;2,20;4,20;0,20l;0,40l;Schorle;;
|
||||
Bitburger Pils;Frisch gezapft. Klassisches hopfenbetontes Pils;;2,20;4,20;0,20l;0,40l;Bier;;
|
||||
Hacker-Pschorr Weizen;Frisch gezapft. Naturtrüb, würzig und erfrischend;;2,80;4,80;0,30l;0,50l;Bier;;
|
||||
Rhenania Alt;Frisch gezapft. feinherb mit dezenter Malznote;;2,20;4,20;0,20l;0,40l;Bier;;
|
||||
Odin;Bitburger Pils mit hausgemachtem Met.;;2,50;4,60;0,20l;0,40l;Bier;;
|
||||
Lammsbräu Zzzisch;Aus der Flasche. Bio, Pils. Harmonisch Feinherb;;3,60;;0,33l;;Bier;;
|
||||
Wulle Vollbier Hell;Aus der Flasche. Schnörkellos, ehrlich, mild;;3,60;;0,33l;;Bier;;
|
||||
Lammsbräu Alkoholfrei;Aus der Flasche. Bio. Ausgewogenes Malzaroma mit feinherber Hopfennote;;3,60;;0,33l;;Bier;;
|
||||
Benedektiner Weizen Alkoholfrei;Aus der Flasche. Spritzig erfrischend;;4,50;;0,50l;;Bier;;
|
||||
Lammsbräu Aktivmalz;Aus der Flasche, Alkoholfrei. Kräftig, aromatisch, süß;;3,60;;0,33l;;Bier;;
|
||||
Viez;Scherfs Viez, Waldrach. Auch im Mix mit z.B. Sprudel, Limo oder Kirschsaft;;2,50;;0,40l;;Bier;;
|
||||
Riesling, halbtrocken;Weingut Becker, Pölich, Mosel;;2,20;4,20;0,10l;0,20l;Wein;;
|
||||
Riesling, trocken;Weingut Becker, Pölich, Mosel;;2,20;4,20;0,10l;0,20l;Wein;;
|
||||
Vinja del Oja Tinto, Rot;Tempranillo, Rioja, Spanien. Trocken;;2,50;4,50;0,10l;0,20l;Wein;;
|
||||
Infinitus, Rot;Merlot, Spanien. Trocken;;2,50;4,50;0,10l;0,20l;Wein;;
|
||||
Rosé des Demoiselles;Cellier des Demoiselles, Languedoc, Frankreich. Trocken;;2,20;4,20;0,10l;0,20l;Wein;;
|
||||
Bernard-Massard Riesling Sekt;Klassische Flaschengärung, Trier. Trocken;;3,00;17,50;0,10l;Flasche, 0,75l;Wein;;
|
||||
Piccolo;Sekt, Herrenklasse. Trocken.;;5,50;;Flasche, 0,20l;;Wein;;
|
||||
Met;Honigwein, hausgemacht;;2,50;4,50;0,10l;0,20l;Wein;;
|
||||
Viez;Viezhandel A. Scherf, Waldrach;;2,40;;0,40l;;Viez;;
|
||||
Kräuterstern;bitter;;2,50;;2cl;;Kräuterapotheke;;
|
||||
Santasapina;Maispitzen;;2,50;;2cl;;Kräuterapotheke;;
|
||||
Schwedenbitter;;;2,50;;2cl;;Kräuterapotheke;;
|
||||
Amaretto-Kirsch o. Apfel;;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Batida-Kirsch;;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Gin Ginger;Finsbury;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Gute-Laune-Cola;Rum, Cola & Zitrone;;4,50;6,90;2cl;4cl;Longdrinks;;
|
||||
Jacky-Cola;;;5,30;8,00;2cl;4cl;Longdrinks;;
|
||||
Jameson Ginger Lime;;;5,30;8,00;2cl;4cl;Longdrinks;;
|
||||
Ouzokeule;Ouzo, Orangensaft;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Rum-Cola;Pott-Rum & Cola;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Skinny Bitch;Vodka, Sprudel & Zitrone;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Southern-Comfort-Sprite;;;4,80;7,00;2cl;4cl;Longdrinks;;
|
||||
Vodka-Mate;;;4,30;6,50;2cl;4cl;Longdrinks;;
|
||||
Aperol-Spritz;Aperol, Sekt, Sprudel;;6,00;;;;LongdrinkAp;;
|
||||
Campari-Orange;;;5,50;;4cl;;LongdrinkAp;;
|
||||
Kir Royal;Sekt, Creme de Cassis;;5,00;;;;LongdrinkAp;;
|
||||
Finsbury Tonic;;;4,30;6,50;2cl;4cl;GinTonic;;
|
||||
Needle Tonic;;;4,80;7,50;2cl;4cl;GinTonic;;
|
||||
Tanqueray Tonic;;;5,30;8,00;2cl;4cl;GinTonic;;
|
||||
Amaretto Sour;Amaretto, Orangen- & Zitronensaft;;6,50;;;;Cocktails;;
|
||||
Batida Sunrise;Batida, Ananassaft & Kirschlikör;;7,50;;;;Cocktails;;
|
||||
Caipirinha;Cachaca, Rohrzucker & Bio-Limetten;;7,50;;;;Cocktails;;
|
||||
Cuba Libre;Rum, Cola & Bio-Limette;;7,50;;;;Cocktails;;
|
||||
Espresso-Martini;Espresso, Vodka, Kahlua;;6,50;;;;Cocktails;;
|
||||
Grüne Witwe;Curacao & Orangensaft;;5,50;;;;Cocktails;;
|
||||
Iris‘ Feuchtes Pfläumchen;Säfte, Vodka;;6,00;;;;Cocktails;;
|
||||
Pina Colada;Rum, Ananassaft & Kokossirup;;7,50;;;;Cocktails;;
|
||||
Simplicissimus;Säfte, Cachaca, Vodka & Zuckersirup;;7,50;;;;Cocktails;;
|
||||
Tequila Sunrise;Tequila, Orangensaft & Grenadine;;7,50;;;;Cocktails;;
|
||||
White Russian;Kahlua, Vodka & Milch;;7,50;;;;Cocktails;;
|
||||
Whisky Sour;Whisky, Zitronensaft, Zuckersirup;;7,50;;;;Cocktails;;
|
||||
Drachenblut;Kirsch-, Maracuja-, Zitronensaft & Zuckersirup;;5,50;;;;CocktailsAlkoholfrei;;
|
||||
Suppes;Ananas-, Bananen-, Maracuja-, Zitronensaft & Cocossirup;;5,50;;;;CocktailsAlkoholfrei;;
|
||||
Chilli;;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Pfefferminz;;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Rumtopf;;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Don Promillo;Kakao, Honig, Chilli;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Zivo;Zitrone & Vodka;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Rose;Guarana;;2,50;;2cl;;Hausgemachtes;zocker;
|
||||
Eulenmassaker;Zivo, Grenadine & Tabasco;;3,50;;4cl;;Hausgemachtes;;
|
||||
Amaretto;;;2,50;;2cl;;Classics;;
|
||||
Aquavit;;;2,50;;2cl;;Classics;;
|
||||
Asbach;;;2,50;;2cl;;Classics;;
|
||||
Baileys;;;2,50;;2cl;;Classics;;
|
||||
Batida;;;2,50;;2cl;;Classics;;
|
||||
Campari;;;3,50;;4cl;;Classics;;
|
||||
Cointreau;;;2,50;;2cl;;Classics;;
|
||||
Cynar;;;2,50;;2cl;;Classics;;
|
||||
Escorial;;;2,50;;2cl;;Classics;;
|
||||
Fernet Branca;… oder Branca Menta;;2,50;;2cl;;Classics;;
|
||||
Friesengeist;;;2,50;;2cl;;Classics;;
|
||||
Gin Finsbury;;;2,50;;2cl;;Classics;;
|
||||
Gin Needle;;;3,00;;2cl;;Classics;;
|
||||
Gin Tanqueray;;;3,50;;2cl;;Classics;;
|
||||
Genever;;;1,90;;2cl;;Classics;;
|
||||
Haifischblut;Vodka, Tabasco und Sangrita;;2,50;;2cl;;Classics;;
|
||||
Jägermeister;;;2,50;;2cl;;Classics;;
|
||||
Kahlua;;;2,50;;2cl;;Classics;;
|
||||
Korn;;;2,50;;2cl;;Classics;;
|
||||
Martini;;;2,50;;5cl;;Classics;;
|
||||
Alter Obstler;Willi, Marille oder Mirabelle;;3,50;;2cl;;Classics;;
|
||||
Obstler;Willi oder Marille;;2,50;;2cl;;Classics;;
|
||||
Ouzo;;;2,80;;2cl;;Classics;;
|
||||
Pastis 51;;;2,80;;2cl;;Classics;;
|
||||
Pernod;;;2,50;;2cl;;Classics;;
|
||||
Ramazzotti;;;2,50;;2cl;;Classics;;
|
||||
Remy Martin;;;3,50;;2cl;;Classics;;
|
||||
Southern Comfort;;;3,00;;2cl;;Classics;;
|
||||
Vodka ;Wyborowa oder Moskovskaya;;2,50;;2cl;;Classics;;
|
||||
Veterano;;;2,50;;2cl;;Classics;;
|
||||
Glenlivet;;;4,20;;2cl;;Whisky;;
|
||||
Glenmorangie;;;4,20;;2cl;;Whisky;;
|
||||
Oban;;;4,00;;2cl;;Whisky;;
|
||||
Talisker;;;4,00;;2cl;;Whisky;;
|
||||
Jim Beam;;;3,50;;2cl;;Whisky;;
|
||||
Jack Daniels;;;3,50;;2cl;;Whisky;;
|
||||
Old Pascas White;;;2,50;;2cl;;Rum;;
|
||||
Pott 54%;;;2,50;;2cl;;Rum;;
|
||||
Old Pascas 72%;;;3,50;;2cl;;Rum;;
|
||||
Cachaca;;;2,50;;2cl;;Rum;;
|
||||
Botucal;;;4,00;;2cl;;Rum;;
|
||||
Mexikaner;Hausgemacht;;1,50;;2cl;;Beliebt;;Beliebt
|
||||
Saarländer;Mexikaner mit einem Schuss Maggi;;1,50;;2cl;;Beliebt;;Beliebt
|
||||
Hemmerling;wie ein Solero im Freibad (Hausgemacht);;1,50;;2cl;;Beliebt;;Beliebt
|
||||
Maracujalimes;Süßkram;;1,50;;2cl;;Beliebt;zocker;Beliebt
|
||||
Erdbeerlimes;Süßkram;;1,50;;2cl;;Beliebt;zocker;Beliebt
|
||||
Frangelico;Süße Haselnuss;;2,50;;2cl;;Beliebt;zocker;Beliebt
|
||||
Sambuca;Anis;;2,50;;2cl;;Beliebt;zocker;Beliebt
|
||||
Luft;Pfefferminzlikör;;1,50;;2cl;;Beliebt;zocker;Beliebt
|
||||
Fernet Menta;Pfefferminzlikör mit mehr Zunder;;2,50;;2cl;;Beliebt;;Beliebt
|
||||
Tequila;Silber oder Gold;;2,50;;2cl;;Beliebt;;Beliebt
|
||||
Zockerpreis;;;1,50;;;;;;
|
||||
|
||||
|
173
drinks.csv~
Normal file
@@ -0,0 +1,173 @@
|
||||
name;beschreibung;img;preis1;preis2;size1;size2;cat;note
|
||||
Trierer Stadtkaffee;Finca Yuri von Mondo del Caffè;GlassMugHot;2,10;3,00;klein;groß;Kaffee;
|
||||
Capuccino;Espresso mit heißem Milchschaum;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Milchkaffee;Kaffee mit heißem Milchschaum;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Espresso;Einfach Espresso;GlassMugHot;2,10;3,00;einfach;doppelt;Kaffee;
|
||||
Esspresso Macchiato;Espresso mit einer kleinen Schaumkrone;GlassMugHot;2,40;;;;Kaffee;
|
||||
Latte Macchiato;Heißer Milchschaum mit einem Schuss Kaffee;GlassMugHot;3,80;;;;Kaffee;
|
||||
Chocmoc;Cappucino mit Kakao;GlassMugHot;2,10;3,80;klein;groß;Kaffee;
|
||||
Sahnehäubchen;;GlassMugHot;0,20;;;;Kaffee;zusatz
|
||||
Honig;aus Olewig;GlassMugHot;0,20;;;;Kaffee;zusatz
|
||||
Schuss Schnaps;(z.B. Amaretto, Kahlua, Rum oder Veterano);GlassMugHot;2,20;;;;Kaffee;zusatz
|
||||
Hibiskustee;;GlassMugHot;2,50;;;;Tee;
|
||||
Schwarzer Tee;;GlassMugHot;2,50;;;;Tee;
|
||||
Grüner Tee;;GlassMugHot;2,50;;;;Tee;
|
||||
Pfefferminztee;;GlassMugHot;2,50;;;;Tee;
|
||||
Fencheltee;;GlassMugHot;2,50;;;;Tee;
|
||||
Kamillentee;;GlassMugHot;2,50;;;;Tee;
|
||||
Früchtetee;;GlassMugHot;2,50;;;;Tee;
|
||||
basischer Kräutertee;;GlassMugHot;2,50;;;;Tee;
|
||||
Kräutertee;;GlassMugHot;2,50;;;;Tee;
|
||||
Classic Chai;(Zimt, Yogi);GlassMugHot;2,50;;;;Tee;
|
||||
Black Chai;(Yogi);GlassMugHot;2,50;;;;Tee;
|
||||
Frische Minze;(nur saisonal);;0,20;;;;Tee;zusatz
|
||||
Limettensaft;;;0,20;;;;Tee;zusatz
|
||||
Zitronensaft;;;0,20;;;;Tee;zusatz
|
||||
Honig;aus Olewig;;0,20;;;;Tee;zusatz
|
||||
Schuss Schnaps;(z.B. Amaretto, Kahlua, Rum oder Veterano);;2,20;;;;Tee;zusatz
|
||||
Milchschaum;(z.B. Black Chai Latte);;0,90;;;;Tee;zusatz
|
||||
Teepreis;;;2,00;2,50;klein;groß;Teepreis;
|
||||
Ingwer;;GlassMugHot;2,50;;;;Frischer Tee;
|
||||
Friche Limette;;GlassMugHot;2,50;;;;Frischer Tee;
|
||||
Heiße Zitrone;;GlassMugHot;2,50;;;;Frischer Tee;
|
||||
Kakao;Bio Cocoba, mit Kuh- oder Hafermlich;;2,10;3,80;klein;groß;Kakao;
|
||||
Ananas;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Banane;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Kirsche;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Maracuja;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Pink Grapefruit;;;2,10;3,80;0,20l;0,40l;Granini;
|
||||
Apfel;(naturtrüb);;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Apfel-Mango;;;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Orange;;;2,10;3,80;0,20l;0,40l;Saft Conrad;
|
||||
Saftpreis;;;2,10;3,80;0,20l;0,40l;Saftpreis;
|
||||
Blutorange;;;3,30;;0,33l;;Biozisch;
|
||||
Ingwer;;;3,30;;0,33l;;Biozisch;
|
||||
Himber-Cassis;;;3,30;;0,33l;;Biozisch;
|
||||
Mate;;;3,30;;0,33l;;Biozisch;
|
||||
Rhababer;;;3,30;;0,33l;;Biozisch;
|
||||
BiozischPreis;;;3,30;;0,33l;;BiozischPreis;
|
||||
Bitter Lemon;;;3,30;;0,33l;;Schweppes;
|
||||
Tonic;;;2,40;4,00;0,20l;0,40l;Schweppes;
|
||||
SchweppesPreis;;;2,40;4,00;0,20l;0,40l;SchweppesPreis;
|
||||
Orange;;;2,10;3,80;0,20l;0,40l;Bluna;
|
||||
Zitrone;;;2,10;3,80;0,20l;0,40l;Bluna;
|
||||
BlunaPreis;;;2,10;3,80;0,20l;0,40l;BlunaPreis;
|
||||
Cola;;;2,10;3,80;0,20l;0,40l;Afri;
|
||||
Cola Light;;;2,10;3,80;0,20l;0,40l;Afri;
|
||||
AfriPreis;;;2,10;3,80;0,20l;0,40l;AfriPreis;
|
||||
Sprudel;;;1,50;2,50;0,20l;0,40l;Sprudel;
|
||||
Schorle;;;2,10;3,80;0,20l;0,40l;Schorle;
|
||||
Bitburger Pils;Frisch gezapft. Klassisches hopfenbetontes Pils;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Bier der Saison;Frisch gezapft. Lagerbier. Mild und erfrischend;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Hacker-Pschorr Weizen;Frisch gezapft. Naturtrüb, würzig und erfrischend;;2,80;4,50;0,30l;0,50l;Bier;
|
||||
Rhenania Alt;Frisch gezapft. feinherb mit dezenter Malznote;;2,10;3,80;0,20l;0,40l;Bier;
|
||||
Lammsbräu Zzzisch;Aus der Flasche. Bio, Pils. Harmonisch Feinherb;;3,30;;0,33l;;Bier;
|
||||
Wulle Vollbier Hell;Aus der Flasche. Schnörkellos, ehrlich, mild;;3,30;;0,33l;;Bier;
|
||||
Lammsbräu Alkoholfrei;Aus der Flasche. Bio. Ausgewogenes Malzaroma mit feinherber Hopfennote;;3,30;;0,33l;;Bier;
|
||||
Benedektiner Weizen Alkoholfrei;Aus der Flasche. Spritzig erfrischend;;4,50;;0,50l;;Bier;
|
||||
Lammsbräu Aktivmalz;Aus der Flasche, Alkoholfrei. Kräftig, aromatisch, süß;;3,30;;0,33l;;Bier;
|
||||
Riesling, halbtrocken;Weingut Becker, Pölich, Mosel;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Riesling, trocken;Weingut Becker, Pölich, Mosel;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Vinja del Oja Tinto, Rot;Tempranillo, Rioja, Spanien. Trocken;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Infinitus, Rot;Merlot, Spanien. Trocken;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Rosé des Demoiselles;Cellier des Demoiselles, Languedoc, Frankreich. Trocken;;2,10;3,80;0,10l;0,20l;Wein;
|
||||
Bernard-Massard Riesling Sekt;Klassische Flaschengärung, Trier. Trocken;;3,00;14,00;0,10l;Flasche, 0,75l;Wein;
|
||||
Piccolo;Sekt, Herrenklasse. Trocken.;;5,50;;Flasche, 0,20l;;Wein;
|
||||
Met;Honigwein, hausgemacht;;2,40;4,00;0,10l;0,20l;Wein;
|
||||
Viez;Viezhandel A. Scherf, Waldrach;;2,40;;0,40l;;Viez;
|
||||
Kräuterstern;bitter;;2,50;;2cl;;Kräuterapotheke;
|
||||
Santasapina;Maispitzen;;2,50;;2cl;;Kräuterapotheke;
|
||||
Schwedenbitter;;;2,50;;2cl;;Kräuterapotheke;
|
||||
Amaretto-Kirsch o. Apfel;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Batida-Kirsch;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Campari-Orange;;;5,50;;4cl;;LongdrinkAp;
|
||||
Gin Ginger;Finsbury;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Gute-Laune-Cola;Rum, Cola & Zitrone;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Jacky-Cola;;;5,30;8,00;2cl;4cl;Longdrinks;
|
||||
Jameson Ginger Lime;;;5,30;8,00;2cl;4cl;Longdrinks;
|
||||
Moscow Mule;Vodka, Limette, Ginger-Ale;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Munich Mule;Gin, Limette, Ginger-Ale;;4,50;6,90;2cl;4cl;Longdrinks;
|
||||
Ouzokeule;Ouzo, Orangensaf;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Rum-Cola;Pott-Rum & Cola;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Skinny Bitch;Vodka, Sprudel & Zitrone;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Southern-Comfort-Sprite;;;4,80;7,00;2cl;4cl;Longdrinks;
|
||||
Vodka-Mate;;;4,30;6,50;2cl;4cl;Longdrinks;
|
||||
Aperol-Spritz;Aperol, Sekt, Sprudel;;5,00;;;;LongdrinkAp;
|
||||
Kir Royal;Sekt, Creme de Cassis;;5,00;;;;LongdrinkAp;
|
||||
Finsbury Tonic;;;4,30;;6,50;;GinTonic;
|
||||
Needle Tonic;;;4,80;;7,50;;GinTonic;
|
||||
Tanqueray Tonic;;;5,30;;8,00;;GinTonic;
|
||||
Amaretto Sour;Amaretto, Orangen- & Zitronensaft;;6,50;;;;Cocktails;
|
||||
Batida Sunrise;Batida, Ananassaft & Kirschlikör;;7,50;;;;Cocktails;
|
||||
Caipirinha;Cachaca, Rohrzucker & Bio-Limetten;;7,50;;;;Cocktails;
|
||||
Cuba Libre;Rum, Cola & Bio-Limette;;7,50;;;;Cocktails;
|
||||
Espresso-Martini;Espresso, Vodka, Kahlua;;6,00;;;;Cocktails;
|
||||
Grüne Witwe;Curacao & Orangensaft;;5,50;;;;Cocktails;
|
||||
Iris‘ Feuchtes Pfläumchen;Säfte, Vodka;;6,00;;;;Cocktails;
|
||||
Pina Colada;Rum, Ananassaft & Kokossirup;;7,50;;;;Cocktails;
|
||||
Simplicissimus;Säfte, Cachaca, Vodka & Zuckersirup;;7,50;;;;Cocktails;
|
||||
Tequila Sunrise;Tequila, Orangensaft & Grenadine;;7,50;;;;Cocktails;
|
||||
White Russian;Kahlua, Vodka & Milch;;7,50;;;;Cocktails;
|
||||
Whisky Sour;Whisky, Zitronensaft, Zuckersirup;;7,50;;;;Cocktails;
|
||||
Drachenblut;Kirsch-, Maracuja-, Zitronensaft & Zuckersirup;;5,50;;;;CocktailsAlkoholfrei;
|
||||
Suppes;Ananas-, Bananen-, Maracuja-, Zitronensaft & Cocossirup;;5,50;;;;CocktailsAlkoholfrei;
|
||||
Chilli;;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Pfefferminz;;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Rumtopf;;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Don Promillo;Kakao, Honig, Chilli;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Zivo;Zitrone & Vodka;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Rose;Guarana;;2,50;;2cl;;Hausgemachtes;zocker
|
||||
Eulenmassaker;Zivo, Grenadine & Tabasco;;3,00;;4cl;;Hausgemachtes;
|
||||
Amaretto;;;2,50;;2cl;;Classics;
|
||||
Aquavit;;;2,50;;2cl;;Classics;
|
||||
Asbach;;;2,50;;2cl;;Classics;
|
||||
Baileys;;;2,50;;2cl;;Classics;
|
||||
Batida;;;2,50;;2cl;;Classics;
|
||||
Campari;;;3,50;;4cl;;Classics;
|
||||
Cointreau;;;2,50;;2cl;;Classics;
|
||||
Cynar;;;2,50;;2cl;;Classics;
|
||||
Friesengeist;;;2,50;;2cl;;Classics;
|
||||
Gin Finsbury;;;2,50;;2cl;;Classics;
|
||||
Gin Needle;;;3,00;;2cl;;Classics;
|
||||
Gin Tanqueray;;;3,50;;2cl;;Classics;
|
||||
Genever;;;1,90;;2cl;;Classics;
|
||||
Haifischblut;;;2,50;;2cl;;Classics;
|
||||
Kahlua;;;2,50;;2cl;;Classics;
|
||||
Korn;;;2,50;;2cl;;Classics;
|
||||
Martini;;;2,50;;5cl;;Classics;
|
||||
Alter Obstler;Willi, Marille u. Mirabelle;;2,50;;2cl;;Classics;
|
||||
Obstler;Willi u. Marille;;2,50;;2cl;;Classics;
|
||||
Ouzo;;;2,80;;2cl;;Classics;
|
||||
Pastis 51;;;2,80;;2cl;;Classics;
|
||||
Pernod;;;2,50;;2cl;;Classics;
|
||||
Remy Martin;;;3,50;;2cl;;Classics;
|
||||
Southern Comfort;;;3,00;;2cl;;Classics;
|
||||
Vodka Wyborowa;;;2,50;;2cl;;Classics;
|
||||
Vodka Moskovskaya;;;2,50;;2cl;;Classics;
|
||||
Veterano;;;2,50;;2cl;;Classics;
|
||||
Glenlivet;;;3,80;;2cl;;Whisky;
|
||||
Glenmorangie;;;3,80;;2cl;;Whisky;
|
||||
Oban;;;4,00;;2cl;;Whisky;
|
||||
Talisker;;;4,00;;2cl;;Whisky;
|
||||
Jim Beam;;;3,50;;2cl;;Whisky;
|
||||
Jack Daniels;;;3,50;;2cl;;Whisky;
|
||||
Old Pascas White;;;2,50;;2cl;;Rum;
|
||||
Pott 54%;;;2,50;;2cl;;Rum;
|
||||
Old Pascas 72%;;;3,50;;2cl;;Rum;
|
||||
Cachaca;;;2,50;;2cl;;Rum;
|
||||
Botucal;;;4,00;;2cl;;Rum;
|
||||
Mexikaner;Hausgemacht;;1,50;;2cl;;Beliebt;zocker
|
||||
Saarländer;Mexi mit einem Schuss Maggi;;1,50;;2cl;;Beliebt;zocker
|
||||
Hemmerling;wie ein Solero im Freibad (Hausgemacht);;3,50;;2cl;;Beliebt;
|
||||
Maracujalimes;;;1,50;;2cl;;Beliebt;zocker
|
||||
Erdbeerlimes;;;1,50;;2cl;;Beliebt;zocker
|
||||
Frangelico;süße Haselnuss;;1,90;;2cl;;Beliebt;
|
||||
Sambuca;;;2,50;;2cl;;Beliebt;
|
||||
Luft;;;1,50;;2cl;;Beliebt;zocker
|
||||
Ramazzotti;;;2,50;;2cl;;Kräuter;
|
||||
Tequila;Silber oder Gold;;2,50;;2cl;;Beliebt;
|
||||
Fernet Menta;;;2,50;;2cl;;Kräuter;
|
||||
Fernet Branca;;;2,50;;2cl;;Kräuter;
|
||||
Escorial;;;2,50;;2cl;;Kräuter;
|
||||
Jägermeister;;;2,50;;2cl;;Kräuter;
|
||||
Zockerpreis;;;1,50;;;;;
|
||||
BIN
fonts/FoglihtenDeH02.otf
Normal file
BIN
img/33_36_469-upscaled-cropped-sm.png
Normal file
|
After Width: | Height: | Size: 973 KiB |
|
Before Width: | Height: | Size: 2.3 MiB |
@@ -1,45 +0,0 @@
|
||||
IMPORTANT NOTICE: This license only applies if you downloaded this content as
|
||||
an unsubscribed user. If you are a premium user (ie, you pay a subscription)
|
||||
you are bound to the license terms described in the accompanying file
|
||||
"License premium.txt".
|
||||
|
||||
---------------------
|
||||
|
||||
You must attribute the image to its author:
|
||||
|
||||
In order to use a content or a part of it, you must attribute it to rawpixel.com / Freepik,
|
||||
so we will be able to continue creating new graphic resources every day.
|
||||
|
||||
|
||||
How to attribute it?
|
||||
|
||||
For websites:
|
||||
|
||||
Please, copy this code on your website to accredit the author:
|
||||
<a href="http://www.freepik.com">Designed by rawpixel.com / Freepik</a>
|
||||
|
||||
For printing:
|
||||
|
||||
Paste this text on the final work so the authorship is known.
|
||||
- For example, in the acknowledgements chapter of a book:
|
||||
"Designed by rawpixel.com / Freepik"
|
||||
|
||||
|
||||
You are free to use this image:
|
||||
|
||||
- For both personal and commercial projects and to modify it.
|
||||
- In a website or presentation template or application or as part of your design.
|
||||
|
||||
You are not allowed to:
|
||||
|
||||
- Sub-license, resell or rent it.
|
||||
- Include it in any online or offline archive or database.
|
||||
|
||||
The full terms of the license are described in section 7 of the Freepik
|
||||
terms of use, available online in the following link:
|
||||
|
||||
http://www.freepik.com/terms_of_use
|
||||
|
||||
The terms described in the above link have precedence over the terms described
|
||||
in the present document. In case of disagreement, the Freepik Terms of Use
|
||||
will prevail.
|
||||
@@ -1,30 +0,0 @@
|
||||
IMPORTANT NOTICE: This license only applies if you downloaded this content as
|
||||
a subscribed (or "premium") user. If you are an unsubscribed user (or "free"
|
||||
user) you are bound to the license terms described in the accompanying file
|
||||
"License free.txt".
|
||||
|
||||
---------------------
|
||||
|
||||
You can download from your profile in Freepik a personalized license stating
|
||||
your right to use this content as a "premium" user:
|
||||
|
||||
https://profile.freepik.com/my_downloads
|
||||
|
||||
You are free to use this image:
|
||||
|
||||
- For both personal and commercial projects and to modify it.
|
||||
- In a website or presentation template or application or as part of your design.
|
||||
|
||||
You are not allowed to:
|
||||
|
||||
- Sub-license, resell or rent it.
|
||||
- Include it in any online or offline archive or database.
|
||||
|
||||
The full terms of the license are described in sections 7 and 8 of the Freepik
|
||||
terms of use, available online in the following link:
|
||||
|
||||
http://www.freepik.com/terms_of_use
|
||||
|
||||
The terms described in the above link have precedence over the terms described
|
||||
in the present document. In case of disagreement, the Freepik Terms of Use
|
||||
will prevail.
|
||||
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
BIN
img/adver_10_14_163-upscaled2-alpha.png
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.3 MiB |
BIN
img/bg-border-l.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
img/bg-border-l.xcf
Normal file
BIN
img/bg-border-r.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 110 KiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 100 KiB |
1264
img/bg-border2.svg
|
Before Width: | Height: | Size: 341 KiB |
|
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 240 KiB |
BIN
img/cover_05_15_117-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 3.7 MiB |
BIN
img/cover_05_36_285-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 4.0 MiB |
BIN
img/cover_09_48_471-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 2.5 MiB |
BIN
img/cover_09_53_521-upscale-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 3.5 MiB |
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
BIN
img/cover_24_03_033-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 4.8 MiB |
|
Before Width: | Height: | Size: 513 KiB After Width: | Height: | Size: 513 KiB |
BIN
img/cover_37_05_049-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 6.4 MiB |
BIN
img/cover_37_19_217-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 7.5 MiB |
BIN
img/cover_37_35_409-upscaled-alpha.resized.png
Normal file
|
After Width: | Height: | Size: 6.6 MiB |
|
Before Width: | Height: | Size: 303 KiB |
|
Before Width: | Height: | Size: 251 KiB |
|
Before Width: | Height: | Size: 194 KiB |
|
Before Width: | Height: | Size: 407 KiB |
|
Before Width: | Height: | Size: 327 KiB |
|
Before Width: | Height: | Size: 267 KiB |
|
Before Width: | Height: | Size: 224 KiB |
|
Before Width: | Height: | Size: 216 KiB |
|
Before Width: | Height: | Size: 245 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 8.7 MiB |
|
Before Width: | Height: | Size: 3.3 MiB |
|
Before Width: | Height: | Size: 465 KiB |
|
Before Width: | Height: | Size: 498 KiB |
|
Before Width: | Height: | Size: 289 KiB |
|
Before Width: | Height: | Size: 542 KiB |
|
Before Width: | Height: | Size: 669 B |
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M2 2c4.056 3.007 9.232 9.337 10 20 .897-6.818 1.5-9.5 4-14"></path>
|
||||
<path d="M20.375 6.533A9.953 9.953 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2c2.003 0 3.869.589 5.433 1.603"></path>
|
||||
<path d="M17.104 4c-1.002 1.274-1.146 2.586-1.1 4 1.9-.1 3.003-.201 4.3-1.4 1.406-1.3 1.6-2.3 1.7-4.6-2.7.1-3.623.375-4.9 2Z"></path>
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 449 B |
@@ -1,8 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M8 22h8"></path>
|
||||
<path d="M7 10h3m7 0h-1.343"></path>
|
||||
<path d="M12 15v7"></path>
|
||||
<path d="M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"></path>
|
||||
<line x1="2" y1="2" x2="22" y2="22"></line>
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 489 B |
|
Before Width: | Height: | Size: 356 B |
@@ -1,7 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M8 22h8"></path>
|
||||
<path d="M7 10h10"></path>
|
||||
<path d="M12 15v7"></path>
|
||||
<path d="M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"></path>
|
||||
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 361 B |
|
Before Width: | Height: | Size: 20 MiB |
|
Before Width: | Height: | Size: 20 MiB |
|
Before Width: | Height: | Size: 740 KiB |
|
Before Width: | Height: | Size: 5.0 MiB |
|
Before Width: | Height: | Size: 583 KiB |
|
Before Width: | Height: | Size: 12 MiB |
|
Before Width: | Height: | Size: 583 KiB |
|
Before Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 421 KiB |
|
Before Width: | Height: | Size: 484 KiB |
|
Before Width: | Height: | Size: 463 KiB |
|
Before Width: | Height: | Size: 4.8 MiB |
|
Before Width: | Height: | Size: 592 KiB |
|
Before Width: | Height: | Size: 4.0 MiB |
|
Before Width: | Height: | Size: 618 KiB |
|
Before Width: | Height: | Size: 4.4 MiB |
|
Before Width: | Height: | Size: 579 KiB |
|
Before Width: | Height: | Size: 9.9 MiB |
|
Before Width: | Height: | Size: 5.3 MiB |
|
Before Width: | Height: | Size: 636 KiB |
|
Before Width: | Height: | Size: 9.3 MiB |
|
Before Width: | Height: | Size: 595 KiB |
|
Before Width: | Height: | Size: 595 KiB |
|
Before Width: | Height: | Size: 4.4 MiB |
|
Before Width: | Height: | Size: 562 KiB |
|
Before Width: | Height: | Size: 5.7 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 556 KiB |
|
Before Width: | Height: | Size: 397 KiB |
BIN
img/illus_09_36_358-upscale-alpha-crop-sm.png
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
img/illus_09_55_008-upscale-alpha-crop-sm.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 3.2 MiB |
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |