diff --git a/.gitattributes b/.gitattributes
index af926ef..ce9432f 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,2 +1,5 @@
 * annex.backend=MD5E
 **/.git* annex.largefiles=nothing
+README.md annex.largefiles=nothing
+*.tex annex.largefiles=nothing
+*.sty annex.largefiles=nothing
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6a31b06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+*.aux
+*.bbl
+*.fls
+*.log
+*.nav
+*.toc
+*.out
+*.fdb_latexmk
+*.run.xml
+*.snm
+*.bib
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9d9881d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# Template for presentations
+
+This is a repo for templates in the WWU style.
+Maybe some updates are in order after the renaming of the university.
+
diff --git a/TODO.md b/TODO.md
new file mode 120000
index 0000000..615c745
--- /dev/null
+++ b/TODO.md
@@ -0,0 +1 @@
+.git/annex/objects/7P/V0/MD5E-s57--8d93925368c10edc17e95ebfd9b877d8.md/MD5E-s57--8d93925368c10edc17e95ebfd9b877d8.md
\ No newline at end of file
diff --git a/alpha.sty b/alpha.sty
new file mode 100755
index 0000000..60372f9
--- /dev/null
+++ b/alpha.sty
@@ -0,0 +1,488 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                                                                  %
+%  This is alpha.sty, to be used with \documentclass{article}      %
+%  of Latex2e. It is to be included with the command               %
+%                                                                  %
+%         \usepackage[<OPTIONS>]{alpha}                            %
+%                                                                  %
+%  It modifies the size of the section, subsection and appendix    %
+%  titles and of figure and table captions. We include some        %
+%  packages such as cite, graphicx, booktabs and hyperref.         %
+%                                                                  %
+%  [ To avoid clashes with hyperref, some packages need to be  ]   %
+%  [ loaded after the present one in the main tex file, others ]   %
+%  [ before.                                                   ]   %
+%                                                                  %
+%  OPTIONS = 'draft' will produce labels for references            %
+%          = 'nohyper' does not load hyperref package              %
+%                                                                  %
+%  DEFAULTS = 'JHEP.bst' as bibtex style file if available,        %
+%             standard public Latex 'ieeetr.bst' otherwise         %
+%  _________________                                               %
+%  PROVIDED COMMANDS                                               %
+%                                                                  %
+%   * \usebiblio{} to include *.bib files (w/o this command no     %
+%                  reference section is included automatically)    %
+%   * \maketitle   produces common ALPHA collab. title page using  %
+%                                                                  %
+%      + \title{}                                                  %
+%      + \preprintno{}                                             %
+%      + \collaboration{}                                          %
+%      + \author[affil1,affil2]{Author1} ...                       %
+%      + \address[affil1]{Affiliation1}  ...                       %
+%      + \begin{abstract} ... \end{abstract}                       %
+%      + \begin{keyword}  ... \PACS{...} \end{keyword}             %
+%                                                                  %
+%   * \begin{acknowledgement} ... \end{acknowledgement} produces   %
+%     an acknowledgements section at current position              %
+%                                                                  %
+%   * \usechangever[vX.Y]{<text>}  if in draft mode outputs <text> %
+%                                  on new pages at end of docum.   %
+%                                                                  %
+% --------------------------------- ALPHA collaboration, 2016 ---- %
+%  v0.5, 27 Sep 2017, PF changed appearance of abstract            %
+%  v0.4, 23 May 2016, PF, sidecap breaks caption style -> replaced %
+%                     by caption package                           %
+%  v0.3, 18 Jan 2014, PF added \usechangever[]{} for draft mode    %
+%  v0.2, 18 Nov 2013, PF                                           %
+%  v0.1, 11 Nov 2013, PF                                           %
+%                                                                  %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\NeedsTeXFormat{LaTeX2e}[1994/06/01]
+\ProvidesPackage{alpha}
+  [2016/05/23 v0.4 paper style file of ALPHA collaboration]
+%---------------------------------------------------
+% package option handling 
+%
+\newif\iflabelshow\labelshowfalse
+\DeclareOption{draft}{%
+  \typeout{[draft] mode set in alpha.sty}%
+  \newif\iflabelshow\labelshowtrue
+}
+\newif\ifXbibkeys\Xbibkeysfalse
+\DeclareOption{bibkeys}{%
+  \typeout{[bibkeys] mode set in alpha.sty}%
+  \newif\iflabelshow\labelshowfalse
+  \newif\ifXbibkeys\Xbibkeystrue
+}
+\newif\ifnohyper\nohyperfalse
+\DeclareOption{nohyper}{%
+  \typeout{[nohyper] mode set in alpha.sty}%
+  \newif\ifnohyperhow\nohypertrue
+}
+\ProcessOptions\relax
+%---------------------------------------------------
+% page layout
+%
+\RequirePackage[a4paper,top=3.35cm,bottom=3.35cm,left=3cm,right=3cm,nohead]{geometry}
+\RequirePackage[T1]{fontenc} 
+\renewcommand{\baselinestretch}{1.05}
+\parindent=2em
+
+%---------------------------------------------------
+% minimal package list (to be loaded before hyperref)
+%
+\RequirePackage{cite}
+\RequirePackage{amsmath,amsfonts,amssymb,amsbsy}
+\RequirePackage{mathrsfs,latexsym}
+\RequirePackage[rgb]{xcolor}
+\RequirePackage{graphicx}
+\RequirePackage{booktabs}
+\RequirePackage{caption}
+
+%---------------------------------------------------
+% define colors for hyperref
+%
+\definecolor{darkred}{rgb}{0.4,0.0,0.0}
+\definecolor{darkgreen}{rgb}{0.0,0.4,0.0}
+\definecolor{darkblue}{rgb}{0.0,0.0,0.4}
+
+%---------------------------------------------------
+% hyperref
+\ifnohyper
+\else
+\usepackage[bookmarks,linktocpage,colorlinks,
+    linkcolor = darkred,
+    urlcolor  = darkblue,
+    citecolor = darkgreen
+    ]{hyperref}
+\fi
+%---------------------------------------------------
+% packages to be loaded after hyperref call
+%
+\iflabelshow
+  \usepackage{showlabels}%
+  \renewcommand{\showlabelfont}{\scriptsize\ttfamily}%
+\fi
+\ifXbibkeys
+  \usepackage[notref]{showkeys}%
+  \renewcommand{\showkeyslabelformat}[1]{{\normalfont\scriptsize\ttfamily\{#1\}}}%
+\fi
+
+%---------------------------------------------------
+% modify figure and table captions
+\usepackage[font={small},
+            format=plain,
+            labelfont={bf,footnotesize},
+            textfont={rm},
+]{caption}
+%\captionsetup[SC-figure]{margin=10pt}
+
+%---------------------------------------------------
+% modification of section, subsection etc.
+\renewcommand{\section}{\setcounter{equation}{0}
+                                  \@startsection {section}{1}{\z@}%
+                                   {-3.5ex \@plus -1ex \@minus -.2ex}%
+                                   {2.3ex \@plus.2ex}%
+                                   {\reset@font\large\bfseries}}
+\renewcommand{\subsection}{\@startsection{subsection}{2}{\z@}%
+                                     {-3.25ex\@plus -1ex \@minus -.2ex}%
+                                     {1.5ex \@plus .2ex}%
+                                     {\reset@font\normalsize\bfseries}}
+\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{\z@}%
+                                     {-3.25ex\@plus -1ex \@minus -.2ex}%
+                                     {1.5ex \@plus .2ex}%
+                                     {\reset@font\normalsize\itshape}}
+\renewcommand{\paragraph}{\@startsection{paragraph}{4}{\z@}%
+                                    {3.25ex \@plus1ex \@minus.2ex}%
+                                    {-1em}%
+                                    {\reset@font\normalsize\bfseries}}
+\renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{\parindent}%
+                                       {3.25ex \@plus1ex \@minus .2ex}%
+                                       {-1em}%
+                                      {\reset@font\normalsize\bfseries}}
+
+%---------------------------------------------------
+% modify equation labelling
+
+\renewcommand{\theequation}{\thesection.\arabic{equation}}
+   
+  \newcommand{\TABLE}[1]{\begin{table}
+    \small
+    \begin{center} {#1} \end{center}
+    \end{table}}
+  \newcommand{\FIGURE}[1]{\begin{figure}[tb]
+    \begin{center} {#1} \end{center}
+    \end{figure}}
+  \newcommand{\FIGUREB}[1]{\begin{figure}[b]
+    \begin{center} {#1} \end{center}
+    \end{figure}}
+  \newcommand{\FIGURET}[1]{\begin{figure}[t!]
+    \begin{center} {#1} \end{center}
+    \end{figure}}
+  \newcommand{\FIGUREP}[1]{\begin{figure}[p!]
+    \begin{center} {#1} \end{center}
+    \end{figure}}
+  \newcommand{\TABLEP}[1]{\begin{table}[p!]
+    \footnotesize
+    \begin{center} {#1} \end{center}
+    \end{table}}
+  \newcommand{\TABLET}[1]{\begin{table}[t!]
+    \footnotesize
+    \begin{center} {#1} \end{center}
+    \end{table}}
+  \newcommand{\TABLEH}[1]{\begin{table}[h!]
+    \footnotesize
+    \begin{center} {#1} \end{center}
+    \end{table}}
+
+%---------------------------------------------------
+% special command(s)
+%
+
+\newcommand{\usebiblio}[1]{\def\@usebiblio{#1}}
+\usebiblio{}
+\newcommand{\preprintno}[1]{\def\@preprintno{#1}}
+\preprintno{}
+\newcommand{\collaboration}[1]{\def\@collaboration{#1}}
+\collaboration{}
+\newcommand{\usechangever}[2][vX.Y]{%
+\def\@usechangever{%
+\begin{flushright}
+  \begin{tabular}{rl}
+     \bf current version: & #1         \\  %     \bf started:         & Month Year \\
+     \bf compile date:    & \today     \\
+  \end{tabular}
+\end{flushright}
+\hrule
+#2}
+}
+\usechangever{}
+
+
+%---------------------------------------------------
+% new environment(s)
+%
+
+\newenvironment{acknowledgement}{%
+\vskip2em
+\noindent{\normalsize\bf Acknowledgements.}~\small
+}{%
+\par}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% The following section uses and modifies some of the definition from    %%
+%% `elsarticle.cls', to have a proper author-affiliation environment.     %%
+%%                                                                        %%
+%%  It was part of the 'Elsarticle Bundle' with the following License :   %%
+%% ----                                                                   %%
+%% It may be distributed under the conditions of the LaTeX Project Public %%
+%% License, either version 1.2 of this license or (at your option) any    %%
+%% later version.  The latest version of this license is in               %%
+%%    http://www.latex-project.org/lppl.txt                               %%
+%% and version 1.2 or later is part of all distributions of LaTeX         %%
+%% version 1999/12/01 or later.                                           %%
+%% ----                                                                   %%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
+
+\def\elsLabel#1{\@bsphack\protected@write\@auxout{}%
+         {\string\Newlabel{#1}{\@currentlabel}}\@esphack}
+\def\Newlabel#1#2{\expandafter\xdef\csname X@#1\endcsname{#2}}
+
+\def\elsRef#1{\@ifundefined{X@#1}{0}{\csname X@#1\endcsname}%
+}
+
+\newcounter{fnote}
+\def\fnmark[#1]{\let\comma\@empty
+    \def\@fnmark{\@for\@@fnmark:=#1\do{%
+    \edef\fnotenum{\@ifundefined{X@\@@fnmark}{1}{\elsRef{\@@fnmark}}}%
+  \unskip\comma\fnotenum\let\comma,}}%
+}
+
+\let\@fnotes\@empty\let\@fnmark\@empty
+\def\fntext[#1]#2{\g@addto@macro\@fnotes{%
+     \refstepcounter{fnote}\elsLabel{#1}%
+   \def\thefootnote{\thefnote}%
+   \global\setcounter{footnote}{\thefnote}%
+   \footnotetext{#2}}}
+
+\def\cormark[#1]{\edef\cnotenum{\elsRef{#1}}%
+    \unskip\textsuperscript{\sep\ifcase\cnotenum\or
+       $\ast$\or$\ast\ast$\fi\hspace{-1pt}}\let\sep=,}
+
+\let\@cormark\@empty
+\let\@cornotes\@empty
+\newcounter{cnote}
+\def\cortext[#1]#2{\g@addto@macro\@cornotes{%
+    \refstepcounter{cnote}\elsLabel{#1}%
+    \def\thefootnote{\ifcase\thecnote\or$\ast$\or
+    $\ast\ast$\fi}%
+    \footnotetext{#2}}}
+
+\let\@corref\@empty
+\def\corref#1{\edef\cnotenum{\elsRef{#1}}%
+    \edef\@corref{\ifcase\cnotenum\or
+         $\ast$\or$\ast\ast$\fi\hskip-1pt}}
+
+\def\fnref#1{\fnmark[#1]}
+\def\tnoteref#1{\tnotemark[#1]}
+
+\def\resetTitleCounters{\c@cnote=0
+   \c@fnote=0 \c@tnote=0 \c@footnote=0}
+
+
+\let\eadsep\@empty
+\let\@elseads\@empty
+\let\@elsuads\@empty
+\let\@cormark\@empty
+\def\hashchar{\expandafter\@gobble\string\~}
+\def\underscorechar{\expandafter\@gobble\string\_}
+\def\lbracechar{\expandafter\@gobble\string\{}
+\def\rbracechar{\expandafter\@gobble\string\}}
+
+\def\ead{\@ifnextchar[{\@uad}{\@ead}}
+\gdef\@ead#1{\bgroup\def\_{\string\underscorechar\space}%
+  \def\{{\string\lbracechar\space}%
+   \def~{\hashchar\space}%
+   \def\}{\string\rbracechar\space}%
+   \edef\tmp{\the\@eadauthor}
+   \immediate\write\@auxout{\string\emailauthor
+     {#1}{\expandafter\strip@prefix\meaning\tmp}}%
+  \egroup
+}
+\newcounter{ead}
+\gdef\emailauthor#1#2{\stepcounter{ead}%
+     \g@addto@macro\@elseads{\raggedright%
+      \let\corref\@gobble
+      \eadsep\texttt{#1} (#2)\def\eadsep{\unskip,\space}}%
+}
+\gdef\@uad[#1]#2{\bgroup
+  \def~{\string\hashchar\space}%
+  \def\_{\string\underscorechar\space}%
+   \edef\tmp{\the\@eadauthor}
+   \immediate\write\@auxout{\string\urlauthor
+     {#2}{\expandafter\strip@prefix\meaning\tmp}}%
+  \egroup
+}
+\def\urlauthor#1#2{\g@addto@macro\@elsuads{\let\corref\@gobble%
+     \raggedright\eadsep\texttt{#1}\space(#2)%
+     \def\eadsep{\unskip,\space}}%
+}
+
+\def\elsauthors{}
+\def\pprinttitle{}
+\let\authorsep\@empty
+\let\sep\@empty
+\newcounter{author}
+\def\author{\@ifnextchar[{\@@author}{\@author}}
+
+\newtoks\@eadauthor
+\def\@@author[#1]#2{\g@addto@macro\elsauthors{%
+    \def\baselinestretch{1}%
+    \authorsep#2\unskip\textsuperscript{%#1%
+      \@for\@@affmark:=#1\do{%
+       \edef\affnum{\@ifundefined{X@\@@affmark}{1}{\elsRef{\@@affmark}}}%
+     \unskip\sep\affnum\let\sep=,}%
+      \ifx\@fnmark\@empty\else\unskip\sep\@fnmark\let\sep=,\fi
+      \ifx\@corref\@empty\else\unskip\sep\@corref\let\sep=,\fi
+      }%
+    \def\authorsep{\unskip,\space}%
+    \global\let\sep\@empty\global\let\@corref\@empty
+    \global\let\@fnmark\@empty}%
+    \@eadauthor={#2}
+}
+
+\def\@author#1{\g@addto@macro\elsauthors{\normalsize%
+    \def\baselinestretch{1}%
+    \upshape\authorsep#1\unskip\textsuperscript{%
+      \ifx\@fnmark\@empty\else\unskip\sep\@fnmark\let\sep=,\fi
+      \ifx\@corref\@empty\else\unskip\sep\@corref\let\sep=,\fi
+      }%
+    \def\authorsep{\unskip,\space}%
+    \global\let\@fnmark\@empty
+    \global\let\@corref\@empty
+    \global\let\sep\@empty}%
+    \@eadauthor={#1}
+}
+
+\def\elsaddress{}
+\def\addsep{\par\vskip6pt}
+\def\address{\@ifnextchar[{\@@address}{\@address}}
+
+\def\@alph#1{%
+  \ifcase#1\or a\or b\or c\or d\or e\or f\or g\or h\or i\or j\or k\or
+  l\or m\or n\or o\or p\or q\or r\or s\or t\or u\or v\or w\or x\or
+  y\or z%
+  \else\@ctrerr\fi}
+
+\newcounter{affn}
+\renewcommand\theaffn{\alph{affn}}
+
+\long\def\@@address[#1]#2{\g@addto@macro\elsaddress{%
+     \vskip0.3em
+     \def\baselinestretch{1}%
+     \refstepcounter{affn}
+     \xdef\@currentlabel{$\theaffn$}
+     \elsLabel{#1}%
+     \textsuperscript{$\theaffn$}{\,#2}\par}}
+
+\long\def\@address#1{\g@addto@macro\elsauthors{%
+    \def\baselinestretch{1}%
+    \addsep\vskip8pt
+    \footnotesize\itshape#1
+    \def\addsep{\par\vskip6pt}%
+    \def\authorsep{\par\vskip8pt}
+    }}
+
+\newbox\absbox
+\renewenvironment{abstract}{\global\setbox\absbox=\vbox\bgroup
+  \hsize=\textwidth\def\baselinestretch{1}%
+  \noindent\unskip\centerline{{\color{gray}\rule[0.3em]{0.4\textwidth}{0.4pt}\hfill}\textbf{Abstract}{\color{gray}\hfill\rule[0.3em]{0.4\textwidth}{0.4pt}}}
+ \par\medskip\noindent\unskip\ignorespaces}
+ {{\color{gray}\rule[0em]{\textwidth}{0.4pt}}\egroup}
+
+\newbox\keybox
+\def\keyword{%
+  \def\sep{\unskip, }%
+  \def\PACS{\par\leavevmode\hbox {\it PACS:\space}}%
+  \global\setbox\keybox=\vbox\bgroup\hsize=\textwidth
+  \small\normalfont\def\baselinestretch{1}
+  \parskip\z@
+  \noindent\textit{Keywords: }
+  \raggedright                         % Keywords are not justified.
+  \ignorespaces}
+\def\endkeyword{\par \egroup}
+
+
+%---------------------------------------------------
+% composing ALPHA title page
+%
+\long\def\pprintMaketitle{
+  {%\clearpage
+  \thispagestyle{empty}%
+  \ifx\@preprintno\@empty\relax
+    \hspace*{1cm}\vskip50pt
+  \else
+    %\vskip-35pt
+    \vspace*{-4em}
+    {\footnotesize
+    \begin{flushright}
+       %\vskip-35pt
+       \@preprintno
+       \vskip25pt
+    \end{flushright}
+    }
+  \fi
+  \begin{center}%
+   \enlargethispage{4ex}
+   \def\baselinestretch{1}%
+    \Large\bfseries\@title\par\vskip20pt\rm
+    \ifx\@collaboration\@empty\relax
+      \hspace*{1cm}\vskip5pt
+    \else
+      \vskip10pt
+      \vbox{\makeatletter\@collaboration\makeatother}
+      \vskip20pt
+    \fi
+    \normalsize\rm\elsauthors\par\vskip20pt
+    %\footnotesize\itshape\elsaddress\par\vskip36pt
+    \footnotesize\elsaddress\par\vskip36pt
+    \vfill
+    \ifvoid\absbox\else\unvbox\absbox\par\vskip20pt\fi
+    \vfill
+  \end{center}%
+  \ifvoid\keybox\else\unvbox\keybox\par\vskip0pt\fi
+  \gdef\thefootnote{\arabic{footnote} }%
+  \clearpage%
+  }%
+  }
+
+\def\maketitle{\pprintMaketitle\pagebreak}
+
+%---------------------------------------------------
+% last but not least
+%
+
+\AtBeginDocument{%
+}
+
+\AtEndDocument{%
+%
+% add bibliography
+%
+\ifx\@usebiblio\@empty\relax
+\else
+\small
+\IfFileExists{alpha.bst}{\bibliographystyle{alpha}}{%
+ \IfFileExists{JHEP.bst}{\bibliographystyle{JHEP}}{%
+                         \bibliographystyle{ieeetr}
+ }
+}
+\bibliography{\@usebiblio}
+\fi
+%
+% add version/changes description page
+%
+\ifx\@usechangever\@empty\relax
+\else
+  \iflabelshow
+  \clearpage
+  \footnotesize
+  \@usechangever
+  \fi
+\fi
+}
+
+\endinput
+
+
diff --git a/document.tex b/document.tex
new file mode 100644
index 0000000..409ad34
--- /dev/null
+++ b/document.tex
@@ -0,0 +1,14 @@
+\begin{frame}
+	\frametitle{How are sigma terms defined? - renormalisation}
+	\begin{align*}   
+	m_q^\mathrm{ren} = Z_\mathrm{m} \left[m_q \, + \, (r_\mathrm{m} - 1) \frac{\mathrm{Tr} M}{N_\mathrm{f}} \right] + \text{cut-off effects}, \quad \mathrm{Tr} M = \Sigma_q m_q
+	\end{align*}
+	{\small $Z_\mathrm{m}$ - renormalisation parameter of the non-singlet scalar density}
+	%The matrix elements must renormalise in the inverse manner to the masses so that
+	\begin{align*}
+	 \sigma_{qB}^{\mathrm{ren}} = \left(m_q + \frac{r_\mathrm{m}-1}{3} \mathrm{Tr} M \right) \left(g_{q,S}^B - \frac{r_\mathrm{m}-1}{3r_\mathrm{m}}\mathrm{Tr} g_{S}^B  \right) \quad	\text{for}\, N_\mathrm{f}= 3,\ \sigma_{\pi B}^\mathrm{ren} = \sigma_{uB}^\mathrm{ren} + \sigma_{dB}^\mathrm{ren}
+	\end{align*}
+The normalisation factor $r_\mathrm{m}$ (ALPHA, RQCD) is\\ the ratio of flavour non-singlet and singlet scalar density renormalisation parameters. \\
+$\rightarrow$ accounts for the \textbf{mixing of quark flavours under renormalisation} for Wilson fermions. 
+\end{frame}
+
diff --git a/einstellungen.tex b/einstellungen.tex
new file mode 100644
index 0000000..d6fcca6
--- /dev/null
+++ b/einstellungen.tex
@@ -0,0 +1,92 @@
+%%% Einstellungen zur richtigen Benutzung von wwustyle.sty
+\usefonttheme{professionalfonts}
+
+% Einstellungen der Schriftart (Meta Office Pro) für Text und Mathematik
+% math**=sym angeben, damit auch diese Befehle die Schriftart Meta verwenden
+
+
+% Spracheinstellung
+\usepackage{polyglossia}
+\setmainlanguage{english}
+
+% Offizielles WWU-LaTeX-Paket für Präsentation (leicht modifiziert)
+\usepackage[pantone315, english]{wwustyle-mod}
+%\usepackage[pantone3135]{wwustyleMy_nometa}
+% Typographische Verbesserungen (Verbot mancher Ligaturen)
+\usepackage{selnolig}
+% Typographische Verbesserungen (Mikrotypographie)
+\usepackage{microtype}
+
+% Daten/Zeiten formatieren
+\usepackage[useregional]{datetime2}
+% Formatierung von Telefonnummern
+\usepackage{phonenumbers}
+% „Schöne“ Brüche im Fließtext mit \sfrac
+\usepackage{xfrac}
+% Ermöglicht die Nutzung von „\SI{Zahl}{Einheit}“
+\usepackage{siunitx}
+% Automatisches Umwandeln von Anführungszeichen
+\usepackage{csquotes}
+
+% Farben ermöglichen
+\usepackage{xcolor}
+% Paket für Bilder-Einbindung (EPS, PNG, JPG, PDF)
+\usepackage{graphicx}
+% .tex-Dateien mit \includegraphics einbinden
+\usepackage{gincltex}
+% Bessere Verarbeitung von Dateinamen für \includegraphics etc.
+\usepackage{grffile}
+
+\usepackage{amsmath}
+\usepackage{amssymb}
+
+\usepackage{caption}
+
+\usepackage[citestyle=authoryear,backend=bibtex]{biblatex}
+
+
+
+% -- biblatex (Literaturverzeichnis)
+\IfFileExists{res/literatur.bib}{
+	%\bibliographystyle{plain}
+	\addbibresource{res/literatur.bib}
+}{}
+
+
+
+
+% latex
+\renewcommand{\arraystretch}{1.3}
+% graphicx
+% Standardmäßig „keepaspectratio“ verwenden
+% s. https://tex.stackexchange.com/a/91619/51235
+\setkeys{Gin}{keepaspectratio}
+% hyperref
+\hypersetup{unicode}
+% siunitx
+\sisetup{
+	locale=UK,
+	binary-units,
+	quotient-mode=fraction,
+	per-mode=fraction,
+	fraction-function=\sfrac,
+	detect-weight
+}
+% csquotes
+\MakeOuterQuote{"}
+
+%\institutelogo{\raisebox{-5.75mm}{\includegraphics[width=3.8cm]{fsphys-logo.pdf}}}
+%\institutelogosmall{\raisebox{-2.5mm}[0pt][0pt]{\includegraphics[width=2.6cm]{fsphys-logo.pdf}}}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Zusätzliche Einstellungen/Befehle
+\let\strong\textbf
+\newcommand{\email}[1]{\href{mailto:#1}{\texttt{#1}}}
+\newfontfamily\DejaSans{DejaVu Sans}
+
+
+\newcommand{\deldel}[2]{\frac{\partial {#1}}{\partial {#2}}}%Partielle Ableitung
+\newcommand{\Deldel}[2]{\frac{\partial^2 {#1}}{\partial {#2}^2}}%2te Partielle Ableitung
+
+
diff --git a/fonts/Meta-Bold.ttf b/fonts/Meta-Bold.ttf
new file mode 120000
index 0000000..8e3034c
--- /dev/null
+++ b/fonts/Meta-Bold.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/kw/QG/MD5E-s77004--d1ff1ad7ea91246c405f9fcf9c532270.ttf/MD5E-s77004--d1ff1ad7ea91246c405f9fcf9c532270.ttf
\ No newline at end of file
diff --git a/fonts/Meta-Italic.ttf b/fonts/Meta-Italic.ttf
new file mode 120000
index 0000000..646b2a4
--- /dev/null
+++ b/fonts/Meta-Italic.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/72/J2/MD5E-s90668--7f6ca7e606046387015b4a8acfb23dd6.ttf/MD5E-s90668--7f6ca7e606046387015b4a8acfb23dd6.ttf
\ No newline at end of file
diff --git a/fonts/Meta-Medium-Caps.ttf b/fonts/Meta-Medium-Caps.ttf
new file mode 120000
index 0000000..04af2fe
--- /dev/null
+++ b/fonts/Meta-Medium-Caps.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/gF/76/MD5E-s49928--523c04d79249165b63273dc295c14b51.ttf/MD5E-s49928--523c04d79249165b63273dc295c14b51.ttf
\ No newline at end of file
diff --git a/fonts/Meta-Normal-Caps.ttf b/fonts/Meta-Normal-Caps.ttf
new file mode 120000
index 0000000..ec749b7
--- /dev/null
+++ b/fonts/Meta-Normal-Caps.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/vP/gF/MD5E-s50200--c9d22c0f661ecc6047c207bcb58f80e9.ttf/MD5E-s50200--c9d22c0f661ecc6047c207bcb58f80e9.ttf
\ No newline at end of file
diff --git a/fonts/Meta-Regular.ttf b/fonts/Meta-Regular.ttf
new file mode 120000
index 0000000..32b98de
--- /dev/null
+++ b/fonts/Meta-Regular.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/KX/w2/MD5E-s78172--0b79c1148ab2e1a4a8813482a887dbcb.ttf/MD5E-s78172--0b79c1148ab2e1a4a8813482a887dbcb.ttf
\ No newline at end of file
diff --git a/fonts/MetaLF-Bold.ttf b/fonts/MetaLF-Bold.ttf
new file mode 120000
index 0000000..d1700c3
--- /dev/null
+++ b/fonts/MetaLF-Bold.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/KF/FP/MD5E-s77156--2f26e8e4820489cfdb5d9758a9f5a0e4.ttf/MD5E-s77156--2f26e8e4820489cfdb5d9758a9f5a0e4.ttf
\ No newline at end of file
diff --git a/fonts/MetaLF-Italic.ttf b/fonts/MetaLF-Italic.ttf
new file mode 120000
index 0000000..87750dc
--- /dev/null
+++ b/fonts/MetaLF-Italic.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/4v/wX/MD5E-s85932--faefa33f394b953ccf6e2c00d6d1d7c2.ttf/MD5E-s85932--faefa33f394b953ccf6e2c00d6d1d7c2.ttf
\ No newline at end of file
diff --git a/fonts/MetaLF-Regular.ttf b/fonts/MetaLF-Regular.ttf
new file mode 120000
index 0000000..bef7dab
--- /dev/null
+++ b/fonts/MetaLF-Regular.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/0J/PJ/MD5E-s77796--92d7c0451d75711fc7f299d887216209.ttf/MD5E-s77796--92d7c0451d75711fc7f299d887216209.ttf
\ No newline at end of file
diff --git a/fonts/MetaOffcPro-Bold.ttf b/fonts/MetaOffcPro-Bold.ttf
new file mode 120000
index 0000000..3649f9f
--- /dev/null
+++ b/fonts/MetaOffcPro-Bold.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/qq/52/MD5E-s187300--0ac87f481b190d345b1488b45356a4f9.ttf/MD5E-s187300--0ac87f481b190d345b1488b45356a4f9.ttf
\ No newline at end of file
diff --git a/fonts/MetaOffcPro-Norm.ttf b/fonts/MetaOffcPro-Norm.ttf
new file mode 120000
index 0000000..482060c
--- /dev/null
+++ b/fonts/MetaOffcPro-Norm.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/6P/qm/MD5E-s190404--8173df3b821d82ac118fb8ebf1b47071.ttf/MD5E-s190404--8173df3b821d82ac118fb8ebf1b47071.ttf
\ No newline at end of file
diff --git a/fonts/MetaOffcPro-NormIta.ttf b/fonts/MetaOffcPro-NormIta.ttf
new file mode 120000
index 0000000..180e095
--- /dev/null
+++ b/fonts/MetaOffcPro-NormIta.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/0z/7K/MD5E-s193060--e5b1d45d82020f3eaf6b713cbb51a4d1.ttf/MD5E-s193060--e5b1d45d82020f3eaf6b713cbb51a4d1.ttf
\ No newline at end of file
diff --git a/fonts/MetaScOffcPro-Bold.ttf b/fonts/MetaScOffcPro-Bold.ttf
new file mode 120000
index 0000000..6bb6b70
--- /dev/null
+++ b/fonts/MetaScOffcPro-Bold.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/9k/Jj/MD5E-s176916--7a6036a945680114c8d77bb20e42bdf0.ttf/MD5E-s176916--7a6036a945680114c8d77bb20e42bdf0.ttf
\ No newline at end of file
diff --git a/fonts/MetaScOffcPro-Norm.ttf b/fonts/MetaScOffcPro-Norm.ttf
new file mode 120000
index 0000000..f7dbea8
--- /dev/null
+++ b/fonts/MetaScOffcPro-Norm.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/F6/1W/MD5E-s180464--a3297a57198a2ef0e4df5cec2684e881.ttf/MD5E-s180464--a3297a57198a2ef0e4df5cec2684e881.ttf
\ No newline at end of file
diff --git a/fonts/MetaScOffcPro-NormIta.ttf b/fonts/MetaScOffcPro-NormIta.ttf
new file mode 120000
index 0000000..381c43d
--- /dev/null
+++ b/fonts/MetaScOffcPro-NormIta.ttf
@@ -0,0 +1 @@
+../.git/annex/objects/j1/0q/MD5E-s182948--f74a502810d33a191a86999e1f67252a.ttf/MD5E-s182948--f74a502810d33a191a86999e1f67252a.ttf
\ No newline at end of file
diff --git a/fonts/The files for the font “Meta” must be placed here b/fonts/The files for the font “Meta” must be placed here
new file mode 120000
index 0000000..b483e92
--- /dev/null
+++ b/fonts/The files for the font “Meta” must be placed here	
@@ -0,0 +1 @@
+../.git/annex/objects/2W/kW/MD5E-s0--d41d8cd98f00b204e9800998ecf8427e/MD5E-s0--d41d8cd98f00b204e9800998ecf8427e
\ No newline at end of file
diff --git a/justfile b/justfile
new file mode 120000
index 0000000..799f574
--- /dev/null
+++ b/justfile
@@ -0,0 +1 @@
+.git/annex/objects/ZZ/ZQ/MD5E-s312--c7c1fdc72cdf960f7ad7299d761074d1/MD5E-s312--c7c1fdc72cdf960f7ad7299d761074d1
\ No newline at end of file
diff --git a/macros.sty b/macros.sty
new file mode 100755
index 0000000..1e53824
--- /dev/null
+++ b/macros.sty
@@ -0,0 +1,1273 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                                        %
+% ALPHA's "macros.sty" (status: 07/2009) %
+%                                        %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Definitions and abbreviations
+
+% Roman letters in math formulae
+
+\def\rmd{{\rm d}}
+\def\rmD{{\rm D}}
+\def\rme{{\rm e}}
+\def\rmO{{\rm O}}
+\def\Or{{\rm O}}
+\def\rmR{{\rm R}}
+
+% Real and integer numbers
+
+\def\rz{\blackboardrrm}
+\def\gz{\blackboardzrm}
+\def\Im{{\rm Im}\,}
+\def\Re{{\rm Re}\,}
+
+
+\def\rmonetwo{{r_\mathrm{m}^{\lbrace \mathrm{u,nu}\rbrace}}}
+\def\rmonethreethree{{r_\mathrm{m}^{\lbrace \mathrm{u;}Z,T/3\rbrace}}}
+\def\rmtwothreethree{{r_\mathrm{m}^{\lbrace \mathrm{nu;}Z,T/3\rbrace}}}
+\def\rmonethreefour{{r_\mathrm{m}^{\lbrace \mathrm{u;}Z,T/4\rbrace}}}
+\def\rmtwothreefour{{r_\mathrm{m}^{\lbrace \mathrm{nu;}Z,T/4\rbrace}}}
+\def\rmonethree{{r_\mathrm{m}^{\lbrace \mathrm{u;}Z\rbrace}}}
+\def\rmtwothree{{r_\mathrm{m}^{\lbrace \mathrm{nu;}Z\rbrace}}}
+\def\zthree{{Z^{\lbrace T/3 \rbrace}}}
+\def\zfour{{Z^{\lbrace T/4 \rbrace}}}
+% Expectation values
+
+\newcommand{\MV}[1]{\langle#1\rangle}
+\newcommand{\mvl}[1]{\left\langle#1\right\rangle}
+\newcommand{\ket}[1]{|#1\rangle}
+\newcommand{\bra}[1]{\langle#1|}
+\newcommand{\braket}[2]{\langle#1|#2\rangle}
+\newcommand{\ketbra}[3]{\langle#1|#2|#3\rangle}
+
+% Special relations and symbols
+
+\def\defeq{\mathrel{\mathop=^{\rm def}}}
+\def\proof{\noindent{\sl Proof:}\kern0.6em}
+\def\endproof{\hskip0.6em plus0.1em minus0.1em
+\setbox0=\null\ht0=5.4pt\dp0=1pt\wd0=5.3pt
+\vbox{\hrule height0.8pt
+\hbox{\vrule width0.8pt\box0\vrule width0.8pt}
+\hrule height0.8pt}}
+% \def\frac#1#2{\hbox{$#1\over#2$}}
+\def\dual{\mathstrut^*\kern-0.1em}
+% \def\mod{\;\hbox{\rm mod}\;}
+\def\ring{\mathaccent"7017}
+\def\lvec#1{\setbox0=\hbox{$#1$}
+    \setbox1=\hbox{$\scriptstyle\leftarrow$}
+    #1\kern-\wd0\smash{
+    \raise\ht0\hbox{$\raise1pt\hbox{$\scriptstyle\leftarrow$}$}}
+    \kern-\wd1\kern\wd0}
+\def\rvec#1{\setbox0=\hbox{$#1$}
+    \setbox1=\hbox{$\scriptstyle\rightarrow$}
+    #1\kern-\wd0\smash{
+    \raise\ht0\hbox{$\raise1pt\hbox{$\scriptstyle\rightarrow$}$}}
+    \kern-\wd1\kern\wd0}
+
+% Lattice derivatives
+
+\def\nab#1{{\nabla_{#1}}}
+\def\nabstar#1{\nabla\kern-0.5pt\smash{\raise 4.5pt\hbox{$\ast$}}
+               \kern-4.5pt_{#1}}
+\def\drv#1{{\partial_{#1}}}
+\def\drvstar#1{\partial\kern-0.5pt\smash{\raise 4.5pt\hbox{$\ast$}}
+               \kern-5.0pt_{#1}}
+
+% Lattice momenta
+
+\def\momp#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{$\scriptscriptstyle +$}}}
+\def\momm#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{$\scriptscriptstyle -$}}}
+\def\mompm#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{$\scriptscriptstyle \pm$}}}
+\def\smomp#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise3pt\hbox{$\scriptscriptstyle +$}}}
+\def\smomm#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise3pt\hbox{$\scriptscriptstyle -$}}}
+\def\smompm#1#2{
+    \setbox0=\hbox{${#1}$}\setbox1=\hbox{${#1}_{#2}$}
+    {#1}_{#2}\kern-\wd1\kern\wd0
+    \smash{\raise3pt\hbox{$\scriptscriptstyle \pm$}}}
+
+% Units
+
+\def\MeV{{\rm MeV}}
+\def\GeV{{\rm GeV}}
+\def\TeV{{\rm TeV}}
+\def\fm{{\rm fm}}
+
+\def\fpi{F_{\pi}}
+
+% Constants
+
+\def\euler{\gamma_{\rm E}}
+\newcommand{\hlf}{{\textstyle{\frac{1}{2}}}}
+
+% Fields
+
+\def\psibar{\bar{\psi}}
+\def\psiclass{\psi_{\rm cl}}
+\def\psibarclass{\psibar_{\rm cl}}
+\def\psitilde{\widetilde{\psi}}
+\def\rhoprime{\rho\kern1pt'}
+\def\rhobar{\bar{\rho}}
+\def\rhobarprime{\rhobar\kern1pt'}
+\def\rhobartilde{\kern2pt\tilde{\kern-2pt\rhobar}}
+\def\rhobartildeprime{\kern2pt\tilde{\kern-2pt\rhobar}\kern1pt'}
+\def\etabar{\bar{\eta}}
+\def\chibar{\overline{\chi}}
+\def\phibar{\overline{\phi}}
+\def\zetabar{\overline{\zeta}}
+\def\zetaprime{\zeta\kern1pt'}
+\def\zetabarprime{\zetabar\kern1pt'}
+\def\zetar{\zeta_{\raise-1pt\hbox{\rm R}}}
+\def\zetabarr{\zetabar_{\raise-1pt\hbox{\rm R}}}
+\def\phieff{\phi_{\rm eff}}
+\def\phiimpr{\phi_{\kern0.5pt{\rm I}}}
+\def\phir{\phi_{{\rm R}}}
+\def\psibars{\psibar_s}
+\def\psid{\psi_d}
+\def\ar{A_{{\rm R}}}
+\def\vr{V_{{\rm R}}}
+\def\pr{P_{{\rm R}}}
+\def\sr{S_{{\rm R}}}
+\def\aimpr{A_{{\rm I}}}
+\def\pimpr{P_{{\rm I}}}
+\def\vimpr{V_{{\rm I}}}
+
+% Dirac matrices
+
+\def\dirac#1{\gamma_{#1}}
+\def\diracstar#1#2{
+    \setbox0=\hbox{$\gamma$}\setbox1=\hbox{$\gamma_{#1}$}
+    \gamma_{#1}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{$\scriptstyle#2$}}}
+
+% Improvement coefficients
+
+\def\csw{c_{\rm sw}}
+\def\ca{c_{\rm A}}
+\def\cv{c_{\rm V}}
+\def\cs{c_{\rm s}}
+\def\ct{c_{\rm t}}
+\def\cttil{\widetilde{c}_{\rm t}}
+
+\def\ba{b_{\rm A}}
+\def\bp{b_{\rm P}}
+\def\bm{b_{\rm m}}
+\def\bg{b_{\rm g}}
+
+% Correlation functions
+ 
+\def\fa{f_{\rm A}}
+\def\fp{f_{\rm P}}
+\def\fas{f_{\rm A S}}
+\def\ftps{\tilde f_{\rm P S}}
+\def\gA{g_{\rm A}}
+\def\gP{g_{\rm P}}
+\def\lT{l_{\rm T}}
+\def\lV{l_{\rm V}}
+\def\fx{f_{X}}
+\def\kx{k_{X}}
+\def\faimpr{f_{\rm A}^{\rm I}}
+\def\kvimpr{k_{\rm V}^{\rm I}}
+\def\fximpr{f_{\rm X}^{\rm I}}
+
+\def\etax{\eta_{X}}
+\def\etaa{\eta_{\rm A}}
+\def\etap{\eta_{\rm P}}
+
+% Gauge group, parameters
+
+\def\nf{N_{\rm f}}
+\def\Nf{N_{\rm f}}
+\def\NF{N_{\rm f}}
+
+\def\NVAL{N_{\rm val}}
+
+\def\SUtwo{{\rm SU(2)}}
+\def\SUthree{{\rm SU(3)}}
+\def\SUn{{\rm SU}(N)}
+\def\tr{\,\hbox{tr}\,}
+\def\Ad{{\rm Ad}\,}
+\def\CF{C_{\rm F}}
+\def\cf{C_{\rm F}}
+
+% Lagrangian
+
+\newcommand{\lag}[1]{{\mathcal{L}}_{\rm {#1}}}
+
+% Action
+
+\def\Sg{S_{\rm G}}
+\def\Sf{S_{\rm F}}
+\def\Seff{S_{\rm eff}}
+\def\Simpr{S_{\rm impr}}
+\def\Simprf{S_{\rm F\!,impr}}
+\def\Zf{{\cal Z}_{\rm F}}
+\def\op#1{{\mathcal O}_{\rm #1}}
+\def\opprime#1{\setbox0=\hbox{${\cal O}$}\setbox1=\hbox{${\cal O}_{\rm #1}$}
+    {\cal O}_{\rm #1}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{\kern1pt$\scriptstyle\prime$}}\kern1pt}
+\def\ophat#1{\widehat{\cal O}_{\rm #1}}
+\def\opbar#1{\overline{\mathcal O}_{\rm #1}}
+\def\ophatprime#1{\setbox0=\hbox{$\widehat{\cal O}$}
+    \setbox1=\hbox{$\widehat{\cal O}_{\rm #1}$}
+    \widehat{\cal O}_{\rm #1}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{\kern1pt$\scriptstyle\prime$}}\kern1pt}
+\def\opi#1#2{{\cal L}_{#1}^{(#2)}}
+\def\opa#1#2{{\mathcal A}_{#1}^{(#2)}}
+\def\bop#1{{\cal L}_{\rm #1}}
+\def\bopprime#1{\setbox0=\hbox{${\cal O}$}\setbox1=\hbox{${\cal O}_{\rm #1}$}
+    {\cal L}_{\rm #1}\kern-\wd1\kern\wd0
+    \smash{\raise4.5pt\hbox{\kern1pt$\scriptstyle\prime$}}\kern1pt}
+\def\blag#1{{\cal B}_{#1}}
+\def\blagprime#1{\setbox0=\hbox{${\cal B}$}\setbox1=\hbox{${\cal B}_{#1}$}
+    {\cal B}_{#1}\kern-\wd1\kern\wd0
+    \smash{\raise5.2pt\hbox{\kern1pt$\scriptstyle\prime$}}\kern1pt}
+
+% Renormalization schemes
+
+\def\alphaSF{\alpha_{\rm SF}}
+\def\alphaTP{\alpha_{\rm TP}}
+\def\alphaMSbar{\alpha_{\msbar}}
+\def\bMS{b^{\msbar}}
+\def\dMS{d^{\msbar}}
+\def\dSF{d^{\rm SF}}
+
+\def\gms{g_{\ms}}
+\def\gbar{\bar{g}}
+\def\gbsq{\bar{g}^2}
+\def\gosq{g_0^2} 
+\def\gbarMS{\gbar_{\ms}}
+\def\gbarMSbar{\gbar_{\msbar}}
+\def\gbarSF{\gbar_{\rm SF}}
+\def\gbsqSF{\overline{g}^2_{{\rm SF}}}
+\def\gbarTP{\gbar_{\rm TP}}
+\def\gr{g_{{{\rm R}}}}
+\def\glat{g_{\lat}}
+\def\gSF{g_{{{\rm SF}}}}
+\def\gparisi{g_{{{\rm P}}}}
+
+\def\mbare{m_0}
+\def\mq{m_{\rm q}}
+\def\mqtilde{\widetilde{m}_{\rm q}}
+\def\mr{m_{{{\rm R}}}}
+\def\mc{m_{\rm c}}
+\def\mlat{m_{\lat}}
+\def\mSF{m_{{\rm SF}}}
+\def\m{m}
+\def\mprime{m'}
+\def\dm{\Delta m}
+\def\r{r}
+\def\s{s}
+\def\rprime{r'}
+\def\sprime{s'}
+\def\M{M}
+\def\Mprime{M'}
+\def\dM{\Delta M}
+\def\mbar{\kern1pt\overline{\kern-1pt m\kern-1pt}\kern1pt}
+\def\avm{m_{\rm av}}
+
+\def\za{Z_{\rm A}}
+\def\zv{Z_{\rm V}}
+\def\zp{Z_{\rm P}}
+\def\zs{Z_{\rm S}}
+\def\zss{Z_{\rm S}^{0}}
+\def\zg{Z_{\rm g}}
+\def\zm{Z_{\rm m}}
+\def\zM{Z_{\rm M}}
+\def\zgm{Z_{\rm g,m}}
+\def\zphi{Z_{\phi}}
+\def\zmSF{Z_{\rm m}^{\hbox{\rm SF}}}
+\def\zmlat{Z_{\rm m}^{\rm lat}}
+\def\zzeta{Z_{\zeta}}
+\def\zzetah{Z_{\zeta_{\rm h}}}
+\def\sigmap{\sigma_{\rm P}}
+\def\rmsea{r_{\rm m}}
+
+\def\xg{X_{\rm g}}
+\def\xm{X_{\rm m}}
+
+\def\gtilde{\tilde{g}_0}
+\def\mtilde{\widetilde{m}_0}
+\def\hop{\kappa}
+\def\hopcr{\kappa_{\rm crit}}
+\def\hopval{\kappa^{\rm val}}
+\def\hopsea{\kappa^{\rm sea}}
+
+\def\ms{{\rm MS}}
+\def\msbar{{\rm \overline{MS\kern-0.05em}\kern0.05em}}
+\def\lat{{\rm lat}}
+
+% Blackbord bold types
+% [02/01/91 202131045  MEMBER NAME  MACROS   (TEXT13)   M  TEX]
+ 
+\def\blackboardrrm{\mathchoice
+{\rm I\kern-0.21 em{R}}{\rm I\kern-0.21 em{R}}
+{\rm I\kern-0.19 em{R}}{\rm I\kern-0.19 em{R}}}
+ 
+\def\blackboardzrm{\mathchoice
+{\rm Z\kern-0.32 em{Z}}{\rm Z\kern-0.32 em{Z}}
+{\rm Z\kern-0.28 em{Z}}{\rm Z\kern-0.28 em{Z}}}
+ 
+\def\blackboardh{\mathchoice
+{\rm I\kern-0.14 em{H}}{\rm I\kern-0.14 em{H}}
+{\rm I\kern-0.11 em{H}}{\rm I\kern-0.11 em{H}}}
+ 
+\def\blackboardp{\mathchoice
+{\rm I\kern-0.14 em{P}}{\rm I\kern-0.14 em{P}}
+{\rm I\kern-0.11 em{P}}{\rm I\kern-0.11 em{P}}}
+ 
+\def\blackboardt{\mathchoice
+{\rm T\kern-0.52 em{T}}{\rm T\kern-0.52 em{T}}
+{\rm T\kern-0.40 em{T}}{\rm T\kern-0.40 em{T}}}
+  
+\def\su{{\rm su}(N)}
+\def\SU{{\rm SU}(N)}
+\def\sutwo{{\rm su}(2)}
+\def\suthree{{\rm su}(3)}
+
+% Schroedinger functional, effective action, action
+ 
+\def\schrodinger{{\cal Z}}
+\def\effaction{\Gamma}
+\def\chernsimons{S_{\rm CS}}
+ 
+% Background field, quantum field
+ 
+\def\bvalue{C}
+\def\bfield{B}
+\def\bfieldtensor{G}
+\def\bfunc{b}
+\def\bfieldparm{\eta}
+\def\qfield{q}
+\def\bvaluelat{W}
+\def\bfieldlat{V}
+\def\bfunclat{v}
+ 
+% Fluctuation operator, Faddeev-Popov operator
+ 
+\def\deltazero{\Delta_0}
+\def\deltazerohat{\hat{\Delta}_0}
+\def\deltaone{\Delta_1}
+\def\deltaonehat{\hat{\Delta}_1}
+\def\deltaoneprime{\Delta\kern-1.0pt
+    \smash{\raise 4.5pt\hbox{$\scriptstyle\prime$}}
+    \kern-1.5pt_{1}}
+\def\FP{{\rm FP}}
+\def\deltaSone{\Delta^{{\rm S}^1}}
+ 
+% Seeley-DeWitt expansion, zeta functions
+ 
+\def\seeleycoeff#1#2{\alpha_{#1}({#2})}
+\def\zetafunc#1#2{\zeta(#1|#2)}
+% \def\zetaprime#1{\zeta'(0|#1)}
+ 
+% Hamilton operator, Hilbert space, transfer matrix
+ 
+\def\projector{\blackboardp}
+\def\ham{\mathbb{H}}
+\def\trans{\mathbb{T}}
+\def\opX{{\,\mathbb{X}\,}}
+\def\opA{{\,\mathbb{A}_0}}
+\def\opAstat{{\,\mathbb{A}_0^{\rm stat}}}
+\def\Tr{{\rm Tr}}
+ 
+\def\initial{|\rm i_{0}\rangle} 
+\def\final{\langle \rm f_{0}|} 
+\def\initialt{\langle \rm i_{0}|} 
+\def\finalt{| \rm f_{0}\rangle} 
+\def\initialpi{|\rm i_{\pi}\rangle} 
+\def\finalpi{\langle \rm f_{\pi}|} 
+\def\initialpi{|\rm i_{\pi}\rangle} 
+\def\initialpit{\langle \rm i_{\pi}|} 
+\def\pf{{\cal Z}}
+\def\vecp{{\bf p}}
+% \def\vecsig{{\bf \sigma}}
+% \def\vecsigma{{\bf \sigma}}
+\def\vecsig{\fat{\sigma}}
+\def\vecsigma{\fat{\sigma}}
+\def\vecD{{\bf D}}
+\def\vecB{{\bf B}}
+
+% Plaquette field, covariant derivatives
+ 
+\def\del#1{{\Delta_{#1}}}
+\def\delstar#1{\Delta\kern-1.0pt\smash{\raise 4.5pt\hbox{$\ast$}}
+               \kern-4.0pt_{#1}}
+\def\nab#1{{\nabla_{#1}}}
+\def\nabstar#1{\nabla\kern-0.5pt\smash{\raise 4.5pt\hbox{$\ast$}}
+               \kern-4.5pt_{#1}}
+\def\lnab#1{{\overleftarrow{\nabla}_{#1}}}
+\def\lnabstar#1{\overleftarrow{\nabla}\kern-0.5pt\smash
+             {\raise 4.5pt\hbox{$\ast$}}\kern-4.5pt_{#1}}
+\def\cdev#1{D\kern-0.2pt\smash{\raise 4.2pt
+            \hbox{$\scriptstyle\phantom{\ast}$}}
+            \kern-4.8pt_{#1}}
+\def\cdevstar#1{D\kern-0.2pt\smash{\raise 4.2pt
+                \hbox{$\scriptstyle\ast$}}
+                \kern-4.8pt_{#1}}
+\def\plaq{P}
+\def\dplaq{d^*\!P}
+ 
+% Abelian background field
+ 
+\def\angle{\phi^{\vphantom{\prime}}}
+\def\angleprime{\phi'}
+\def\anglevector{\Phi^{\vphantom{\prime}}}
+\def\anglevectorprime{\Phi'}
+\def\temptrans{\Theta}
+\def\setS{{\cal S}}
+\def\perm{\sigma}
+ 
+% Group of gauge transformations, field space etc.
+ 
+\def\gaugegroup{{\cal G}}
+\def\largegaugegroup{\hat{\gaugegroup}}
+\def\cartangroup{{\rm C}_N}
+\def\gaugealgebra{{\cal L}}
+\def\fluctuationspace{{\cal H}}
+\def\ga#1{\gaugealgebra_{#1}}
+\def\fs#1{\fluctuationspace_{#1}}
+\def\gap#1{\ga{#1}({\bf p})}
+\def\fsp#1{\fs{#1}({\bf p})}
+\def\gaugefunction{F}
+
+% Calculation of determinants
+ 
+\def\amat{{\cal A}}
+\def\bmat{{\cal B}}
+\def\cmat{{\cal C}}
+\def\solmat{M}
+\def\phat{\hat{p}}
+\def\cgh{\cos{\gamma\over2}}
+\def\funcspace{{\cal F}}
+\def\dim{d_{\funcspace}}
+ 
+\newcommand{\Dsl}{D \kern-.65em/}
+
+% Fermion determinants
+
+\def\Om{\Omega}
+\def\Oms{\Omega^{\ast}}
+\def\dOm{\partial\Om}
+\def\dOms{\partial\Oms}
+\def\dOmsring{[\dOms]}
+\def\DOm{D_{\Om}}
+\def\DOms{D_{\Oms_{\vphantom{1}}}}
+\def\DdOm{D_{\dOm}}
+\def\DdOms{D_{\dOms_{\vphantom{1}}}}
+\def\PdOms{P_{\dOms}}
+\def\VdOms{V_{\dOms}}
+
+% Abbreviations for equations, sections etc.
+
+\newcommand{\be}{\begin{equation}}
+\newcommand{\ee}{\end{equation}}
+\newcommand{\beq}{\begin{equation}}
+\newcommand{\eeq}{\end{equation}}
+\newcommand{\bes}{\begin{eqnarray}}
+\newcommand{\ees}{\end{eqnarray}}
+\newcommand{\beqa}{\begin{eqnarray}}
+\newcommand{\eeqa}{\end{eqnarray}}
+\newcommand{\bea}{\begin{eqnarray}}
+\newcommand{\eea}{\end{eqnarray}}
+\newcommand{\bean}{\begin{eqnarray*}}
+\newcommand{\eean}{\end{eqnarray*}}
+\newcommand{\bal}{\begin{align}}
+\newcommand{\eal}{\end{align}}
+\newcommand{\bit}{\begin{itemize}}
+\newcommand{\eit}{\end{itemize}}
+\newcommand{\ben}{\begin{enumerate}}
+\newcommand{\een}{\end{enumerate}}
+
+\newcommand{\eq}[1]{eq.~(\ref{#1})}
+\newcommand{\Eq}[1]{Eq.~(\ref{#1})}
+\newcommand{\eqs}[1]{eqs.~(\ref{#1})}
+\newcommand{\Eqs}[1]{Eqs.~(\ref{#1})}
+% \newcommand{\fig}[1]{Fig.~\ref{#1}}
+% \newcommand{\figs}[1]{Figs.~\ref{#1}}
+\newcommand{\Fig}[1]{Figure~\ref{#1}}
+\newcommand{\Figs}[1]{Figures~\ref{#1}}
+% \newcommand{\sect}[1]{Sect.~\ref{#1}}
+% \newcommand{\sects}[1]{Sects.~\ref{#1}}
+\newcommand{\Sect}[1]{Section~\ref{#1}}
+\newcommand{\Sects}[1]{Sections~\ref{#1}}
+% \newcommand{\app}[1]{App.~\ref{#1}}
+% \newcommand{\App}[1]{Appendix~\ref{#1}}
+\newcommand{\APP}[1]{\ref{#1}}
+% \newcommand{\tab}[1]{Table~\ref{#1}}
+% \newcommand{\tabs}[1]{Tables~\ref{#1}}
+\newcommand{\Tab}[1]{Table~\ref{#1}}
+\newcommand{\Tabs}[1]{Tables~\ref{#1}}
+% \newcommand{\Ref}[1]{Ref.~\cite{#1}}
+% \newcommand{\Refs}[1]{Refs.~\cite{#1}}
+% 
+% Redefinitions complying with JHEP conventions 
+%
+\newcommand{\sect}[1]{section~\ref{#1}}
+\newcommand{\sects}[1]{sections~\ref{#1}}
+\newcommand{\App}[1]{appendix~\ref{#1}}
+%\newcommand{\Ref}[1]{ref.~\cite{#1}} needed to do this for arxiv submission
+%\newcommand{\Refs}[1]{refs.~\cite{#1}}
+\newcommand{\fig}[1]{figure~\ref{#1}}
+\newcommand{\figs}[1]{figures~\ref{#1}}
+\newcommand{\tab}[1]{table~\ref{#1}}
+\newcommand{\tabs}[1]{tables~\ref{#1}}
+
+% One-loop coefficients, schemes, masses etc.
+
+\newcommand{\cbar}{c_{1,1}}
+\newcommand{\vbar}{\bar v}
+\newcommand{\pbar}{p_{1,1}}
+\newcommand{\bbar}{b_{0,1}}
+\newcommand{\ctbar}{c_t^{(1,1)}}
+\newcommand{\bzero}{b_0(n_f,0)}
+\newcommand{\deltabar}{\delta_{1,1}}
+\newcommand{\eps}{\epsilon}
+
+\newcommand{\MSbar}{\overline{\rm MS}}
+\newcommand{\MS}{\MSbar}
+\newcommand{\alphaMS}{\alpha_{\MS}}
+\newcommand{\Oa}{{\rm O}(a)}
+\newcommand{\Oasq}{{\rm O}(a^2)}
+\newcommand{\Lmax}{L_{\rm max}}
+\newcommand{\Lstar}{L^{\ast}}
+
+\newcommand{\proj}{{\cal P}}
+\newcommand{\smear}{{\cal S}}
+\newcommand{\Vbar}{\overline{V}}
+\newcommand{\Ubar}{\overline{U}}
+
+\newcommand{\tmin}{t_{\rm min}}
+\newcommand{\tmax}{t_{\rm max}}
+\newcommand{\vecr}{{\it \bf r}}
+\newcommand{\vecd}{{\it \bf d}}
+\newcommand{\vecu}{{\it \bf u}}
+\newcommand{\vecv}{{\it \bf v}}
+\newcommand{\vecx}{{\it \bf x}}
+\newcommand{\vecy}{{\it \bf y}}
+\newcommand{\vecz}{{\it \bf z}}
+\newcommand{\rnod}{r_{0}}
+\newcommand{\mbarscale}{1.436\,r_{0}}
+\newcommand{\rI}{r_{\rm I}}
+
+\newcommand{\sigplatt}{\Sigma_{\rm P}}
+\newcommand{\Sigmap}{\Sigma_{\rm P}}
+\newcommand{\sigpcont}{\sigma_{\rm P}}
+\newcommand{\Fpi}{F_{\pi}}
+\newcommand{\Gpi}{G_{\pi}}
+\newcommand{\Fp}{F_{\rm PS}}
+\newcommand{\Gp}{G_{\rm PS}}
+\def\mp{m_{\rm PS}}
+\newcommand{\Fk}{F_{\rm K}}
+\newcommand{\Fb}{F_{\rm B}}
+\newcommand{\Fbs}{F_{\rm B_{\rm s}}}
+\newcommand{\Fbd}{F_{\rm B_{\rm d}}}
+% \newcommand{\Fb}{f_{\rm B}}
+% \newcommand{\Fbs}{f_{\rm B_{\rm s}}}
+\newcommand{\Gk}{G_{\rm K}}
+\newcommand{\mk}{m_{\rm K}}
+% \newcommand{\mb}{m_{\rm B}}
+\newcommand{\mkstar}{m_{\rm K^*}}
+\newcommand{\Bk}{B_{\rm K}}
+\newcommand{\mphi}{m_{\Phi}}
+\newcommand{\mv}{m_{\rm V}}
+\newcommand{\mpi}{m_{\pi}}
+\newcommand{\mrho}{m_{\rho}}
+\newcommand{\RWI}{R}
+\newcommand{\Rwi}{R}
+\newcommand{\mav}{m_{\rm av}}
+\newcommand{\strange}{{\rm s}}
+\newcommand{\up}{{\rm u}}
+\newcommand{\down}{{\rm d}}
+\newcommand{\Mlight}{\hat{M}}
+\newcommand{\mlight}{\hat{m}}
+\newcommand{\Mref}{M_{\rm ref}}
+\newcommand{\mref}{m_{\rm ref}}
+\newcommand{\mstrange}{m_{\strange}}
+\newcommand{\Mstrange}{M_{\strange}}
+\newcommand{\beauty}{{\rm b}}
+\newcommand{\mbeauty}{m_{\rm b}}
+\newcommand{\Mbeauty}{M_{\beauty}}
+\newcommand{\Mh}{M_{\rm h}}
+\newcommand{\mup}{m_{\up}}
+\newcommand{\mdown}{m_{\down}}
+\newcommand{\charm}{{\rm c}}
+\newcommand{\Mcharm}{M_{\charm}}
+
+\newcommand{\rrmm} {1.5736}
+\newcommand{\blank}{\multicolumn{2}{c}{\mbox{}}}
+
+% Abbreviations for text
+ 
+\newcommand{\txtSF}{{Schr\"odinger functional }}
+\newcommand{\ps}{{pseudoscalar }}
+\newcommand{\stat}{{static effective field theory}}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                                               %
+% ALPHA's "macros_static.sty" (status: 01/2009) %
+%                                               %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Decay constant
+
+\newcommand{\fb}{F_{\rm B}}
+
+% Static action
+
+\def\Sstat{S_{\rm h}}
+\def\Sastat{S_{\bar{\rm h}}}
+\def\Shqet{S_{\rm HQET}}
+\def\Srel{S_{\rm rel}}
+\def\Lstat{{\cal L}_{\rm stat}}
+\def\LQCD{{\cal L}_{\rm QCD}}
+\def\LHQET{{\cal L}_{\rm HQET}}
+\def\qcdpar{{\cal C}_{\nf}}
+\def\qcdparred{{\cal C}_{\nf-1}}
+\def\hqetpar{{\cal C}_{\rm HQET}}
+\def\Nn{{N_{n}}}
+\def\NHQET{{N_{\rm HQET}}}
+\def\LD{\lag{}}
+\def\Dop{{\cal D}}
+\def\Lh{\lag{h}}
+\def\Lhb{\lag{\bar h}}
+\def\Lhhb{\lag{h \bar h}}
+\def\vecg{\bf \gamma}
+\def\Dg{D_k\gamma_k}
+
+\newcommand{\Okin}{\cl{O}_{\rm kin}}
+\newcommand{\Ospin}{\cl{O}_{\rm spin}}
+\newcommand{\ckin}{c_{\rm kin}}
+\newcommand{\csig}{c_{\sigma}}
+\newcommand{\cspin}{c_{\rm spin}}
+\newcommand{\omkin}{\omega_{\rm kin}}
+\newcommand{\omsig}{\omega_{\sigma}}
+\newcommand{\omspin}{\omega_{\rm spin}}
+\newcommand{\lnu}[1]{{\cal L}^{(#1)}}
+\newcommand{\lcoeff}[2]{\omega^{(#1)}_#2}
+\newcommand{\acoeff}[2]{\alpha^{(#1)}_#2}
+\newcommand{\minv}{1/m}
+
+% Static approximation fields
+
+\newcommand{\heavy}{\psi_{\rm h}}
+\newcommand{\heavyb}{\overline{\psi}_{\rm h}}
+\newcommand{\aheavy}{\psi_{\bar{\rm h}}}
+\newcommand{\aheavyb}{\overline{\psi}_{\bar{\rm h}}}
+\newcommand{\light}{{\psi}_{\rm l}}
+\newcommand{\lights}{{\psi}_{\rm s}}
+\newcommand{\lightb}{\overline{\psi}_{\rm l}}
+\newcommand{\lightsb}{\overline{\psi}_{\rm s}}
+\newcommand{\rhol}{\rho_{\rm l}}
+\newcommand{\rholb}{\overline{\rho}_{\rm l}}
+\newcommand{\rholprime}{\rho_{\rm l}\kern1pt'}
+\newcommand{\rholbprime}{\overline{\rho}_{\rm l}\kern1pt'}
+\newcommand{\rhoh}{\rho_{\rm h}}
+\newcommand{\rhohbprime}{\overline{\rho}_{\rm h}\kern1pt'}
+\newcommand{\zetal}{\zeta_{\rm l}}
+\newcommand{\zetalb}{\overline{\zeta}_{\rm l}}
+\newcommand{\zetalprime}{\zeta_{\rm l}\kern1pt'}
+\newcommand{\zetaiprime}{\zeta_{i}\kern1pt'}
+\newcommand{\zetajprime}{\zeta_{j}\kern1pt'}
+\newcommand{\zetalbprime}{\overline{\zeta}_{\rm l}\kern1pt'}
+\newcommand{\zetaibprime}{\overline{\zeta}_{i}\kern1pt'}
+\newcommand{\zetajbprime}{\overline{\zeta}_{j}\kern1pt'}
+\newcommand{\zetah}{\zeta_{\rm h}}
+\newcommand{\zetahb}{\overline{\zeta}_{\rm h}}
+\newcommand{\zetahprime}{\zeta_{\rm h}\kern1pt'}
+\newcommand{\zetahbprime}{\overline{\zeta}_{\rm h}\kern1pt'}
+\newcommand{\Astat}{A^{\rm stat}_0}
+\newcommand{\Ahqet}{A^{\rm HQET}_0}
+\newcommand{\Argi}{(A^{\rm RGI})_0}
+\newcommand{\Argistat}{(A_{\rm RGI}^{\rm stat})_0}
+\newcommand{\Aren}{(A^{\rm stat}_{\rm R})_0}
+% \newcommand{\Aren}{(A^{\rm stat}_0)_{\rm R}}
+\newcommand{\Vstat}{V^{\rm stat}_{k}}
+\newcommand{\Vren}{(V^{\rm stat}_{\rm R})_0}
+\newcommand{\ArenSF}{(A^{\rm stat}_{\rm SF})_0}
+\newcommand{\ArenMSbar}{(A^{\rm stat}_{\overline{\rm MS}})_0}
+\newcommand{\ArenLat}{(A^{\rm stat}_{\rm lat})_0}
+\newcommand{\ArenCA}{(A_{\rm CA})_0}
+\newcommand{\Astatimpr}{(A^{\rm stat}_{\rm I})_0}
+\newcommand{\Vstatimpr}{(V^{\rm stat}_{\rm I})_0}
+
+\newcommand{\zetalone}{\zeta_1}
+\newcommand{\zetalbtwo}{\overline{\zeta}_2}
+\newcommand{\zetalbprimeone}{\overline{\zeta}_1\kern1pt'}
+\newcommand{\zetalprimetwo}{\zeta_2\kern1pt'}
+
+\newcommand{\zh}{Z_{\rm h}}
+
+\newcommand{\chiAstatSFMSbar}{\chi_{\rm A}^{\rm stat}}
+\newcommand{\chiAstat}{(\chi_{\rm A}^{\rm stat})}
+\newcommand{\chiAstatMSbarLat}{(\chi_{\rm A}^{\rm stat})_{\msbar,\rm lat}}
+\newcommand{\chiAstatMSbarLatOne}{(\chi_{\rm A}^{\rm stat})_{\msbar,\rm lat}^{(1)}}
+\newcommand{\chiAstatSFMSbarOne}{(\chi_{\rm A}^{\rm stat})^{(1)}}
+
+\newcommand{\SigmaAstat}{\Sigma_{\rm A}^{\rm stat}}
+\newcommand{\sigmaAstat}{\sigma_{\rm A}^{\rm stat}}
+\newcommand{\sigmaAzerostat}{\sigma_{\rm A,0}^{\rm stat}}
+\newcommand{\sigmaAonestat}{\sigma_{\rm A,1}^{\rm stat}}
+\newcommand{\sigmaAtwostat}{\sigma_{\rm A,2}^{\rm stat}}
+\newcommand{\sigmaAnstat}{\sigma_{{\rm A},n}^{\rm stat}}
+
+\newcommand{\gamSF}{\gamma^{\rm SF}}
+\newcommand{\gamMSbar}{\gamma^{\overline{\rm MS}}}
+
+\newcommand{\latstep}{\Sigma_{\rm A}^{\rm stat}}
+\newcommand{\contstep}{\sigma_{\rm A}^{\rm stat}}
+
+% Static approximation correlation functions
+
+\newcommand{\fastat}{f_{\rm A}^{\rm stat}}
+\newcommand{\fakin}{f_{\rm A}^{\rm kin}}
+\newcommand{\faspin}{f_{\rm A}^{\rm spin}}
+\newcommand{\kvstat}{k_{\rm V}^{\rm stat}}
+\newcommand{\fastatimpr}{f_{\rm A}^{\rm stat, I}}
+\newcommand{\fdeltaAstat}{f_{\delta\rm A}^{\rm stat}}
+\newcommand{\fonestat}{f_{1}^{\rm stat}}
+\newcommand{\fonehh}{f_{1}^{\rm hh}}
+\newcommand{\fonekin}{f_{1}^{\rm kin}}
+\newcommand{\fonespin}{f_{1}^{\rm spin}}
+\newcommand{\fastatren}{(f_{\rm A}^{\rm stat})_{\rm R}}
+\newcommand{\fonestatren}{(f_{1}^{\rm stat})_{\rm R}}
+\newcommand{\Xbare}{X_{\rm bare}}
+\newcommand{\Xren}{X_{\rm R}}
+\newcommand{\XLat}{X_{\rm lat}}
+\newcommand{\Xmatch}{X_{\rm match}}
+\newcommand{\Xnew}{\Xi}
+\def\caa{C_{\rm AA}}
+\def\caahqet{C_{\rm AA}^{\rm HQET}}
+\def\daa{D_{\rm AA}}
+
+% Light-light correlation functions
+
+\newcommand{\fone}{f_1}
+\newcommand{\kone}{k_1}
+
+% Masses
+
+\newcommand{\mcrit}{m_{\rm c}}
+\newcommand{\mcritone}{m_{\rm c}^{(1)}}
+% \newcommand{\mMSbar}{\overline{m}_{2,\overline{\rm MS}}}
+\newcommand{\mMSbar}{\overline{m}_{\overline{\rm MS}}}
+
+% Matrices appearing in the correlation functions
+
+\newcommand{\Hlight}{H_{\rm l}}
+\newcommand{\Hheavy}{H_{\rm h}}
+\newcommand{\Klight}{K_{\rm l}}
+\newcommand{\Kheavy}{K_{\rm h}}
+
+% Static approximation renormalizations
+
+\newcommand{\zastat}{Z_{\rm A}^{\rm stat}}
+\newcommand{\zahqet}{Z_{\rm A}^{\rm HQET}}
+\newcommand{\zastatSF}{Z_{\rm A, SF}^{\rm stat}}
+\newcommand{\zastatMSbar}{Z_{\rm A, \overline{\rm MS}}^{\rm stat}}
+\newcommand{\zastatLat}{Z_{\rm A, lat}^{\rm stat}}
+\newcommand{\ZdeltaA}{Z_{\delta\rm A}}
+\newcommand{\BAstat}{B_{\rm A}^{\rm stat}}
+\newcommand{\zvstat}{Z_{\rm V}^{\rm stat}}
+\def\dmstat{\delta m}
+
+% Light quark renormalizations
+
+\newcommand{\zmMSbar}{Z_{\rm m, \overline{\rm MS}}}
+
+% Static approximation improvement coefficients
+
+\def\castat{c_{\rm A}^{\rm stat}}
+\def\cahqet{c_{\rm A}^{\rm HQET}}
+\def\cstat{c_{\rm h}}
+\def\dastat{d_{\rm A}^{\rm stat}}
+\def\bastat{b_{\rm A}^{\rm stat}}
+\def\bstat{b_{\rm h}}
+\def\cvstat{c_{\rm V}^{\rm stat}}
+\def\bvstat{b_{\rm V}^{\rm stat}}
+
+% Martin Kurth's stuff
+
+\newcommand{\ola}{\overleftarrow}
+\newcommand{\vectq}{{\it \bf q}}
+\newcommand{\vectp}{{\it \bf p}}
+\newcommand{\vectn}{{\it \bf 0}}
+
+\newcommand{\cttilde}{\widetilde{c}_{\rm t}}
+
+\newcommand{\gbarLat}{\bar{g}_{\rm lat}}
+\newcommand{\gLat}{g_{\rm lat}}
+
+\newcommand{\fonehhtree}{f_1^{\rm hh,(0)}}
+\newcommand{\fonehhoneloop}{f_1^{\rm hh,(1)}}
+\newcommand{\zastattree}{Z_{\rm A}^{\rm stat,(0)}}
+\newcommand{\zastatoneloop}{Z_{\rm A}^{\rm stat,(1)}}
+\newcommand{\SigmaAstatoneloop}{\Sigma_{\rm A}^{\rm stat,(1)}}
+\newcommand{\sigmaAstatoneloop}{\sigma_{\rm A}^{\rm stat,(1)}}
+\newcommand{\sigmaAstattwoloop}{\sigma_{\rm A}^{\rm stat,(2)}}
+\newcommand{\sigmaAstatnloop}{\sigma_{\rm A}^{{\rm stat,}(n)}}
+% \newcommand{\deltaAstat}{\delta}
+\newcommand{\deltaAstat}{\delta\Astat}
+\newcommand{\deltaAstatoneloop}{\delta^{(1)}}
+
+% Rainer Sommer's stuff
+
+\newcommand{\fhh}{f^{\rm hh}}
+\newcommand{\zastathh}{Z_{\rm A, SF,hh}^{\rm stat}}
+\newcommand{\gamhh}{\gamma^{\rm SF,hh}}
+\newcommand{\Fhatstat}{ {\Phi}^{\rm stat} }
+\newcommand{\FhatstatRGI}{\Phi^{\rm stat}_{\rm RGI}}
+\newcommand{\simas}[1]{\raisebox{-.1ex}{
+            $\stackrel{\small{#1}}{\sim}$}}
+\newcommand{\toas}[1]{\raisebox{-.1ex}{
+            $\stackrel{\small{#1}}{\longrightarrow}$}}
+\newcommand{\Toas}[1]{\raisebox{-.1ex}{
+            $\stackrel{\small{#1}}{\Longrightarrow}$}}
+\newcommand{\equalas}[1]{\raisebox{-.1ex}{
+            $\stackrel{\small{#1}}{=}$}}
+\newcommand{\equivas}[1]{\raisebox{-.1ex}{
+            $\stackrel{\small{#1}}{\equiv}$}}
+
+% Jochen Heitger's stuff
+
+\newcommand{\mumatch}{\mu_{\rm m}}
+\newcommand{\muhad}{\mu_{\rm had}}
+\newcommand{\mupert}{\mu_{\rm pert}}
+
+\newcommand{\psib}{\psi_{\rm b}}
+\newcommand{\bpsid}{\overline{\psi}_{\rm d}}
+\newcommand{\mbMSbar}{m_{{\rm b},\MS}}
+\newcommand{\mB}{m_{\rm B}}
+\newcommand{\mBstat}{m_{\rm B}^{\rm stat}}
+\newcommand{\mBstar}{m_{\rm B^*}}
+\newcommand{\Mb}{M_{\rm b}}
+\newcommand{\Fbbare}{F_{\rm B}^{\rm bare}}
+\newcommand{\Fbsstat}{F_{{\rm B}_{\rm s}}^{\rm stat}}
+\newcommand{\Fbstat}{F_{{\rm B}}^{\rm stat}}
+\newcommand{\Aistat}{(A^{\rm stat}_{\rm I})_{0}}
+\newcommand{\Arstat}{(A_{\rm R}^{\rm stat})_{0}}
+
+\newcommand{\oldSF}{{\rm old}}
+\newcommand{\newSF}{{\rm new}}
+\newcommand{\gamSFold}{\gamma^{{\rm SF},\oldSF}}
+\newcommand{\zastatold}{Z_{{\rm A},\oldSF}^{{\rm stat}}}
+\newcommand{\SigmaAstatold}{\Sigma_{{\rm A},\oldSF}^{{\rm stat}}}
+
+\newcommand{\Phibare}{\Phi_{\rm bare}}
+\newcommand{\PhiSF}{\Phi_{\rm SF}}
+\newcommand{\PhiRGI}{\Phi_{\rm RGI}}
+\newcommand{\PhiMSbar}{\Phi_{\overline{\rm MS}}}
+\newcommand{\Phimatch}{\Phi_{\rm match}}
+\newcommand{\FhatRGI}{\hat{F}_{\rm RGI}}
+\newcommand{\FhatMSbar}{\hat{F}_{\overline{\rm MS}}}
+\newcommand{\FhatSF}{\hat{F}_{\rm SF}}
+\newcommand{\ZPhi}{Z_{\rm RGI}}
+\newcommand{\Ztil}{\widetilde{Z}}
+\newcommand{\Cmatch}{C_{\rm match}}
+\newcommand{\Cpshat}{\widehat{C}_{\rm PS}}
+\newcommand{\Cvhat}{\widehat{C}_{\rm V}}
+\newcommand{\Crhat}{\widehat{C}_{\rm R}}
+\newcommand{\Cpsvhat}{\widehat{C}_{{\rm PS}/{\rm V}}}
+\newcommand{\Cmaghat}{\widehat{C}_{\rm mag}}
+\newcommand{\Cspinhat}{\widehat{C}_{\rm spin}}
+\newcommand{\Cps}{C_{\rm PS}}
+\newcommand{\Cv}{C_{\rm V}}
+\newcommand{\Cr}{C_{\rm R}}
+\newcommand{\Cpsv}{C_{{\rm PS}/{\rm V}}}
+\newcommand{\Cx}{C_{\rm X}}
+\newcommand{\Cspin}{C_{\rm spin}}
+\newcommand{\Cmag}{C_{\rm mag}}
+\newcommand{\Ckin}{C_{\rm kin}}
+\newcommand{\Cmass}{C_{\rm mass}}
+\newcommand{\gammatch}{\gamma^{\rm match}}
+\newcommand{\gamonematch}{\gamma_1^{\rm match}}
+\newcommand{\gamtwomatch}{\gamma_2^{\rm match}}
+\newcommand{\gamspin}{\gamma^{\rm spin}}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                                               %
+% various further definitions (status: 07/2009) %
+%                                               %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% (Lattice) derivatives in directions mu,nu
+
+\newcommand{\Pmu}{\partial_{\mu}}
+\newcommand{\Pnu}{\partial_{\nu}}
+\newcommand{\Pz}{\partial_{0}}
+\newcommand{\Dmu}{D_{\mu}}
+\newcommand{\dmu}[1]{\nabla^{{\rm (#1)}}_{\mu}}
+\newcommand{\Cmu}{\nabla_{\mu}}
+\newcommand{\Lmu}{\triangle_{\mu}}
+\newcommand{\Lnu}{\triangle_{\nu}}
+\newcommand{\Smu}{\tilde{\partial}_{\mu}}
+\newcommand{\Snu}{\tilde{\partial}_{\nu}}
+\newcommand{\Sz}{\tilde{\partial}_{0}}
+% \newcommand{\lnab}[1]{\overleftarrow{\nabla}_{#1}}
+% \newcommand{\lnabstar}[1]{{\overleftarrow{\nabla}\kern-0.5pt\smash
+%                           {\raise 4.5pt\hbox{$\ast$}}\kern-4.5pt_{#1}}}
+
+% Dirac matrices etc.
+
+\newcommand{\gmu}{\gamma_{\mu}}
+\newcommand{\gfv}{\gamma_5}
+\newcommand{\gzr}{\gamma_0}
+\newcommand{\gen}{{\textstyle{\frac{1}{2}}}\,\tau^a}
+\newcommand{\smunu}{\sigma_{\mu\nu}}
+
+% Boldface spatial momenta
+
+\newcommand{\mbx}{\mathbf{x}}
+\newcommand{\mby}{\mathbf{y}}
+\newcommand{\mbz}{\mathbf{z}}
+\newcommand{\mbu}{\mathbf{u}}
+\newcommand{\mbv}{\mathbf{v}}
+\newcommand{\mbw}{\mathbf{w}}
+\newcommand{\mbp}{\mathbf{p}}
+\newcommand{\mbn}{\mathbf{0}}
+
+\newcommand{\bx}{\mbx}
+\newcommand{\by}{\mby}
+\newcommand{\bz}{\mbz}
+\newcommand{\bu}{\mbu}
+\newcommand{\bv}{\mbv}
+\newcommand{\bw}{\mbw}
+% \newcommand{\bp}{\mbp}
+\newcommand{\bn}{\mbn}
+\newcommand{\bxs}{\bx}
+\newcommand{\bys}{\by}
+\newcommand{\bzs}{\bz}
+\newcommand{\bus}{\bu}
+\newcommand{\bvs}{\bv}
+\newcommand{\bws}{\bw}
+% \newcommand{\bps}{\bp}
+\newcommand{\bns}{\bn}
+
+% Fields
+
+\newcommand{\amu}{A_{\mu}^a}
+\newcommand{\az}{A_0^a}
+\newcommand{\p}{P^a}
+
+\newcommand{\ob}{\mathcal{O}}
+\newcommand{\obi}{\mathcal{O}^a}
+\newcommand{\obf}{\mathcal{O}'^a}
+\newcommand{\qbi}{\mathcal{Q}^a_k}
+\newcommand{\qbf}{\mathcal{Q}'^a_k}
+\newcommand{\obir}{\mathcal{O}^a_{\rm R}}
+\newcommand{\obfr}{\mathcal{O}'^a_{\rm R}}
+\newcommand{\qbir}{(\mathcal{Q}^a_k)_{\rm R}}
+\newcommand{\qbfr}{(\mathcal{Q}'^a_k)_{\rm R}}
+\newcommand{\zeb}{\bar{\zeta}}
+\newcommand{\zer}{\zeta_{\rm R}}
+\newcommand{\zebr}{\bar{\zeta}_{\rm R}}
+\newcommand{\zeu}{\zeta_{\rm u}}
+\newcommand{\zed}{\zeta_{\rm d}}
+\newcommand{\zeub}{\bar{\zeta}_{\rm u}}
+\newcommand{\zedb}{\bar{\zeta}_{\rm d}}
+\newcommand{\rhb}{\bar{\rho}}
+
+\newcommand{\bpsi}{\overline{\psi}}
+\newcommand{\psiu}{\psi_{\rm u}}
+% \newcommand{\bpsiu}{\overline{\psi}_{\rm u}}
+\newcommand{\bpsiu}{\overline{u}}
+\newcommand{\psil}{\psi_{\rm l}}
+% \newcommand{\bpsil}{\overline{\psi}_{\rm l}}
+\newcommand{\bpsil}{\overline{\ell}}
+% \newcommand{\psic}{\psi_{\rm c}}
+\newcommand{\psic}{c}
+% \newcommand{\psis}{\psi_{\rm s}}
+\newcommand{\psis}{s}
+% \newcommand{\bpsis}{\overline{\psi}_{\rm s}}
+\newcommand{\bpsis}{\overline{s}}
+\newcommand{\bpsib}{\overline{\psi}_{\rm b}}
+
+% Masses
+
+\newcommand{\moi}[1]{m_{0,#1}}
+\newcommand{\mzi}{m_{0,i}}
+\newcommand{\mzl}{m_{0,{\rm l}}}
+\newcommand{\mzh}{m_{0,{\rm h}}}
+\newcommand{\mri}[1]{m_{{\rm R},#1}}
+\newcommand{\mij}[1]{m_{#1}}
+\newcommand{\mqi}{m_{{\rm q},i}}
+\newcommand{\mqj}{m_{{\rm q},j}}
+\newcommand{\mql}{m_{{\rm q},{\rm l}}}
+\newcommand{\mqs}{m_{{\rm q},{\rm s}}}
+\newcommand{\mqc}{m_{{\rm q},{\rm c}}}
+\newcommand{\mqh}{m_{{\rm q},{\rm h}}}
+\newcommand{\mqn}[1]{m_{{\rm q},#1}}
+\newcommand{\mqitil}{\widetilde{m}_{{\rm q},i}}
+\newcommand{\mqltil}{\widetilde{m}_{{\rm q},{\rm l}}}
+\newcommand{\mqhtil}{\widetilde{m}_{{\rm q},{\rm h}}}
+\newcommand{\mqtil}{\widetilde{m}_{\rm q}}
+\newcommand{\muq}{\mu_{\rm q}}
+\newcommand{\muqtil}{\widetilde{\mu}_{\rm q}}
+
+\newcommand{\Mq}{M_{\rm q}}
+
+\newcommand{\mbbar}{\overline{m}_{\rm b}}
+\newcommand{\mhbar}{\overline{m}_{\rm h}}
+\newcommand{\mb}{m_{\rm b}}
+\newcommand{\mbstat}{m_{\rm b}^{\rm stat}}
+\newcommand{\ml}{m_{\rm l}}
+\newcommand{\mh}{m_{\rm h}}
+\newcommand{\mQ}{m_{\rm Q}}
+\newcommand{\mhMSbar}{m_{{\rm h},\MS}}
+\newcommand{\mhbarMSbar}{\overline{m}_{{\rm h},\MS}}
+\newcommand{\msbMS}{\overline{m}_{\rm s}^{\,\overline{\rm MS}}}
+\newcommand{\mcbMS}{\overline{m}_{\rm c}^{\,\overline{\rm MS}}}
+\newcommand{\mbbMS}{\overline{m}_{\rm b}^{\,\overline{\rm MS}}}
+\newcommand{\mbMS}{m_{\rm b}^{\,\overline{\rm MS}}}
+\newcommand{\mhbMS}{\overline{m}_{\rm h}^{\,\overline{\rm MS}}}
+% \newcommand{\mbSF}{\overline{m}^{\rm SF}}
+\newcommand{\mbSF}{\overline{m}_{\rm SF}}
+
+\newcommand{\md}{m_{\rm d}}
+\newcommand{\mU}{m_{\rm u}}
+\newcommand{\mUb}{\overline{m}_{\rm u}}
+\newcommand{\mS}{m_{\rm s}}
+\newcommand{\msb}{\overline{m}_{\rm s}}
+\newcommand{\mC}{m_{\rm c}}
+\newcommand{\mcb}{\overline{m}_{\rm c}}
+\newcommand{\Mu}{M_{\rm u}}
+\newcommand{\Ms}{M_{\rm s}}
+\newcommand{\Md}{M_{\rm d}}
+% \newcommand{\Ml}{M_{\rm l}}
+\newcommand{\Ml}{M_{\ell}}
+\newcommand{\Mc}{M_{\rm c}}
+
+\newcommand{\kapc}{\kappa_{\rm c}}
+\newcommand{\kapu}{\kappa_{\rm u}}
+\newcommand{\kapd}{\kappa_{\rm d}}
+\newcommand{\kaps}{\kappa_{\rm s}}
+\newcommand{\kapl}{\kappa_{\rm l}}
+\newcommand{\kaph}{\kappa_{\rm h}}
+
+% Correlators
+
+\newcommand{\fX}{f_{\rm X}}
+\newcommand{\kv}{k_{\rm V}}
+\newcommand{\kt}{k_{\rm T}}
+
+% Improvement coefficients
+
+\newcommand{\bP}{b_{{\rm P}}}
+\newcommand{\bV}{b_{{\rm V}}}
+
+% Hadronic observables
+
+\newcommand{\PS}{{\rm PS}}
+\newcommand{\mps}{m_{\rm PS}}
+\newcommand{\Fps}{F_{\rm PS}}
+\newcommand{\Fd}{F_{\rm D}}
+\newcommand{\Fds}{F_{\rm D_{\rm s}}}
+\newcommand{\mD}{m_{\rm D}}
+\newcommand{\mDs}{m_{\rm D_{\rm s}}}
+
+% B-Physics
+
+\newcommand{\Cstat}{C_{\rm stat}}
+\newcommand{\Estat}{E_{\rm stat}}
+\newcommand{\Eeff}{E_{\rm eff}}
+\newcommand{\Ekin}{E_{\rm kin}}
+\newcommand{\Ekinhat}{\hat{E}_{\rm kin}}
+\newcommand{\Espin}{E_{\rm spin}}
+\newcommand{\delE}{\Delta E}
+\newcommand{\delstat}{\Delta^{\rm stat}}
+\newcommand{\mhbare}{m_{\rm bare}}
+\newcommand{\mhpole}{m_{\rm pole}}
+\newcommand{\Xr}{X_{\rm R}}
+\newcommand{\XRGI}{X_{\rm RGI}}
+\newcommand{\XRGIspin}{X_{\rm RGI}^{\rm spin}}
+\newcommand{\Yr}{Y_{\rm PS}}
+\newcommand{\Yv}{Y_{\rm V}}
+\newcommand{\Yx}{Y_{\rm X}}
+\newcommand{\Rr}{R_{\rm }}
+\newcommand{\gamrel}{\Gamma_{\rm rel}}
+\newcommand{\gamstat}{\Gamma_{\rm stat}}
+\newcommand{\gamonestat}{\Gamma_1^{\rm stat}}
+\newcommand{\gamonekin}{\Gamma_1^{\rm kin}}
+\newcommand{\gamps}{\Gamma_{\rm PS}}
+\newcommand{\gamv}{\Gamma_{\rm V}}
+\newcommand{\gamav}{\Gamma_{\rm av}}
+\newcommand{\gamdifstat}{\Xi_{\rm stat}}
+\newcommand{\gamdifone}{\Xi_{\rm kin}}
+\newcommand{\gamdif}{\Xi}
+\newcommand{\gamx}{\Gamma_{\rm X}}
+\newcommand{\delgam}{{\Delta}_{\Gamma}}
+\newcommand{\Omps}{\Omega_{\rm PS}}
+\newcommand{\Omv}{\Omega_{\rm V}}
+\newcommand{\Omav}{\Omega_{\rm av}}
+\newcommand{\Omx}{\Omega_{\rm X}}
+\newcommand{\omps}{\omega_{\rm PS}}
+\newcommand{\omv}{\omega_{\rm V}}
+\newcommand{\omav}{\omega_{\rm av}}
+\newcommand{\omx}{\omega_{\rm X}}
+\newcommand{\zb}{z_{{\rm b}}}
+\newcommand{\Bs}{{\rm B}_{\rm s}}
+\newcommand{\mBs}{m_{{\rm B}_{\rm s}}}
+\newcommand{\Bb}{B_{\rm B}}
+
+\newcommand{\Obare}{O_{\rm bare}}
+\newcommand{\OINP}{O_{\rm INP}}
+\newcommand{\ZMS}{Z^{\,\overline{\rm MS}}}
+\newcommand{\ZMSpole}{Z^{\,\overline{\rm MS}}_{\,\rm pole}}
+\newcommand{\ZRGI}{Z_{\rm RGI}}
+\newcommand{\ZINP}{Z_{\rm INP}}
+\newcommand{\Zspin}{Z_{\rm spin}}
+\newcommand{\Zkin}{Z_{\rm kin}}
+\newcommand{\PhiINP}{\Phi_{{\rm INP}}}
+\newcommand{\Phieff}{\Phi_{{\rm eff}}}
+\newcommand{\PhistatMSbar}{\Phi^{\rm stat}_{\overline{{\rm MS}}}}
+\newcommand{\PhiQCD}{\Phi^{\rm QCD}}
+\newcommand{\PhiHQET}{\Phi^{\rm HQET}}
+\newcommand{\Phiqcd}{\Phi^{\rm QCD}}
+\newcommand{\Phihqet}{\Phi^{\rm HQET}}
+\newcommand{\Phistat}{\Phi^{\rm stat}}
+\newcommand{\Phikin}{\Phi^{\rm kin}}
+\newcommand{\Phispin}{\Phi^{\rm spin}}
+\newcommand{\Phibar}{\overline{\Phi}}
+\newcommand{\Phibarkin}{\overline{\Phi}^{\rm kin}}
+\newcommand{\Phibarspin}{\overline{\Phi}^{\rm spin}}
+\newcommand{\Phirstat}{\Phi_{\rm R}^{\rm stat}}
+\newcommand{\PhirHQET}{\Phi_{\rm R}^{\rm HQET}}
+\newcommand{\PhirQCD}{\Phi_{\rm R}^{\rm QCD}}
+\newcommand{\Phir}{\Phi_{{\rm R}}}
+
+\newcommand{\sigm}{\sigma_{\rm m}}
+\newcommand{\Sigm}{\Sigma_{\rm m}}
+\newcommand{\sigkin}{\sigma^{\rm kin}}
+\newcommand{\Sigkin}{\Sigma^{\rm kin}}
+\newcommand{\sigx}{\sigma_{\rm X}}
+\newcommand{\Sigx}{\Sigma_{\rm X}}
+
+% Couplings and Lambda-parameters
+
+\newcommand{\lQCD}{\Lambda_{\rm QCD}}
+\newcommand{\lSF}{\Lambda_{\rm SF}}
+\newcommand{\lMSbar}{\Lambda_{\overline{{\rm MS}}}}
+\newcommand{\lMSbarq}{\Lambda_{\overline{{\rm MS}}}^{(0)}}
+
+% Misc
+
+\newcommand{\fns}{\footnotesize}
+\newcommand{\sps}{\scriptsize}
+\newcommand{\T}{\textstyle}
+\newcommand{\D}{\displaystyle}
+\newcommand{\cl}[1]{\mathcal{#1}}
+
+\newcommand{\mrm}[1]{{\rm #1}}
+\newcommand{\dts}[2]{#1_{{\rm #2}}}
+\newcommand{\uts}[2]{#1^{{\rm #2}}}
+\newcommand{\duts}[3]
+           {#1_{{\rm #2}}^{{\rm #3}}}
+\newcommand{\fat}[1]{\mbox{\boldmath$#1$}}
+\newcommand{\sfat}[1]{{\small \mbox{\boldmath$#1$}}}
+\newcommand{\tb}[1]{\textbf{#1}}
+
+\newcommand{\lmax}{L_{\rm max}}
+\newcommand{\alphs}{\alpha_{\rm s}}
+\newcommand{\alphSF}{\alpha_{\rm SF}}
+\newcommand{\MZ}{M_{\rm Z}}
+\newcommand{\alphR}{\alpha_{\rm R}}
+\newcommand{\alphTI}{\alpha_{\Box}}
+\newcommand{\alphqqbar}{\alpha_{{\rm q}\overline{{\rm q}}}}
+\newcommand{\alphMSbar}{\alpha_{\overline{{\rm MS}}}}
+\newcommand{\mcost}{M_{\rm cost}}
+\newcommand{\dcost}{D_{\rm cost}}
+\newcommand{\nmd}{N_{\rm md}}
+\newcommand{\Q}{\hat{Q}}
+\newcommand{\Fm}{{\rm fm}}
+\newcommand{\K}{{\rm K}}
+% \newcommand{\D}{{\rm D}}
+\newcommand{\Ds}{{\rm D}_{\rm s}}
+\newcommand{\meff}{m_{{\rm eff}}}
+\newcommand{\half}{{\textstyle{\frac{1}{2}}}}
+\newcommand{\third}{{\textstyle{\frac{1}{3}}}}
+\newcommand{\quart}{{\textstyle{\frac{1}{4}}}}
+\newcommand{\threequart}{{\textstyle{\frac{3}{4}}}}
+\newcommand{\nth}{{\textstyle{\frac{1}{N}}}}
+\newcommand{\ts}{$\times$}
+\newcommand{\crsp}{\hat{=}}
+\newcommand{\oloop}{\rm 1-loop}
+\newcommand{\ctop}{\dts{\chi}{top}}
+\newcommand{\qtop}{\dts{Q}{top}}
+\newcommand{\ctops}{\dtss{\chi}{top}}
+\newcommand{\qtops}{\dtss{Q}{top}}
+\newcommand{\tint}{\dts{\tau}{int}}
+\newcommand{\texp}{\dts{\tau}{exp}}
+\newcommand{\dt}{{\rm d}}
+\newcommand{\Dt}{{\rm D}}
+\newcommand{\Dc}{\cl{D}}
+\newcommand{\Zc}{\cl{Z}}
+\newcommand{\Oc}{\cl{O}}
+\newcommand{\dsl}{D\hspace{-0.25cm}/\hspace{+0.075cm}}
+\newcommand{\Exp}{{\rm e}}
+\newcommand{\Mod}{{\rm mod\,}}
+\newcommand{\Ep}{E_{\bps}}
+\newcommand{\Eps}{E_{\bpss}}
+\newcommand{\id}{\Bbb{I}}
+\newcommand{\tfm}{\Bbb{T}}
+\newcommand{\pro}{\Bbb{P}}
+\newcommand{\cur}{\Bbb{X}}
+% \newcommand{\opa}{\Bbb{A}}
+\newcommand{\cpt}{\chi\mbox{PT}}
+\newcommand{\SF}{{\rm SF}}
+\newcommand{\MOM}{{\rm MOM}}
+\newcommand{\lattice}{{\rm lattice}}
+\newcommand{\QCD}{{\rm QCD}}
+\newcommand{\HQET}{{\rm HQET}}
+\newcommand{\citvoid}[1]{[\textbf{citation~#1}]}
+\newcommand{\tabvoid}[1]{[\textbf{table~#1}]}
+\newcommand{\figvoid}[1]{[\textbf{figure~#1}]}
+\newcommand{\Alpha}{\hbox{\epsfxsize=0.75 true cm 
+                          \epsfbox{plots/alpha_color_60.eps}}}
+\newcommand{\ALPHA}{\hbox{\epsfxsize=0.875 true cm 
+                          \epsfbox{plots/alpha_color_60.eps}}}
+
+% Patrick Fritzsch's stuff
+
+\def\rmi{{\rm i}}
+\def\myt#1{\;\text{#1}}
+\def\sdrv#1{{\widetilde{\partial}^{}_{#1}}}
+\def\gotildesq{\widetilde{g}_{\kern0.1em 0}^{\kern0.1em 2}}
+\def\hpo{\hphantom{0}}
+\def\hpm{\hphantom{-}}
+\def\hph#1{\hphantom{#1}}
+\def\hphinv{^{\hph{-1}}}
+
+\newcommand{\eee}[1]{\mathrm{e}^{#1}}  
+\newcommand{\dd}[2]{\mathrm{d}^{#1}{#2}\;}
+\newcommand{\intdd}[2]{\int\!\mathrm{d}^{#1}{#2}\,}
+\newcommand{\evalbig}[1]{\big\langle#1\big\rangle}
+\newcommand{\Ximp}{X_\mathrm{I}}
+\newcommand{\lh}{_\mathrm{\,h}}
+\newcommand{\RAP}{R_{\rm AP}}
+\newcommand{\Rm}{R_{\rm m}}
+\newcommand{\RAm}{R_{\rm Am}}
+\newcommand{\Gamps}{\varGamma_{\rm PS}}
+\newcommand{\clml}[1]{\multicolumn{1}{l}{#1}}
+\newcommand{\clmc}[1]{\multicolumn{1}{c}{#1}}
+\newcommand{\clmr}[1]{\multicolumn{1}{r}{#1}}
+\newcommand{\MCC}[1]{\multicolumn{2}{c}{#1}}
+
+
+% Other stuff
+
+\newcommand{\cO}{{\cal O}}
diff --git a/talk.pdf b/talk.pdf
new file mode 120000
index 0000000..61708ef
--- /dev/null
+++ b/talk.pdf
@@ -0,0 +1 @@
+.git/annex/objects/q8/2m/MD5E-s271546--3704e2dac1570a7e64382cbc71e34ef6.pdf/MD5E-s271546--3704e2dac1570a7e64382cbc71e34ef6.pdf
\ No newline at end of file
diff --git a/talk.tex b/talk.tex
new file mode 100644
index 0000000..9b1026c
--- /dev/null
+++ b/talk.tex
@@ -0,0 +1,205 @@
+% !TeX program = lualatex
+\documentclass[aspectratio=169]{beamer}
+\input{einstellungen.tex}
+% \usepackage[backend=bibtex]{biblatex} %lualatex, biber
+\usepackage{multimedia}
+\usepackage{tcolorbox}
+\usepackage{multicol}
+\usepackage{tikz} % I added this
+\usetikzlibrary{patterns}  % I added this
+\usetikzlibrary{calc} % I added this
+\usepackage{mathtools} % I added this
+\usepackage{tcolorbox} % I added this
+\usepackage{vwcol} % I added this
+\usepackage{wrapfig}  % I added this
+\usepackage{booktabs} % Top and bottom rules for table,I added this 
+\usepackage{animate} % added this for gifs
+\usepackage{dsfont}
+\usepackage{simplewick} %added this
+\usepackage[makeroom]{cancel}
+\definecolor{Darkgreen}{rgb}{0,0.5,0}
+\newcommand{\halflinewidth}{.48\linewidth}
+\newcommand{\fulllinewidth}{.95\linewidth}
+\usepackage{macros} % used commands defined for rm paper
+\newcommand*{\arxivtag}[1]{{\color{pantone315}\texttt{[#1]}}}
+\newcommand{\openlat}{OpenLat}
+
+
+\title[$A_\mu^a$ impr. msl. \& mass. quarks]{Non-singlet axial current improvement for massless and massive sea quarks}
+\author[Justus Kuhlmann]{\textbf{Justus Kuhlmann}\\ Patrick Fritzsch, Jochen Heitger}
+
+% \institute wird von der Vorlage nicht direkt verwendet
+\institute{Institut für theoretische Physik}
+
+\date{\today}
+\keywords{Münster}
+
+\newcommand{\customcite}[1]{{\color{fu-blue}\citename{#1}{author}}, \citefield{#1}{journaltitle}, {\color{pantone315}\citeyear{#1}}}
+\addbibresource{"./My Library.bib"}
+\begin{document}
+	
+\begin{frame}[plain]
+	\maketitle
+\end{frame}	
+
+% Relevance of the AV-current
+% Relevance in renormalisation adn improvement of other currents
+% so far only in chi lim
+% not exactly given with the ensembles at hand
+% also: we have ensembles close to the symmetric point
+% openLAT so far at sym point
+% differences at sym point?
+% improvement at the symmetric point
+% example
+
+\begin{frame}
+	\frametitle{Relevance for further improvement and physics}
+	\begin{itemize}
+		\item needed for improv. determination of the PCAC quark-mass
+		\item decay constants
+		\item masses of mesons (e.g. $\chi_\mathrm{c1}$ or $D_\mathrm{1}^\ast$)
+		\pause
+		\vspace{.5cm}
+		\item improvement and renormalisation:
+		\begin{itemize}
+			\item $\cv$, $\za$, $c_{\rm T}$
+			\item no $\ca$ $\Rightarrow$ no improvement of other channels
+		\end{itemize}
+	\end{itemize}
+\end{frame}
+
+
+\begin{frame}
+	\frametitle{Determination of $\ca$}
+	\begin{itemize}
+		\item Schrödinger functional
+		\item used already \arxivtag{hep-lat/9609035} for $N_{\rm f} = 2$ \arxivtag{hep-lat/0503003} and std. Wilson-Clover $N_{\rm f} = 3$ \arxivtag{1502.04999}
+		\item from PCAC mass $m_{\rm PCAC} = \frac{\partial_0 f_{\rm A}}{2f_{\rm P}} + \ca \frac{\partial^2_0 f_{\rm P}}{2f_{\rm P}} = r + \ca s$
+	\end{itemize}
+	\vspace{.5cm}
+	$$m_{\rm PCAC}^{(0)} = m_{\rm PCAC}^{(1)}$$
+	$$\Leftrightarrow \ca =  - \frac{r^{(1)} - r^{(0)}}{s^{(1)} - s^{(0)}}$$
+\end{frame}
+
+\begin{frame}
+	\frametitle{The wavefunction method}
+	\begin{itemize}
+		\item mimic pionic sources on boundaries $\pi^{(0)}, \pi^{(1)}$ and require PCAC to hold
+		\begin{itemize}
+			\item basis wavefunctions:
+			$\omega_{\rm b1} = e^{-r/a_0}\;,\quad\omega_{\rm b2} = r~e^{-r/a_0}\;,\quad\omega_{\rm b3} = e^{-r/(2a_0)}$
+			\item also include $\omega_{\rm b4} = {\rm cons.}\;,\quad\omega_{\rm b5} = -r^2~e^{-r/a_0}$
+		\end{itemize}
+		\item eigenvectors of boundary-to-boundary corr. func. $(F_1)_{i,j} = -\langle O(\omega_{{\rm b}i}) O'(\omega_{{\rm b}j})\rangle$ lead to eigenstates $\pi^{(0)}, \pi^{(1)}$
+		% Question: do we include all wavefunctions or just some?
+		% How does this interplay with the states that we achieve?
+		% Which is the optimal wf combination?
+		% \item also: where on the lattice do we define $c_{\rm A}$?
+		\vspace{.5cm}
+		\pause
+		\item evaluate $c_{\rm A}(x_0)$ with these source terms
+		\item later: choice of $x_0$ and wavefunction basis is part of the improvement condition
+	\end{itemize}
+\end{frame}
+
+
+\begin{frame}
+	\frametitle{Ensembles}
+	\framesubtitle{$L\approx 3\,{\rm fm}$ Schrödinger-Functional ensembles, exp. Wilson-Clover fermions}
+	\begin{center}
+		\begin{tabular}{cc|c|c|c|c}
+			\toprule
+			$L/a$ & $\beta$ & $\kappa_{1}\approx\kappa_{\rm cr}$ & $\kappa_{2}$ & $\kappa_{3}\approx\kappa_{\rm sym}$&$a$\\
+			\midrule
+			24&3.685&0.1396980&0.1395500&0.1394400&0.120\\
+			32&3.80&0.1392500&---&0.1389630&\\
+			40&3.90&0.1388562&0.1386148&0.1386030&\\
+			48&4.00&0.1384942&0.1384880&0.1382720&\\
+			56&4.10&0.1381410&0.1380000&0.1379450&\\
+			\bottomrule
+		\end{tabular}
+	\end{center}
+	\begin{itemize}
+		\item interested in 2 LCPs: chiral and at $N_{\rm f}=3$ symmetric point
+		\item matching sym. point of \openlat~\arxivtag{2201.03874}
+	\end{itemize}
+\end{frame}
+
+\begin{frame}
+	\frametitle{Improvement of the axial-vector current}
+	\framesubtitle{$\ca$ estimators}
+	\begin{tabular}{cc}
+		Close to chiral ensembles&Symmetric ensembles\\
+		\includegraphics[width=\halflinewidth]{plots/plateaus_chi_0.2_0.3_0124_ee_ee_total_quad.pdf}&
+		\includegraphics[width=\halflinewidth]{plots/plateaus_sym_0.2_0.3_0124_ee_ee_total_quad.pdf}	
+	\end{tabular}
+	% systematic errors, to capture "non-plateauness"
+\end{frame}
+
+% interpolations
+\begin{frame}
+	\frametitle{Interpolation}
+	\framesubtitle{Hit symmetric and critical point exactly}
+	\begin{itemize}
+		\item ensembles not exactly tuned
+		\item determine points of interest as in \openlat~ensembles
+		\item define: $$\Phi^{\rm SF}_4 = \frac{3}{2}\,8t_0\,|m_{\rm eff}|\,m_{\rm eff}
+		\quad \Rightarrow \quad \Phi^{\rm SF}_4\bigm\lvert_{m_{0,{\rm cr}}} = 0\,,\;\Phi^{\rm SF}_4\bigm\lvert_{m_{0,{\rm sym}}} = 1.115$$
+		\item interpolate to the desired points
+	\end{itemize}
+\end{frame}
+
+\begin{frame}
+	\frametitle{Improvement of the axial-vector current}
+	\framesubtitle{Finding the symmetric and chiral point}
+	%\includegraphics[width=\halflinewidth]{plots/plateaus_chi_0.175_0.325_0124.pdf}
+\end{frame}
+
+\begin{frame}
+	\frametitle{Improvement of the axial-vector current}
+	\framesubtitle{Interpolations in $c_{\rm A}$}
+	%\includegraphics[width=\halflinewidth]{plots/plateaus_sym_0.175_0.325_0124.pdf}
+\end{frame}
+
+\begin{frame}
+	\frametitle{Improvement of the axial-vector current}
+	\framesubtitle{Final interpolations in $g_0^2$}
+	%\includegraphics[width=\halflinewidth]{plots/plateaus_sym_0.175_0.325_0124.pdf}
+\end{frame}
+
+% first study for difference:
+\begin{frame}
+	\frametitle{First scaling test of improvement}
+	\framesubtitle{Construction}
+	\begin{itemize}
+		\item Example: construct a non-trivial observable, for which renormalisation drops out
+$$\frac{A^R_{\pm}}{A^R_{ll}} = \frac{Z_{\rm A}}{Z_{\rm A}} \frac{(1+ b_{\rm A} (m_{q+} + m_{q-})/2}{(1+ b_{\rm A} m_{ql})} \frac{(1+\bar{b}_{\rm A}Tr[M_q])}{(1+ \bar{b}_{\rm A}Tr[M_q])} \frac{A_{\pm}}{A_{ll}}$$
+	with $$(m_{q+} + m_{q-})/2=m_{ql}$$
+		\item symmetric point \openlat~ensembles
+		\item unimproved vs improved chi vs improves sym
+	\end{itemize}
+	
+\end{frame}
+
+\begin{frame}
+	\frametitle{First study of improvement}
+	\framesubtitle{Results}
+		
+\end{frame}
+
+
+
+\begin{frame}
+	\frametitle{Outlook}
+	\begin{itemize}
+		\item starting to work on SF determination of
+		\begin{itemize}
+			\item vector current improvement ($c_{\rm V}$, $c_{\rm T}$)
+			\item current quark mass renormalization ($b_{\rm A}-b_{\rm P}$, $b_m$, $Z$)
+		\end{itemize}
+		\item determination of $Z_{\rm A}$, $Z_{\rm V}$, $Z_{\rm S}/Z_{\rm P}$ through $\chi$SF
+	\end{itemize}
+\end{frame}
+\end{document}
+
+
diff --git a/wwustyle-mod.sty b/wwustyle-mod.sty
new file mode 100644
index 0000000..5469b78
--- /dev/null
+++ b/wwustyle-mod.sty
@@ -0,0 +1,162 @@
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{wwustyle-mod}[%
+	2017/11/01 Modifications/patches for wwustyle.sty%
+]
+
+\RequirePackage{graphicx}
+% add resource directory to search path
+\graphicspath{{wwustyle/}}
+
+% load the same packages as wwustyle
+\RequirePackage{tikz}
+\RequirePackage{xxcolor}
+\RequirePackage{microtype}
+
+% intercept option “english” to fix avoid error in wwustyle.sty
+\newif\ifwwumod@english
+\DeclareOption{english}{\wwumod@englishtrue}
+% pass all (other) options to wwustyle
+\DeclareOption*{\PassOptionsToPackage{\CurrentOption}{wwustyle}}
+\ProcessOptions\relax
+
+% save commands that will temporarily be overwritten
+\let\RequirePackage@saved=\RequirePackage
+\let\usefont@saved=\usefont
+\let\rmdefault@saved=\rmdefault
+\let\sfdefault@saved=\sfdefault
+\let\@listii@saved=\@listii
+\let\@listiii@saved=\@listiii
+% disable the commands \RequirePackage and \usefont before loading wwustyle
+% so that it doesn’t load fontenc.sty or meta.sty and doesn’t set the fonts
+\renewcommand*{\RequirePackage}[2][]{}
+\renewcommand*{\usefont}[4]{}
+% load wwustyle
+\RequirePackage@saved{wwustyle}
+% restore commands
+\let\RequirePackage=\RequirePackage@saved
+\let\usefont=\usefont@saved
+\let\rmdefault=\rmdefault@saved
+\let\sfdefault=\sfdefault@saved
+\let\@listii=\@listii@saved
+\let\@listiii=\@listiii@saved
+
+% =============================================================================
+
+% fix broken package option “english”
+\renewcommand{\switchToEnglish}{
+	\renewcommand{\claimTextWissen}{living}
+	\renewcommand{\claimTextLeben}{knowledge}
+	% this line had to be fixed (was “\newcommand{\claimText}{livingknowledge}”)
+	\renewcommand{\claimText}{livingknowledge}
+	\renewcommand{\claimPunktXShift}{-6.2mm}
+	\renewcommand{\claimPunktYShift}{-0.6mm}
+	\renewcommand{\claimLebenXShift}{0.5mm}
+	\renewcommand{\claimWWUYShift}{26.9mm}
+	\renewcommand{\claimWWUXShift}{0mm}
+	\renewcommand{\claimWWUXXShift}{2.3366mm}
+	\renewcommand{\claimDeEn}{-en}
+}
+% switch to English if package option “english” was specified
+\ifwwumod@english
+	\switchToEnglish
+\fi
+
+% redefine \@arrayparboxrestore so that the presentation title (which is set
+% using a \parbox) uses \raggedright instead of justifying text
+\g@addto@macro\@arrayparboxrestore{\raggedright}
+
+% some improvements and modifications to wwustyle.sty
+\renewcommand*{\bgbox}[1]{\texorpdfstring{\colorbox{maincolor}{#1}}{#1}}
+
+% use standard WWU logo files instead of redrawing the logo in TikZ
+\renewcommand*{\wwu@logo}[2]{%
+	\def\temp@a{#2}\def\temp@b{white}%
+	% \ifx\temp@a\temp@b%
+		\includegraphics[scale=#1]{unims}
+	% \else%
+		% The file WWUMuenster_Logo_2017_4c.pdf contains margins which have to
+		% be cropped. There is a horizontal margin of 2.5mm and a vertical
+		% margin of 2.66mm on each side. The trim option of \includegraphics
+		% takes values in bp (1bp = 1/72in), so 2.5mm ≈ 7.08bp and
+		% 2.66mm ≈ 7.54bp.
+		% \includegraphics[trim=7.08 7.54 7.08 7.54, clip, scale=#1]{unims}
+		\hspace{0.3cm}\includegraphics[scale=0.13]{wwustyle/rtg_logo.png}
+		% \hspace{0.3cm}\includegraphics[scale=0.45]{wwustyle/rqcd_logo.pdf}
+	% \fi%
+}
+
+% make right sidebar smaller now that the claim isn’t shown there anymore
+% (same size as left sidebar)
+\setbeamersize{sidebar width right=0.25cm}
+
+% define an actual white (since the normal white was overwritten in wwustyle)
+\definecolor{truewhite}{RGB}{255,255,255}
+% correct definition of pantoneblack7
+\definecolor{pantoneblack7}{RGB}{62,62,59}
+% set text color to 80% of pantoneblack7
+\colorlet{wwublack}{pantoneblack7!80}
+\setbeamercolor*{normal text}{fg=pantoneblack7!80}
+% restore block title colors
+\setbeamercolor*{block title}{fg=truewhite,bg=maincolor}
+\setbeamercolor*{block title alerted}{fg=truewhite,bg=fu-red}
+\setbeamercolor*{block title example}{fg=truewhite,bg=fu-green}
+% restore block background color
+\setbeamercolor*{block body}{bg=maincolor!5}
+
+% make footline background non-transparent so that frame content cannot “slide
+% into” the footer
+\setbeamercolor*{footlinecolor}{bg=truewhite}
+\setbeamertemplate{footline}{%
+	\begin{beamercolorbox}[wd=\paperwidth]{footlinecolor}
+		\fontsize{6pt}{1pt}%
+		\selectfont%
+		\color{maincolor}%
+		\rule{\textwidth}{0.8pt}% horizontal line
+		\vskip2mm%
+		\hspace{5mm}%
+		% fix frame numbering (use \insertframenumber instead of \thepage)
+		\textcolor{wwublack}{\let\bgbox\relax\insertshortauthor}\hfill\textcolor{maincolor}{\fontsize{9pt}{12pt}\selectfont\smash{\textbf{\insertframenumber}}}\hspace{5mm}\strut%
+		\vskip2mm%
+	\end{beamercolorbox}%
+}
+
+% restore original beamer list settings overwritten by wwustyle.sty
+\setbeamercolor{item}{fg=maincolor}
+\setbeamertemplate{itemize/enumerate body begin}[default]
+\setbeamertemplate{itemize/enumerate subbody begin}[default]
+\setbeamertemplate{itemize/enumerate subsubbody begin}[default]
+\setbeamertemplate{items}[default]
+
+% fix \frametitle and add output for \framesubtitle
+\setbeamertemplate{frametitle}{%
+	%\vskip4mm
+	\vskip0mm %shift the frametitle slighty to the top
+	\fontsize{14pt}{14pt}
+	\selectfont
+	\color{maincolor}
+	\bfseries
+	\insertframetitle
+	\par
+	\ifx\insertframesubtitle\empty%
+	\else
+	\fontsize{12pt}{12pt}
+	\selectfont
+	\color{pantoneblack7}
+	\mdseries
+	\insertframesubtitle
+	\fi%
+}
+
+\setbeamertemplate{headline}{
+	\fontsize{6pt}{1pt}%
+	\selectfont%
+	\hfill%
+	\bfseries%
+	\color{maincolor}%
+	\let\bgbox\relax\insertshorttitle%
+	% same space to the right as text margin
+	\hspace{0.5cm}%
+	% invisible rule to set headline height
+%	\rule{0pt}{10mm}%
+	\rule{0pt}{5mm}%
+}
diff --git a/wwustyle.sty b/wwustyle.sty
new file mode 100644
index 0000000..a22c407
--- /dev/null
+++ b/wwustyle.sty
@@ -0,0 +1,1150 @@
+\ProvidesPackage{wwustyle}
+% Package wwustyle
+%
+% A style file following the corporate design of the WWU
+% Muenster.
+%
+% Umgearbeitet fuer die Verwendung mit dem neuen Logo und neuen Hintergrundbildern.
+%   05.09.2017 Ulrich Grabowsky (gu)
+% Version: 1.9 (07.04.2014) Fixed overfull hboxes (Cudos to Matthias Kirchner for the fix)
+% Version: 1.8 (23.05.2013) Fixed some font warnings (Cudos to Dustin Demuth for the fix)
+% Version: 1.7 (07.09.2012) Updated english claim (living.knowledge)
+%                           distances
+% Version: 1.6 (07.09.2012) Added institutelogo{,small} for institute logos
+% Version: 1.3 (01.03.2012) Make compatible with tikzlibrary "external"
+% Version: 1.2 (30.01.2012) Added option "english" for english WWU claim
+% Version: 1.1 (04.03.2011) Added new version of maketitle command for
+%                           article, scrbook, etc classes in WWU style
+% Version: 1.0 (03.03.2011) Small adjustments for publication. Colors
+%                           are now globally defined and may be used in
+%                           user code.
+% Version: 0.5 (11.12.2010) Added options nopagenumbering and
+%                           halfpagenumbering
+% Version: 0.4 (23.08.2010) Bugfix: Date is now properly aligned.
+% Version: 0.3 (06.07.2010) The colors are now set via package
+%                           options, see Usage-section for details.
+%                           Furthermore, using the option "wide" one
+%                           can create presentations in 16:10 format.
+% Version: 0.2 (11.06.2010) One may now use a non-standard font size
+%                           in his document, the style does not get
+%                           corrupted anymore.
+%                           Added fontenc as requirement, some things
+%                           look better with it.
+%                           Removed institute from title page, looked too
+%                           crowded.
+% Version: 0.1 (13.02.2010) Initial version
+%
+% Usage:    Just put \usepackage{wwustyle} in the header of your tex
+%           file, thats all!
+%           You may reset the main color by using COLORCODE
+%           as an option to the package, where COLORCODE is the
+%           name of the color (in one word, all in small letters)
+%           as defined in the corporate design manual which is
+%           to be found on the web:
+%           http://www.wwu.de/corporate-design/
+%           Furthermore, if you choose the option "wide", you will get
+%           presentations in 16:10.
+% Remark:   This uses the MetaNormal font, which is to be found as
+%           a latex font on the homepage of the WWU and should be available
+%           for employees in the tex distribution on the WWU workstations.
+% Authors:  Sven Kaulmann, Martin Drohmann, Ulrich Grabowsky (04.09.2017)
+% Maintainer: Sven Kaulmann (sven.kaulmann at uni-muenster dot de)
+%           Ulrich Grabowsky (grabowsky@satzundsonders.de)
+
+%% ========= Required Packages =============
+% for the graphics
+\RequirePackage{tikz}
+\RequirePackage{xxcolor}
+
+\RequirePackage[T1]{fontenc}
+%% use MetaRoman Normal as the standard non-serif font
+\renewcommand{\sfdefault}{fMt}
+\newcommand{\skipexternalization}{%
+\ifdefined\tikzexternalize%
+\tikzset{external/export=false}%
+\else%
+%
+\fi%
+}
+\RequirePackage{microtype}
+
+%\definecolor{prinz}{RGB}{40,40,80}
+\definecolor{prinz}{RGB}{255,255,255}
+%\definecolor{pantoneblack7}{RGB}{62,62,59}
+\definecolor{pantoneblack7}{RGB}{102,102,102}
+\definecolor{white}{RGB}{230,230,230}
+\definecolor{wwublack}{RGB}{102,102,102}
+\definecolor{pantone312}{RGB}{0,157,209}    % Hellblau*
+\definecolor{pantone315}{RGB}{0,110,137}    % Dunkelblau*
+\definecolor{pantone3282}{RGB}{0,142,150}   % Dunkelgruen*
+\definecolor{pantone369}{RGB}{122,181,22}   % Hellgruen
+\definecolor{pantone390}{RGB}{177,200,0}    % Olivgruen
+\definecolor{pantone396}{RGB}{223,219,0}    % Blassgruen
+\definecolor{pantoneprozessyellow}{RGB}{255,237,0}
+
+% set pantone390 as the default main color
+% Geaendert in pantone312
+\newcommand*{\bg@maincolor}{pantone312}
+\newcommand*{\fn@maincolor}{pantone312}
+\newcommand*{\fn@motiv}{glocke}
+\newcommand*{\wedgeskip}{0pt}
+
+% set the main color
+% for the color definitions see
+% WWU corporate design manual
+% Schriftfarbe und Hintergrundfarbe muessen gesondert festgelegt
+% werden, da nicht fuer alle Farben Hintergrunddateien vorliegen.
+% #1: Schriftfarbe
+% #2: Hintergrundfarbe (Namensteil der Hintergrunddatei)
+\newcommand*{\set@wwu@maincolor}[2]{%
+    \renewcommand*{\bg@maincolor}{#1}%
+    \renewcommand*{\fn@maincolor}{#2}%
+    \def\reserved@a{#1}%
+    \def\reserved@b{#2}%
+    \ifx\reserved@a\reserved@b
+    \else
+        \PackageWarning{wwustyle}{Background for font color #1 not available. Background color changed to #2}{}%
+    \fi
+}
+\DeclareOption{pantoneblack7}{%
+    \set@wwu@maincolor{pantoneblack7}{pantone312}}
+\DeclareOption{pantone312}{% Bilder vorhanden
+    \set@wwu@maincolor{pantone312}{pantone312}}
+\DeclareOption{pantone315}{% Bilder vorhanden
+    \set@wwu@maincolor{pantone315}{pantone315}}
+\DeclareOption{pantone3282}{% Bilder vorhanden
+    \set@wwu@maincolor{pantone3282}{pantone3282}}
+\DeclareOption{pantone369}{%
+    \set@wwu@maincolor{pantone369}{pantone312}}
+\DeclareOption{pantone390}{%
+    \set@wwu@maincolor{pantone390}{pantone312}}
+\DeclareOption{pantone396}{%
+    \set@wwu@maincolor{pantone396}{pantone312}}
+\DeclareOption{pantoneprozessyellow}{%
+    \set@wwu@maincolor{pantoneprozessyellow}{pantone312}}
+
+% Das invertierte Titelbild erscheint lediglich auf
+% dem Haupttitel. Dort muss die Schrift dann
+% wei� werden.
+% \fn@invers dient zum Einlesen der entsprechenden Hintergrunddatei
+% \bg@invers schaltet die Farbe um. 04.09.2017 gu
+\newcommand*{\fn@invers}{}
+\newcommand*{\bg@invers}{}
+\newif\if@invers
+\DeclareOption{inverse}{%
+    \@inverstrue
+    \renewcommand*{\fn@invers}{invers}%
+    \renewcommand*{\bg@invers}{invers}%
+}
+
+% Drei Motive liegen vor:
+% Glockenturm des Schlosses,
+% Textkeil,
+% WWU-Schriftzug auf dem Prinzipalmarkt.
+\DeclareOption{belltower}{%
+    \renewcommand*{\fn@motiv}{glocke}%
+}
+\newif\if@wedge
+\@wedgefalse
+\DeclareOption{wedge}{%
+    \@wedgetrue
+    \renewcommand*{\fn@motiv}{textkeil}%
+    \renewcommand*{\wedgeskip}{35mm}%
+}
+\newcommand*{\p@markt}{prinzipalmarkt}
+\DeclareOption{prinz}{%
+    \renewcommand*{\fn@motiv}{prinzipalmarkt}%
+    \@inverstrue
+    \renewcommand*{\fn@invers}{invers}%
+    \renewcommand*{\bg@invers}{invers}%
+}
+
+
+% Als Voreinstellung fuer die Verwendung der Klasse article
+% verwenden wir DIN A4 und den Befehl \make@aiv@title.
+\newcommand*{\din@format}{a4paper}
+\newcommand*{\format@options}{}
+\newif\if@poster
+\@posterfalse
+\let\set@poster\relax
+\DeclareOption{a0poster}{%
+    \let\set@poster\set@poster@null
+}
+\newcommand*{\set@poster@null}{
+    \@postertrue
+    \renewcommand*{\din@format}{a0paper}%
+    \renewcommand*{\maketitle}{\make@poster@title}%
+    \def\posterLogoScale{3.5}%
+    \def\posterClaimScale{3.5}%
+    \def\posterLogoXShift{15cm}%
+    \def\posterLogoYShift{-7cm}%
+    \def\posterClaimXShift{1cm}%
+    \def\posterClaimYShift{2.8cm}%
+    \paperwidth=841mm
+    \paperheight=1189mm
+    \columnsep=20mm
+}
+\DeclareOption{a1poster}{%
+    \let\set@poster\set@poster@one
+}
+\newcommand*{\set@poster@one}{%
+    \@postertrue
+    \renewcommand*{\din@format}{a1paper}
+    \renewcommand*{\maketitle}{\make@poster@title}
+    \def\posterLogoScale{2.5}%
+    \def\posterClaimScale{2.5}%
+    \def\posterLogoXShift{11.3cm}%
+    \def\posterLogoYShift{-4.9cm}%
+    \def\posterClaimXShift{1cm}%
+    \def\posterClaimYShift{1.9cm}%
+    \paperwidth=594mm
+    \paperheight=841mm
+    \columnsep=20mm
+}
+
+% \claimPunktYShift hinzugefuegt, um die Unterlaengen in
+% den englischen Woertern auszugleichen. 22.08.2017 gu
+\newcommand{\claimTextWissen}{wissen}
+\newcommand{\claimTextLeben}{leben}
+\newcommand{\claimText}{wissenleben}
+\newcommand{\claimPunktXShift}{-5.5mm}
+\newcommand{\claimPunktYShift}{-0.8mm}
+\newcommand{\claimLebenXShift}{-1.8mm}
+\newcommand{\claimWWUXShift}{-0.47mm}
+\newcommand{\claimWWUYShift}{6.4mm}
+\newcommand{\claimWWUXXShift}{1.8666mm}
+\newcommand{\claimDeEn}{}
+\newcommand{\switchToEnglish}
+{
+\renewcommand{\claimTextWissen}{living}
+\renewcommand{\claimTextLeben}{knowledge}
+\newcommand{\claimText}{livingknowledge}
+\renewcommand{\claimPunktXShift}{-6.2mm}
+\renewcommand{\claimPunktYShift}{-0.6mm}
+\renewcommand{\claimLebenXShift}{0.5mm}
+\renewcommand{\claimWWUYShift}{6.9mm}
+\renewcommand{\claimWWUXShift}{0mm}
+\renewcommand{\claimWWUXXShift}{2.3366mm}
+\renewcommand{\claimDeEn}{-en}
+}
+\DeclareOption{english}{
+\switchToEnglish
+}
+\def\claimSidebarFn{\includegraphics{wwu-claim-sidebar\claimDeEn}}
+\newcommand{\claimMainFn}{\includegraphics{wwu-claim\claimDeEn}}
+\newcommand{\claimTitleFn}{\includegraphics{wwu-claim-title\claimDeEn}}
+\newcommand{\logoHeadlineFn}{\includegraphics{wwu-logo-headline}}
+\newcommand{\logoTitleFn}{\includegraphics{wwu-logo-title}}
+\newcommand{\logoTitleSmallFn}{\includegraphics{wwu-logo-title-small}}
+\newcommand{\claimSidebar}{\begin{colormixin}{25!white}\claim{1.25}{90}{pantoneblack7}
+\end{colormixin}}
+% Beim Textkeil wird der gesamte Hintergrund hinterlegt,
+% andernfalls bleibt der Streifen unten frei.
+\newcommand{\claimMain}{%
+    \if@wedge
+        \if@invers
+            \claim{0.5}{0}{white}%
+        \else
+            \claim{0.5}{0}{grey}%
+        \fi
+    \else
+        \claim{0.5}{0}{grey}%
+    \fi
+    }
+\newcommand{\claimTitle}{\claim{1.05}{0}{grey}}
+\newcommand{\logoHeadline}{\wwulogo{0.3}} % Groesse veraendert. 22.08.2017 gu
+\newcommand{\logoTitle}{\wwulogo{1}}
+%\newcommand{\logoTitle}{\wwulogo{1.019}} % Diese Gr��e entspricht dem Original 1:1
+\newcommand{\logoAzPoster}{\wwulogo{3.5}}
+\newcommand{\logoAiPoster}{\wwulogo{4.12}}
+\newcommand{\logoTitleSmall}{\csname wwulogo\bg@invers\endcsname{0.45}} % Groesse veraendert. 22.08.2017 gu hier auf invers schalten
+\DeclareOption{fast}{
+\renewcommand{\claimSidebar}{\claimSidebarFn}
+\renewcommand{\claimMain}{\claimMainFn}
+\renewcommand{\claimTitle}{\claimTitleFn}
+\renewcommand{\logoHeadline}{\logoHeadlineFn}
+\renewcommand{\logoTitle}{\logoTitleFn}
+\renewcommand{\logoTitleSmall}{\logoTitleSmallFn}
+}
+
+\newcommand{\wwupreparefastmode}{%
+\begin{frame}
+\tikzsetnextfilename{wwu-claim-sidebar}
+\claimSidebar
+\tikzsetnextfilename{wwu-claim}
+\claimMain
+\tikzsetnextfilename{wwu-claim-title}
+\claimTitle
+\tikzsetnextfilename{wwu-logo-headline}
+\wwulogo{0.44}
+\tikzsetnextfilename{wwu-logo-title-small}
+\logoTitleSmall
+\tikzsetnextfilename{wwu-logo-title}
+\logoTitle
+\switchToEnglish
+\tikzsetnextfilename{wwu-claim-sidebar-en}
+\claimSidebar
+\tikzsetnextfilename{wwu-claim-en}
+\claimMain
+\tikzsetnextfilename{wwu-claim-title-en}
+\claimTitle
+\end{frame}%
+} %% end of wwupreparefastmode
+
+
+% % create a presentation in 16 to 10 format
+\DeclareOption{wide}{%
+  \geometry{paperwidth=15.36cm,paperheight=9.6cm}
+}
+\ProcessOptions\relax
+
+% Die Farboptionen definieren zunaechst \bg@maincolor,
+% dessen Farbangabe hier zugewiesen wird.
+\definecolor{maincolor}{named}{\bg@maincolor}
+
+
+%% ========= Images and Graphics ============
+
+% the claim as a tikzpicture, it uses two parameters:
+%% \parameter 1 the scale
+%% \parameter 2 the rotation
+%% #3 Farbe
+% Schriftgroesse und Groesse des Punkts geaendert. 22.08.2017 gu
+% Um drittes Argment (Farbe) ergaenzt. 04.09.2017 gu
+
+
+\newcommand*{\bgbox}[1]{\colorbox{maincolor}{#1}}
+
+\newcommand{\claim}[3]{%
+    \if@poster
+    \strut\hskip\posterClaimXShift\rlap{\includegraphics[scale=#1]{\claimText#3}}%
+    \else
+    \strut\hskip-16mm\rlap{\includegraphics[scale=#1]{\claimText#3}}%
+    \fi
+}
+
+\newcommand{\claimALT}[3]{
+\begin{tikzpicture}[scale=#1, node distance=9.9mm, rotate=#2, transform shape]
+  %% wissen
+  \node (wissen)  {
+    \color{#3}
+    \fontsize{2.8mm}{1mm}\selectfont
+    \usefont{T1}{fMt}{b}{n}
+    \claimTextWissen *
+  };
+  %% Punkt
+  \node [circle,
+    minimum width=0.45mm,
+    inner sep=0,
+    fill=#3,
+    yshift=\claimPunktYShift,
+    xshift=\claimPunktXShift,
+    right of=wissen] (Punkt) {};
+  %% leben
+  \node[
+    xshift=\claimLebenXShift,
+    right of=wissen] (leben) {
+      \color{#3}
+      \fontsize{2.8mm}{1mm}\selectfont
+      \usefont{T1}{fMt}{b}{n}
+      \claimTextLeben
+    };
+
+% WWU M�nster unterhalb von wissen.leben entfernt. 22.08.2017 gu
+% %% WWU
+% \node[
+%   xshift=\claimWWUXShift,
+%   yshift=\claimWWUYShift,
+%   below of=wissen] (WWU) {\textcolor{pantoneblack7!50}{\fontsize{3.8mm}{1mm}\selectfont
+%       \usefont{T1}{fMt}{m}{n}
+%       WWU}};
+% %% M�nster
+% \node[
+%   xshift=\claimWWUXXShift,
+%   right of=WWU] {\textcolor{pantoneblack7!50}{\fontsize{3.8mm}{1mm}\selectfont
+%       \usefont{T1}{fMt}{m}{n}
+%       M\"unster}};
+\end{tikzpicture}
+} % end of newcommand
+
+%% the logo as tikzpicture, is takes one parameter
+%% \parameter 1 the scale
+%%% In das Logo von 2017 umgearbeitet: Balkenstaerke und Gesamthoehe
+%%% leicht veraendert, Schriftzug angepasst.
+%%% Eine Skalierung von 1.02 ergibt die Originalgroesse des neuen Logos.
+%%% 22.08.2017 gu
+\newcommand{\wwulogo}[1]{\wwu@logo{#1}{wwublack}}
+\newcommand{\wwulogoinvers}[1]{\wwu@logo{#1}{white}}
+\newcommand{\wwulogoposter}[1]{\wwu@logo{#1}{white}}
+
+\newcommand*{\wwu@logo}[2]{%
+  \begin{tikzpicture}[
+    node distance=1.866666666mm,
+    transform shape,
+    scale=#1]
+    %scale=1.02]
+    \tikzstyle{every node}=[inner sep=0mm, fill=#2]
+    \tikzstyle{mytextnode}=[inner sep=0mm, below left of=bar,fill=none,
+    color=#2]
+    % the first bar
+  \node[rectangle,
+             color=#2,
+             minimum height=1.6mm,
+             minimum width=0.7mm] (bar)  {};
+  % the second bar
+  \node[below of = bar,
+            rectangle,
+             color=#2,
+            minimum height=0.7mm,
+            minimum width=2.6mm,
+            yshift=0.26mm] {};
+  % the third bar
+  \node[below of = bar,
+             rectangle,
+             color=#2,
+             minimum height=1.6mm,
+             minimum width=4.5mm,
+             yshift=-3.2mm] {};
+  % the fourth bar
+  \node[below left of=bar,
+            rectangle,
+             color=#2,
+            minimum height=1.5mm,
+            minimum width=17.8mm,
+            yshift=-7mm,
+            xshift=-12.1mm] (fourth) {};
+  % the fifth bar
+  \node[below left of=bar,
+             rectangle,
+             color=#2,
+             minimum height=1.6mm,
+             minimum width=17.8mm,
+             yshift=-7mm,
+             xshift=14.85mm] (fifth) {};
+  % the sixth bar
+  \node[below of=bar,
+             rectangle,
+             color=#2,
+             minimum height=0.7mm,
+             minimum width=44.75mm,
+             yshift=-10.7mm,
+             xshift=0.05mm] {};
+  % the  seventh bar
+  \node[below of=bar,
+             rectangle,
+             color=#2,
+             minimum height=1.6mm,
+             minimum width=44.75mm,
+             %yshift=-17.5mm,
+             yshift=-17.8mm,
+             xshift=0.05mm] {};
+  \node[mytextnode,
+  yshift=-9.9mm,
+  xshift=40mm] {
+    \fontsize{10.6mm}{1mm}\selectfont
+    \usefont{T1}{fMt}{b}{sc}
+    \textls[15]{WWU}
+  };
+  \node[mytextnode,
+  yshift=-17mm,
+  xshift=40.1mm] {
+    \fontsize{4.3mm}{1mm}\selectfont
+    \usefont{T1}{fMt}{m}{n}
+    \textls[15]{M\spatium \"U\spatium N\spatium S\spatium T\spatium E\spatium R}
+  };
+
+  \end{tikzpicture}
+} % end of the logo
+
+%
+\newcommand*{\spatium}{\kern0.23em}
+\newbox\bg@title
+\def\hintergrundbild{\setbox\bg@title\hbox{\includegraphics[height=\paperheight]{\fn@maincolor\fn@motiv\fn@invers.pdf}}}%
+\AtBeginDocument{\hintergrundbild}
+
+\@ifclassloaded{beamer}{%
+
+% define the institute logo command
+\newcommand{\@institutelogo}{}
+\newcommand{\institutelogo}[1]{%
+  \renewcommand{\@institutelogo}{#1}
+}
+
+\newcommand{\@institutelogosmall}{}
+\newcommand{\institutelogosmall}[1]{%
+  \renewcommand{\@institutelogosmall}{#1}
+}
+% use MetaNormal Roman everywhere
+\RequirePackage{meta}
+
+%% ============ Margins, spacing, etc ============
+\setbeamersize{text margin right=2mm, text margin left=7.50mm}  % text margin
+% switch of the navigation symbols
+\setbeamertemplate{navigation symbols}{}
+% set the right side width so the logo fits there
+\setbeamersize{sidebar width right=1.1cm}
+\setbeamersize{sidebar width left=-.25cm}
+
+
+% by default give only current page number
+\definecolor{currentframenumbercolor}{RGB}{62,62,59}
+\definecolor{slashcolor}{RGB}{255,255,255}
+\definecolor{totalframenumbercolor}{RGB}{255,255,255}
+
+
+% %% ========= Possible options for beamer ==============
+% % decide, whether the page number should show up
+% \DeclareOption{nopagenumbering}{
+% \definecolor{currentframenumbercolor}{RGB}{255,255,255}
+% \definecolor{slashcolor}{RGB}{255,255,255}
+% \definecolor{totalframenumbercolor}{RGB}{255,255,255}
+% }
+% \DeclareOption{fullpagenumbering}{
+% \definecolor{currentframenumbercolor}{RGB}{62,62,59}
+% \definecolor{slashcolor}{RGB}{62,62,59}
+% \definecolor{totalframenumbercolor}{RGB}{62,62,59}
+% }
+% \ProcessOptions\relax
+
+
+
+%% ============ Color definitions for beamer ================
+
+% colors to be used
+\definecolor{text-grey}{rgb}{0.45, 0.45, 0.45} % grey text on white background
+\definecolor{fu-blue}{RGB}{0, 51, 102} % blue text
+\definecolor{fu-green}{RGB}{153, 204, 0} % green text
+\definecolor{fu-red}{RGB}{204, 0, 0} % red text (used by \alert)
+
+
+
+%% ================= Redefinition of Styles ============
+% colors
+\usecolortheme{lily}
+\setbeamercolor*{normal text}{fg=pantoneblack7,bg=white}
+\setbeamercolor*{alerted text}{fg=fu-red}
+\setbeamercolor*{example text}{fg=fu-green}
+\setbeamercolor*{structure}{fg=maincolor}
+
+%\setbeamercolor*{block title}{fg=white,bg=maincolor}
+\setbeamercolor*{block title}{fg=pantoneblack7,bg=}
+\setbeamercolor*{block title alerted}{fg=white,bg=fu-red}
+\setbeamercolor*{block title example}{fg=white,bg=fu-green}
+
+\setbeamercolor*{block body}{bg=}
+\setbeamercolor*{block body alerted}{bg=fu-red!10}
+\setbeamercolor*{block body example}{bg=fu-green!10}
+
+\setbeamercolor{bibliography entry author}{fg=fu-blue}
+% TODO: this doesn't work at all:
+\setbeamercolor{bibliography entry journal}{fg=text-grey}
+
+
+% Die Einstellungen fuer Listen sind anscheinend nur durch
+% ein Mischmasch von Beamer- und LaTeX-Code einzustellen.
+% gu 06.09.2017
+\setbeamercolor{item}{fg=pantoneblack7}
+\setbeamertemplate{itemize/enumerate body begin}{\small}
+\setbeamertemplate{itemize/enumerate subbody begin}{\small}
+\setbeamertemplate{itemize/enumerate subsubbody begin}{\small}
+\defbeamertemplate{itemize item}{dash}{--}
+\defbeamertemplate{itemize subitem}{dash}{--}
+\defbeamertemplate{itemize subsubitem}{dash}{--}
+
+\defbeamertemplate{enumerate item}{dash}
+{
+  \hbox{%
+    \leavevmode\hbox to2.25ex{%
+      \hfil%
+      \insertenumlabel%
+      \hfil}%
+  }%
+}
+[action]
+{\setbeamerfont{item projected}{size=\normalsize}}
+
+\defbeamertemplate{enumerate subitem}{dash}
+{
+  \hbox{%
+    \hbox to2.25ex{%
+      \hfil%
+      \insertsubenumlabel%
+      \hfil}%
+  }%
+}
+
+\defbeamertemplate{enumerate subsubitem}{dash}
+{
+  \hbox{%
+    \hbox to2.25ex{%
+      \hfil%
+      \insertsubsubenumlabel%
+      \hfil}%
+  }%
+}
+
+
+\setbeamertemplate{items}[dash]
+
+\leftmargini=4mm
+\leftmarginii=4mm
+\leftmarginiii=4mm
+\labelwidth=3mm
+\labelsep=1mm
+
+% Die folgenden Definitionen erreichen das gewuenschte Ziel:
+% Verschachtelte \item haben nun denselben Durchschuss.
+% (Logisch ist das nicht.)
+\def\@listii {\leftmargin\leftmarginii
+              \labelwidth\leftmarginii
+              \advance\labelwidth-\labelsep
+              \topsep    0pt
+              \parsep    0pt
+              \itemsep   \topsep}
+\def\@listiii{\leftmargin\leftmarginiii
+              \labelwidth\leftmarginiii
+              \advance\labelwidth-\labelsep
+              \topsep    4pt
+              \parsep    0pt
+              \partopsep 0pt
+              \itemsep   \topsep}
+
+% sidebar
+\setbeamertemplate{sidebar right}{
+  {
+% Spruch an der Seite entfernt. 22.08.2017 gu
+%  \skipexternalization
+%  \begin{tikzpicture}[remember picture, overlay]
+%    \node[anchor=east,inner sep=0,yshift=-2.25cm,xshift=0.3mm] (sidebarclaim) at (current page.east) {
+%       \claimSidebar
+%    };
+%  \end{tikzpicture}
+  }
+}
+
+% frame title
+\setbeamertemplate{frametitle}{%
+    \vskip4mm
+  \fontsize{14pt}{1pt}
+  \selectfont
+    %\hskip-2.4mm
+    \color{maincolor}
+    \begin{minipage}[b][20pt]{\textwidth}
+      %\textgreater\,
+      \textbf{\insertframetitle}%
+    \end{minipage}
+    \vskip-10mm
+}
+
+% headline
+\setbeamertemplate{headline}{
+  \fontsize{6pt}{1pt}
+  \selectfont
+  {
+  \skipexternalization
+  \begin{tikzpicture}[remember picture, overlay]
+    \node[xshift=0.54cm,yshift=-1.21cm,
+    anchor=south west,
+    inner sep=0] at (current page.north west) {\logoHeadline};
+    \node[xshift=4.76cm,yshift=-1.21cm,
+    anchor=south west,
+    inner sep=0] at (current page.north west) {\@institutelogosmall};
+  \end{tikzpicture}
+  }
+  \hfill
+  \textbf{\color{maincolor}\let\bgbox\relax\insertshorttitle}%
+  \hskip2mm %title on the right
+  \parbox[b]{10mm}{
+    % Der Strich darf hier nur optisch entfallen, denn durch ihn reguliert
+    % sich zugleich die Hoehe der Kopfzeile.
+    % Die Seitenzahl entfaellt. 22.08.2017 gu
+    {\color{maincolor}\rule{0pt}{12mm} }
+%   \hskip1mm    \textcolor{currentframenumbercolor}{\insertframenumber}
+%    \textcolor{slashcolor}{/}\textcolor{totalframenumbercolor}{\inserttotalframenumber}
+  }
+}% end headline
+% title page
+% Der Hintergrund fuer die Titelseite ist in \bg@title abgelegt.
+% Diese Box wird auf der ersten Seite ausgegeben und ist
+% anschliessend leer. 23.08.2017 gu
+\setbeamertemplate{background canvas}{%
+    \hbox to \paperwidth{\hss\box\bg@title}%
+}
+\setbeamertemplate{title page}{
+ \fontsize{11pt}{1pt}
+  \selectfont
+  %% set the title and the author
+  \setlength{\unitlength}{1mm}
+  \begin{picture}(0,15)
+    \put(0,8){\parbox[c]{10.75cm}{
+        \fontsize{16pt}{20pt}
+        \selectfont
+        \edef\curr@fnt@color{maincolor}%
+        \if@invers
+            \edef\curr@fnt@color{white}%
+        \fi
+        % Beim Motiv Prinzipalmarkt auf die Farbe `prinz' umschalten.
+        \ifx\p@markt\fn@motiv
+            \edef\curr@fnt@color{prinz}%
+        \fi
+        % Bei inversem Titelbild auf wei�e Schrift umschalten.
+        % Der Untertitel (s.u.) steht dann besser in halbfett.
+        \color{\curr@fnt@color}
+        {\bfseries
+            \inserttitle
+        }
+        \par
+        \vskip2mm
+        \fontsize{8pt}{10pt}
+        \selectfont
+        \insertsubtitle\par
+        \insertauthor
+        \par
+      }
+    }
+    \linespread{0.9}
+    {
+    \skipexternalization
+    \begin{tikzpicture}[overlay,remember picture]
+%      \node (authornode) [yshift=0.5cm, inner sep=0,text width=0.33\linewidth, text centered, anchor=base] at (current page.south)
+%     {\color{pantoneblack7}
+%       \fontsize{8pt}{14pt}
+%       \selectfont
+%       %\insertauthor
+%       };
+% Anstelle des Datums steht hier nunmehr das Institutslogo. 22.08.2017 gu
+% Ich habe es in eine \llap{} gepackt, weil nicht vorhersehbar ist,
+% was dort erscheinen soll.
+      \node (datenode) [yshift=0.7cm,xshift=-1cm, inner sep=0, anchor=base] at (current page.south east)
+      {\color{pantoneblack7}%
+      \if@wedge
+            \if@invers
+                \color{white}%
+            \fi
+        \fi
+       \llap{\fontsize{6pt}{8pt}\selectfont\@institutelogo\hskip\wedgeskip}%
+       };
+   \end{tikzpicture}
+   }
+  \end{picture}
+  {
+  \skipexternalization
+  \begin{tikzpicture}[remember picture,overlay]
+% Die Hintergrundbalken gibt es nicht mehr. 22.08.2017 gu
+    %% the 1. rectangle
+%    \node [xshift=-0.1cm,yshift=-1.95cm] at (current page.north east)
+%    [rectangle,
+%    inner sep=0mm,
+%    minimum height=0.45cm,
+%    minimum width=0.19cm,
+%    fill=maincolor
+%    ] {};
+    %% the 2. rectangle
+%    \node [xshift=-0.27cm,yshift=-2.49cm] at (current page.north east)
+%    [rectangle,
+%    inner sep=0mm,
+%    minimum height=0.21cm,
+%    minimum width=0.53cm,
+%    fill=maincolor
+%    ] {};
+    %% the 3. rectangle
+%    \node [xshift=-0.415cm,yshift=-3.54cm] (thirdrec) at (current page.north east)
+%    [rectangle,
+%    inner sep=0,
+%    minimum height=0.45cm,
+%    minimum width=0.85cm,
+%    fill=maincolor
+%    ] {};
+    %% the 4. rectangle
+%    \node[xshift=-1.15cm, yshift=-0.46cm] (helpernode4) at (thirdrec.south){};
+%    \fill[maincolor] (current page.west)+(0,0.12cm)
+%    rectangle (helpernode4);
+    %% the 5. rectangle
+%    \node[yshift=-0.71cm] (helpernode5) at (current page.east){};
+%    \fill[maincolor] (current page.west)+(0,-0.94cm)
+%    rectangle (helpernode5);
+    %% the 6. rectangle
+%    \node[yshift=-3.08cm] (helpernode6) at (current page.east){};
+%    \fill[maincolor] (current page.west)++(0,-2.63cm)
+%    rectangle (helpernode6);
+    %% the claim
+    \node [xshift=1.3cm,yshift=0.8cm] at (current page.south west)
+    (claim) {\claimMain};
+% Der Autor steht unten auf der Seite.
+    \node [xshift=2.72cm,yshift=0.8cm] at (current page.south west)
+    (claim) {
+        \fontsize{6pt}{8pt}
+        \selectfont
+        %\insertauthor
+        };
+    %% the logo
+%    \node [xshift=6.39cm,yshift=-1cm,anchor=west] at (current page.north west)
+%    {\@institutelogo};
+% Das Logo steht oben.
+    \node [xshift=0.39cm,yshift=-1cm,anchor=west] at (current page.north west)
+    {\logoTitleSmall};
+  \end{tikzpicture}
+  }
+} %end title page
+
+% footline
+% Umgearbeitet in die neue Vorlage: Ein Strich statt zwei
+% Strichen, Seitenzahl. 22.08.2017 gu
+\setbeamertemplate{footline}{%
+  \fontsize{6pt}{1pt}%
+  \selectfont%
+  \vskip4pt%
+  \color{maincolor}%
+  \rule{\textwidth}{0.8pt}% horizontal line
+  \vskip4mm%
+  \color{black}%
+  \hspace{5mm}%
+  \textcolor{wwublack}{\let\bgbox\relax\insertshortauthor}\hfill\textcolor{maincolor}{\fontsize{9pt}{12pt}\selectfont\textbf{\thepage}}\hspace{5mm}\strut%
+  \vskip4mm%
+  }% end footline
+} % true-branch of ifclassloaded
+{%
+
+% define the institute logo command
+\newcommand{\@institutelogo}{}
+\newcommand{\institutelogo}[1]{%
+  \renewcommand{\@institutelogo}{#1}
+}
+
+\providecommand{\@subtitle}{}
+\providecommand{\subtitle}[1]{%
+  \renewcommand{\@subtitle}{#1}
+}
+
+\set@poster
+\if@poster
+\else
+% force DIN-A4 paper
+    \RequirePackage{geometry}
+    \geometry{a4paper}
+    \renewcommand*{\maketitle}{\make@aiv@title}
+\fi
+
+\newcommand{\make@aiv@title}{ %replace standard LaTeX-command
+\begin{titlepage}
+ {
+ \sf
+ \setlength{\leftmargin}{0mm}%
+ \setlength{\unitlength}{1mm}
+ \skipexternalization
+ \begin{tikzpicture}[remember picture,overlay]
+%  \node [yshift=-0.8mm,xshift=-0.35mm]at (current page.center) {\includegraphics[width=21cm]{seite_einzeln}};
+    %% the logo
+    \node [xshift=5.5cm,yshift=-2.5cm] at (current page.north west)
+    {\logoTitle};
+    %% the title
+    \node (greaternode) [xshift=1.4cm,yshift=-7.86cm,anchor=base west] at (current page.north west)
+    [inner sep=0mm] {
+      \fontsize{26pt}{11pt}\selectfont\color{maincolor}};%\textgreater};
+    \node (titlenode) [xshift=1.85cm,yshift=-7.2cm,anchor=base west] at (current page.north west)
+    [inner sep=0mm,text width=16.45cm] {
+      \color{maincolor}
+      \fontsize{26pt}{28pt}\selectfont\textls[15]{\llap{> }\@title}\par
+    };
+    \node [xshift=1.85cm,yshift=-10.65cm, anchor=south west] at (current page.north west)
+    [inner sep=0mm,text width=16.45cm, minimum width=16.45cm] {
+      \color{pantoneblack7}
+      \fontsize{19.5pt}{21pt}\selectfont
+      \@subtitle\par
+    };
+    %% the 1. rectangle
+    \node [yshift=-5.2cm,anchor=north east] at (current page.north east)
+    [rectangle,
+    inner sep=0mm,
+    minimum height=1.4cm,
+    minimum width=0.45cm,
+    fill=maincolor
+    ] {};
+    %% the 2. rectangle
+    \node [yshift=-7.2cm,anchor=north east] at (current page.north east)
+    [rectangle,
+    inner sep=0mm,
+    minimum height=0.7cm,
+    minimum width=1.25cm,
+    fill=maincolor
+    ] {};
+    %% the 3. rectangle
+    \node [yshift=-10.5cm,anchor=north east] (thirdrec) at (current page.north east)
+    [rectangle,
+    inner sep=0,
+    minimum height=1.4cm,
+    minimum width=2.2cm,
+    fill=maincolor
+    ] {};
+    %% the 4. rectangle
+    \node [yshift=-13.2cm, anchor=north west] (fourthrec) at (current
+    page.north west)
+    [rectangle,
+    inner sep=0,
+    minimum height=1.4cm,
+    minimum width=16.450cm,
+    fill=maincolor
+    ] {};
+    %% the 5. rectangle
+    \node [yshift=-17.2cm, anchor=north west] (fifthrec) at (current
+    page.north west)
+    [rectangle,
+    inner sep=0,
+    minimum height=0.7cm,
+    minimum width=21cm,
+    fill=maincolor
+    ] {};
+    %% the 6. rectangle
+    \node [yshift=-23.1cm, anchor=north west] (sixthrec) at (current
+    page.north west)
+    [rectangle,
+    inner sep=0,
+    minimum height=1.4cm,
+    minimum width=21cm,
+    fill=maincolor
+    ] {};
+    %% the claim
+    \node [xshift=1.8cm,yshift=1.4cm, inner sep=0, anchor=south west] at (current page.south west)
+    (claim) {\claimTitle};
+  \end{tikzpicture}
+  }
+\end{titlepage}
+}
+
+\newcommand{\make@poster@title}{ %replace standard LaTeX-command
+ {%
+ \sf
+ \setlength{\unitlength}{1mm}%
+ \skipexternalization
+ \begin{tikzpicture}[remember picture,overlay]
+    %% Querbalken oben
+    \node [anchor=north west] at (current page.north west)
+    [rectangle,
+    inner sep=0mm,
+    minimum height=0.12\paperheight,
+    minimum width=\paperwidth,
+    fill=maincolor
+    ] {};
+    % Querbalken unten
+    \node [yshift=-0.94\paperheight, anchor=north west] at (current page.north west)
+    [rectangle,
+    inner sep=0mm,
+    minimum height=0.06\paperheight,
+    minimum width=\paperwidth,
+    fill=maincolor
+    ] {};
+    \node [xshift=\posterLogoXShift,yshift=\posterLogoYShift] at (current page.north west)
+    {\wwulogoposter{\posterLogoScale}};
+    %% the claim
+    \node [xshift=\posterClaimXShift, yshift=\posterClaimYShift, inner sep=0, anchor=south west] at (current page.south west)
+    (claim) {\claim{\posterClaimScale}{0}{white}};
+  \end{tikzpicture}%
+  }\ignorespaces
+}
+
+\if@poster
+    % Die Angaben fuer Schriftgroessen etc. sind hier bewusst
+    % direkt eingebunden.
+    \pdfpageheight=\paperheight
+    \pdfpagewidth=\paperwidth
+    \textheight=0.77\paperheight
+    \topmargin=0.10\paperheight
+    \oddsidemargin=\dimexpr \columnsep -1in\relax
+    \evensidemargin=\oddsidemargin
+    \textwidth=\dimexpr\paperwidth-2\columnsep\relax
+
+    \renewcommand{\rmdefault}{fMt}
+
+    \leftmargini=20pt
+    \renewcommand\normalsize{%
+       \@setfontsize\normalsize{20pt}{24pt}
+       \abovedisplayskip 20\p@ \@plus6\p@ \@minus5\p@
+       \abovedisplayshortskip \z@ \@plus9\p@
+       \belowdisplayshortskip 12\p@ \@plus9\p@ \@minus3\p@
+       \belowdisplayskip \abovedisplayskip
+       \let\@listi\@listI}
+    \normalsize
+    \renewcommand\small{%
+       \@setfontsize\small{16pt}{19pt}
+       \abovedisplayskip 14\p@ \@plus5\p@ \@minus4\p@
+       \abovedisplayshortskip \z@ \@plus4\p@
+       \belowdisplayshortskip 8\p@ \@plus4\p@ \@minus3\p@
+       \def\@listi{\leftmargin\leftmargini
+                   \topsep 4\p@ \@plus2\p@ \@minus2\p@
+                   \parsep 2\p@ \@plus\p@ \@minus\p@
+                   \itemsep \parsep}%
+       \belowdisplayskip \abovedisplayskip
+    }
+    \renewcommand\footnotesize{%
+       \@setfontsize\footnotesize{14pt}{16.8pt}%
+       \abovedisplayskip 6\p@ \@plus2\p@ \@minus4\p@
+       \abovedisplayshortskip \z@ \@plus\p@
+       \belowdisplayshortskip 3\p@ \@plus\p@ \@minus2\p@
+       \def\@listi{\leftmargin\leftmargini
+                   \topsep 3\p@ \@plus\p@ \@minus\p@
+                   \parsep 2\p@ \@plus\p@ \@minus\p@
+                   \itemsep \parsep}%
+       \belowdisplayskip \abovedisplayskip
+    }
+    \renewcommand\scriptsize{\@setfontsize\scriptsize\@viipt\@viiipt}
+    \renewcommand\tiny{\@setfontsize\tiny\@vpt\@vipt}
+    \renewcommand\large{\@setfontsize\large{40pt}{48pt}} % author
+    \renewcommand\Large{\@setfontsize\Large{60pt}{72pt}} % section
+    \renewcommand\LARGE{\@setfontsize\LARGE{70pt}{84pt}}
+    \renewcommand\huge{\@setfontsize\huge{75pt}{90pt}}
+    \renewcommand\Huge{\@setfontsize\Huge{80pt}{96pt}} % subcect
+    \setlength\parindent{0pt}
+    \setlength\parskip{3mm plus 0.5mm minus 0.5mm}
+    \setlength\smallskipamount{3\p@ \@plus 1\p@ \@minus 1\p@}
+    \setlength\medskipamount{6\p@ \@plus 2\p@ \@minus 2\p@}
+    \setlength\bigskipamount{12\p@ \@plus 4\p@ \@minus 4\p@}
+    \setlength\headheight{12\p@}
+    \setlength\headsep   {25\p@}
+    \setlength\topskip   {10\p@}
+    \setlength\footskip{30\p@}
+    \if@compatibility \setlength\maxdepth{4\p@} \else
+    \setlength\maxdepth{.5\topskip} \fi
+    \if@twocolumn
+     \setlength\marginparsep {10\p@}
+    \else
+      \setlength\marginparsep{11\p@}
+    \fi
+    \setlength\marginparpush{5\p@}
+    \setlength\footnotesep{6.65\p@}
+    \setlength{\skip\footins}{9\p@ \@plus 4\p@ \@minus 2\p@}
+    \setlength\floatsep    {12\p@ \@plus 2\p@ \@minus 2\p@}
+    \setlength\textfloatsep{20\p@ \@plus 2\p@ \@minus 4\p@}
+    \setlength\intextsep   {12\p@ \@plus 2\p@ \@minus 2\p@}
+    \setlength\dblfloatsep    {12\p@ \@plus 2\p@ \@minus 2\p@}
+    \setlength\dbltextfloatsep{20\p@ \@plus 2\p@ \@minus 4\p@}
+    \setlength\@fptop{0\p@ \@plus 1fil}
+    \setlength\@fpsep{8\p@ \@plus 2fil}
+    \setlength\@fpbot{0\p@ \@plus 1fil}
+    \setlength\@dblfptop{0\p@ \@plus 1fil}
+    \setlength\@dblfpsep{8\p@ \@plus 2fil}
+    \setlength\@dblfpbot{0\p@ \@plus 1fil}
+    \setlength\partopsep{2\p@ \@plus 1\p@ \@minus 1\p@}
+    \def\@listi{\leftmargin\leftmargini
+                \parsep 4\p@ \@plus2\p@ \@minus\p@
+                \topsep 8\p@ \@plus2\p@ \@minus4\p@
+                \itemsep4\p@ \@plus2\p@ \@minus\p@}
+    \let\@listI\@listi
+    \@listi
+    \def\@listii {\leftmargin\leftmarginii
+                  \labelwidth\leftmarginii
+                  \advance\labelwidth-\labelsep
+                  \topsep    4\p@ \@plus2\p@ \@minus\p@
+                  \parsep    2\p@ \@plus\p@  \@minus\p@
+                  \itemsep   \parsep}
+    \def\@listiii{\leftmargin\leftmarginiii
+                  \labelwidth\leftmarginiii
+                  \advance\labelwidth-\labelsep
+                  \topsep    2\p@ \@plus\p@\@minus\p@
+                  \parsep    \z@
+                  \partopsep \p@ \@plus\z@ \@minus\p@
+                  \itemsep   \topsep}
+    \def\@listiv {\leftmargin\leftmarginiv
+                  \labelwidth\leftmarginiv
+                  \advance\labelwidth-\labelsep}
+    \def\@listv  {\leftmargin\leftmarginv
+                  \labelwidth\leftmarginv
+                  \advance\labelwidth-\labelsep}
+    \def\@listvi {\leftmargin\leftmarginvi
+                  \labelwidth\leftmarginvi
+                  \advance\labelwidth-\labelsep}
+
+    \renewcommand\section{\@startsection {section}{1}{\z@}%
+                                       {-2.5ex \@plus -1ex \@minus -.2ex}%
+                                       {.3ex \@plus.2ex}%
+                                       {\normalfont\Large\color{maincolor}}}
+    \renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
+                                         {-2.25ex\@plus -1ex \@minus -.2ex}%
+                                         {.3ex \@plus .2ex}%
+                                         {\normalfont\large\color{maincolor}}}
+    \renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
+                                         {-2.25ex\@plus -1ex \@minus -.2ex}%
+                                         {.3ex \@plus .2ex}%
+                                         {\normalfont\normalsize\color{maincolor}}}
+    \renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
+                                        {2.25ex \@plus1ex \@minus.2ex}%
+                                        {-1em}%
+                                        {\normalfont\normalsize\bfseries}}
+    \renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
+                                           {3.25ex \@plus1ex \@minus .2ex}%
+                                           {-1em}%
+                                          {\normalfont\normalsize\color{maincolor}}}
+
+
+    \newcommand*{\postersubject}[1]{{\Huge\color{maincolor} #1\par}\vskip2\baselineskip}
+
+    \newcommand*{\posterauthor}[1]{{\large #1\par}\vskip1\baselineskip}
+
+    % posterbox entspricht im wesentlichen \fbox.
+    \newbox\@posterfbox
+
+    \newcommand{\posterbox}[1]{%
+        \fboxsep=10mm
+        \fboxrule=1pt
+        \setbox\@posterfbox\vbox\bgroup%
+        \hsize=\linewidth
+        \advance\hsize by -2\fboxsep
+        \advance\hsize by -2\fboxrule
+        #1\par
+    }
+
+    \def\endposterbox{\egroup{\posterfbox{\box\@posterfbox}}}
+
+    \long\def\posterfbox#1{%
+      \leavevmode
+      \setbox\@tempboxa\hbox{%
+        \color@begingroup
+          \kern\fboxsep{#1}\kern\fboxsep
+        \color@endgroup}%
+      \poster@frameb@x\relax}
+
+    \def\poster@frameb@x#1{%
+      \@tempdima\fboxrule
+      \advance\@tempdima\fboxsep
+      \advance\@tempdima\dp\@tempboxa
+      \hbox{%
+        \lower\@tempdima\hbox{%
+          \vbox{%
+        \color@begingroup
+        \color{maincolor}
+            \hrule\@height\fboxrule
+        \color@endgroup
+            \hbox{%
+        \color@begingroup
+        \color{maincolor}
+              \vrule\@width\fboxrule
+        \color@endgroup
+              #1%
+              \vbox{%
+                \vskip\fboxsep
+                \box\@tempboxa
+                \vskip\fboxsep}%
+              #1%
+        \color@begingroup
+        \color{maincolor}
+              \vrule\@width\fboxrule
+        \color@endgroup
+              }%
+        \color@begingroup
+        \color{maincolor}
+            \hrule\@height\fboxrule
+        \color@endgroup
+            }%
+                              }%
+            }%
+    }
+
+    \pagestyle{empty}
+\fi
+
+} % false-branch of ifclassloaded{beamer}
+
+
+%%% Local Variables:
+%%% TeX-master: "beispiel.tex"
+%%% ispell-local-dictionary: "en"
+%%% End:
diff --git a/wwustyle/WWUMuenster_Logo_2017_4c.pdf b/wwustyle/WWUMuenster_Logo_2017_4c.pdf
new file mode 120000
index 0000000..a46df1a
--- /dev/null
+++ b/wwustyle/WWUMuenster_Logo_2017_4c.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/0f/86/MD5E-s575781--2bda543d6bed128d42a938cedfee604c.pdf/MD5E-s575781--2bda543d6bed128d42a938cedfee604c.pdf
\ No newline at end of file
diff --git a/wwustyle/WWUMuenster_Logo_2017_negativ-eps-converted-to.pdf b/wwustyle/WWUMuenster_Logo_2017_negativ-eps-converted-to.pdf
new file mode 120000
index 0000000..f3b8b84
--- /dev/null
+++ b/wwustyle/WWUMuenster_Logo_2017_negativ-eps-converted-to.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/8Z/kM/MD5E-s7293--9a2f3ef7f274c0a4cea16e15a506cb63.pdf/MD5E-s7293--9a2f3ef7f274c0a4cea16e15a506cb63.pdf
\ No newline at end of file
diff --git a/wwustyle/WWUMuenster_Logo_2017_negativ.eps b/wwustyle/WWUMuenster_Logo_2017_negativ.eps
new file mode 120000
index 0000000..f98cfd8
--- /dev/null
+++ b/wwustyle/WWUMuenster_Logo_2017_negativ.eps
@@ -0,0 +1 @@
+../.git/annex/objects/Ww/53/MD5E-s1566122--524fb046c2058daf0bfe5a4f450d09b0.eps/MD5E-s1566122--524fb046c2058daf0bfe5a4f450d09b0.eps
\ No newline at end of file
diff --git a/wwustyle/livingknowledgegrey.pdf b/wwustyle/livingknowledgegrey.pdf
new file mode 120000
index 0000000..b9043c6
--- /dev/null
+++ b/wwustyle/livingknowledgegrey.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/vX/KZ/MD5E-s512940--238827e40d4fb9ae6bb2a89efcd8e0bc.pdf/MD5E-s512940--238827e40d4fb9ae6bb2a89efcd8e0bc.pdf
\ No newline at end of file
diff --git a/wwustyle/livingknowledgewhite.pdf b/wwustyle/livingknowledgewhite.pdf
new file mode 120000
index 0000000..b1a505c
--- /dev/null
+++ b/wwustyle/livingknowledgewhite.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/jQ/6z/MD5E-s512940--72e577cf5214c7f4d76fc737f7e43202.pdf/MD5E-s512940--72e577cf5214c7f4d76fc737f7e43202.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone312glocke.pdf b/wwustyle/pantone312glocke.pdf
new file mode 120000
index 0000000..85b4d1c
--- /dev/null
+++ b/wwustyle/pantone312glocke.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/M6/2K/MD5E-s11354--5ca1aeacbc67aecc2c49b8dd671bfe64.pdf/MD5E-s11354--5ca1aeacbc67aecc2c49b8dd671bfe64.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone312glockeinvers.pdf b/wwustyle/pantone312glockeinvers.pdf
new file mode 120000
index 0000000..65b5cf8
--- /dev/null
+++ b/wwustyle/pantone312glockeinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/Kz/3G/MD5E-s12001--f94a080b70cd3f78b1281429be3184ba.pdf/MD5E-s12001--f94a080b70cd3f78b1281429be3184ba.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone312prinzipalmarktinvers.pdf b/wwustyle/pantone312prinzipalmarktinvers.pdf
new file mode 120000
index 0000000..1f23c6f
--- /dev/null
+++ b/wwustyle/pantone312prinzipalmarktinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/2x/kp/MD5E-s1434114--c62119908086f648c17b5a16e28101aa.pdf/MD5E-s1434114--c62119908086f648c17b5a16e28101aa.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone312textkeil.pdf b/wwustyle/pantone312textkeil.pdf
new file mode 120000
index 0000000..1514a07
--- /dev/null
+++ b/wwustyle/pantone312textkeil.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/8J/8P/MD5E-s93086--d4565678f4c8de1a0929fed902859d9a.pdf/MD5E-s93086--d4565678f4c8de1a0929fed902859d9a.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone312textkeilinvers.pdf b/wwustyle/pantone312textkeilinvers.pdf
new file mode 120000
index 0000000..964f9fb
--- /dev/null
+++ b/wwustyle/pantone312textkeilinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/Q9/fx/MD5E-s95418--a413045b44f6677cb35683a04037779c.pdf/MD5E-s95418--a413045b44f6677cb35683a04037779c.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone315glocke.pdf b/wwustyle/pantone315glocke.pdf
new file mode 120000
index 0000000..f06fa5e
--- /dev/null
+++ b/wwustyle/pantone315glocke.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/Px/mJ/MD5E-s11347--646ded181dc3f057089ce7c812aa6833.pdf/MD5E-s11347--646ded181dc3f057089ce7c812aa6833.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone315glockeinvers.pdf b/wwustyle/pantone315glockeinvers.pdf
new file mode 120000
index 0000000..b185e47
--- /dev/null
+++ b/wwustyle/pantone315glockeinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/PM/60/MD5E-s11994--63ccb389202d832a1f2a8ed84eb9ac85.pdf/MD5E-s11994--63ccb389202d832a1f2a8ed84eb9ac85.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone315prinzipalmarktinvers.pdf b/wwustyle/pantone315prinzipalmarktinvers.pdf
new file mode 120000
index 0000000..bd98e26
--- /dev/null
+++ b/wwustyle/pantone315prinzipalmarktinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/71/6m/MD5E-s1434113--115a911ead0cf92074fd1dfe16d4f359.pdf/MD5E-s1434113--115a911ead0cf92074fd1dfe16d4f359.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone315textkeil.pdf b/wwustyle/pantone315textkeil.pdf
new file mode 120000
index 0000000..d05307f
--- /dev/null
+++ b/wwustyle/pantone315textkeil.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/0m/xm/MD5E-s97068--93f0a2656a2c12b768678153b1c98213.pdf/MD5E-s97068--93f0a2656a2c12b768678153b1c98213.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone315textkeilinvers.pdf b/wwustyle/pantone315textkeilinvers.pdf
new file mode 120000
index 0000000..06ef2bd
--- /dev/null
+++ b/wwustyle/pantone315textkeilinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/7Z/K1/MD5E-s92644--ab78ff55f86ee51a37bdc4fa7e4bf6d6.pdf/MD5E-s92644--ab78ff55f86ee51a37bdc4fa7e4bf6d6.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone3282glocke.pdf b/wwustyle/pantone3282glocke.pdf
new file mode 120000
index 0000000..00f0a09
--- /dev/null
+++ b/wwustyle/pantone3282glocke.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/Pv/4q/MD5E-s11345--2c6e03a091688b5bd0093a5a5862af99.pdf/MD5E-s11345--2c6e03a091688b5bd0093a5a5862af99.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone3282glockeinvers.pdf b/wwustyle/pantone3282glockeinvers.pdf
new file mode 120000
index 0000000..3605c8b
--- /dev/null
+++ b/wwustyle/pantone3282glockeinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/4v/Xg/MD5E-s11993--8041392db574d0c92df43b130b13de19.pdf/MD5E-s11993--8041392db574d0c92df43b130b13de19.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone3282prinzipalmarktinvers.pdf b/wwustyle/pantone3282prinzipalmarktinvers.pdf
new file mode 120000
index 0000000..424fd79
--- /dev/null
+++ b/wwustyle/pantone3282prinzipalmarktinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/2m/mz/MD5E-s1434113--bab6b9784237681e4e5cd9771c65e64b.pdf/MD5E-s1434113--bab6b9784237681e4e5cd9771c65e64b.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone3282textkeil.pdf b/wwustyle/pantone3282textkeil.pdf
new file mode 120000
index 0000000..033e43e
--- /dev/null
+++ b/wwustyle/pantone3282textkeil.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/ww/9K/MD5E-s93090--58b9ff0f48513ccd009d633bec0fac3c.pdf/MD5E-s93090--58b9ff0f48513ccd009d633bec0fac3c.pdf
\ No newline at end of file
diff --git a/wwustyle/pantone3282textkeilinvers.pdf b/wwustyle/pantone3282textkeilinvers.pdf
new file mode 120000
index 0000000..2d46098
--- /dev/null
+++ b/wwustyle/pantone3282textkeilinvers.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/jV/v1/MD5E-s92644--a624c9c47c75ed7516e6e71315eb548c.pdf/MD5E-s92644--a624c9c47c75ed7516e6e71315eb548c.pdf
\ No newline at end of file
diff --git a/wwustyle/rqcd_logo.pdf b/wwustyle/rqcd_logo.pdf
new file mode 120000
index 0000000..088b769
--- /dev/null
+++ b/wwustyle/rqcd_logo.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/Q2/f8/MD5E-s5490--00aae3ee6e84b6acec2200db5e8dd343.pdf/MD5E-s5490--00aae3ee6e84b6acec2200db5e8dd343.pdf
\ No newline at end of file
diff --git a/wwustyle/rtg_logo.png b/wwustyle/rtg_logo.png
new file mode 120000
index 0000000..38be148
--- /dev/null
+++ b/wwustyle/rtg_logo.png
@@ -0,0 +1 @@
+../.git/annex/objects/mQ/Fz/MD5E-s24979--16063339fb1a87450b005235a4e5b718.png/MD5E-s24979--16063339fb1a87450b005235a4e5b718.png
\ No newline at end of file
diff --git a/wwustyle/unims.pdf b/wwustyle/unims.pdf
new file mode 120000
index 0000000..f67c231
--- /dev/null
+++ b/wwustyle/unims.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/9f/2w/MD5E-s4035--4fa4e7b908e97a1f814e2e1ac1082ccd.pdf/MD5E-s4035--4fa4e7b908e97a1f814e2e1ac1082ccd.pdf
\ No newline at end of file
diff --git a/wwustyle/wissenlebengrey.pdf b/wwustyle/wissenlebengrey.pdf
new file mode 120000
index 0000000..cdf9f28
--- /dev/null
+++ b/wwustyle/wissenlebengrey.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/27/Gx/MD5E-s512921--19079365640566f4d1a1cc524822d160.pdf/MD5E-s512921--19079365640566f4d1a1cc524822d160.pdf
\ No newline at end of file
diff --git a/wwustyle/wissenlebenwhite.pdf b/wwustyle/wissenlebenwhite.pdf
new file mode 120000
index 0000000..3310002
--- /dev/null
+++ b/wwustyle/wissenlebenwhite.pdf
@@ -0,0 +1 @@
+../.git/annex/objects/vj/K7/MD5E-s512929--71cfc338f67e9a83d199a4e99b704965.pdf/MD5E-s512929--71cfc338f67e9a83d199a4e99b704965.pdf
\ No newline at end of file
diff --git a/wwustyleMy_nometa.sty b/wwustyleMy_nometa.sty
new file mode 100644
index 0000000..f027b0a
--- /dev/null
+++ b/wwustyleMy_nometa.sty
@@ -0,0 +1,492 @@
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesPackage{wwustyle}[%
+	2018/02/26 beamer presentations using the WWU corporate design%
+]
+% Usage: Just put \usepackage{wwustyle} in the header of your tex
+%        file!
+%        Available options:
+%        - english: uses the English claim (“living.knowledge”)
+%        - Color variants (see the Corporate design manual
+%          https://sso.uni-muenster.de/intern/marketing/corporatedesign/cdmanual.html):
+%          pantone312 (“light blue”)
+%          pantone3135 (“green”)
+%          pantone7462 (“dark blue”)
+%        - Different title images:
+%          - belltower (default): castle bell tower
+%          - wedge: text wedge
+%          - prinz: WWU letters at Prinzipalmarkt (photo)
+%        - inverse: inverse title image (white on colored background
+%                   instead of color on white background)
+%        - nopagenumbering:   disables slide numbering
+%        - fullpagenumbering: displays total slide number in addition to
+%                             current slide number
+%
+% Maintainers: Simon May (simon.may@uni-muenster.de)
+%              Fachschaft Physik (fsphys@uni-muenster.de)
+%
+%              Jochen Heitger (some slight individual adjustments only):
+%              - some slight shifts at head-/footlines to gain space
+%              - further modifications indicated by "J.H." ...
+
+%% =============== required packages ============================
+\RequirePackage{tikz}
+\RequirePackage{xpatch}
+% typographical improvements (micro-typography)
+\RequirePackage{microtype}
+% enable colors
+\RequirePackage{xcolor}
+% enable inclusion of images (EPS, PNG, JPG, PDF)
+\RequirePackage{graphicx}
+% include .tex files with \includegraphics
+\RequirePackage{gincltex}
+% better handling of filenames with \includegraphics etc.
+\RequirePackage{grffile}
+% includes amsmath
+\RequirePackage{mathtools}
+% enables quotes
+\RequirePackage{csquotes}
+% tables
+\RequirePackage{booktabs}
+% referencing
+\RequirePackage[numbers,square]{natbib}
+\RequirePackage{hyperref}
+%% =============== package settings =============================
+% LaTeX
+\renewcommand{\arraystretch}{1.3}
+% graphicx
+% use “keepaspectratio” as a default
+% s. https://tex.stackexchange.com/a/91619
+\setkeys{Gin}{keepaspectratio}
+% hyperref
+\hypersetup{unicode}
+%% =============== additional settings/commands =================
+\newcommand*{\email}[1]{\href{mailto:#1}{\texttt{#1}}}
+% surpress roman numbering of refrences (allowframebreaks)
+\setbeamertemplate{frametitle continuation}{}
+
+% specify the directory of the general graphic files
+%
+% J.H.'s location for this directory ...
+%
+\graphicspath{{~/tex/inputs/wwustyle_CorporateDesign/latex-wwustyle_2018/en/template/wwustyle}}
+
+% alpha logo macros
+% \newcommand{\Alpha}{\hbox{\includegraphics[width=0.75cm]
+% 		{./logos/alpha_color_60}}}
+% \newcommand{\ALPHA}{\hbox{\includegraphics[width=0.875cm]
+% 		{./logos/alpha_color_60}}}
+% \newcommand{\CLS}{\hbox{\includegraphics[width=0.75cm]
+%		{./cls_color}}}
+
+%% =============== definitions (\definecolor, \newcommand) ======
+% available font and background colors
+% RGB color values have been taken from the WWU corporate design manual
+% https://sso.uni-muenster.de/intern/marketing/corporatedesign/cdmanual.html
+% Pantone 312: “variant 1” of the PowerPoint template
+\definecolor{pantone312} {RGB}{0,   157, 209} % light blue
+% Pantone 3135: “variant 2” of the PowerPoint template
+\definecolor{pantone3135}{RGB}{0,   142, 150} % green
+% Pantone 7462: “variant 3” of the PowerPoint template
+\definecolor{pantone7462}{RGB}{0,    87, 138} % dark blue
+
+\definecolor{pantoneblack7}{RGB}{62, 62, 59}
+% use the same text color as in the PowerPoint presentation template
+% the same color is also used for the WWU logo
+\definecolor{wwu-textcolor}{RGB}{88, 88, 90}
+% set frame background to same color as title page background
+% (“Schwarz, 5% Deckkraft”)
+\definecolor{wwu-bgcolor}{RGB}{244, 244, 244}
+\DeclareOption{bgwhite}{
+	\definecolor{wwu-bgcolor}{RGB}{255, 255, 255}
+}
+
+\colorlet{prinz}{white}
+
+% set pantone312 as the default main color
+\newcommand*{\main@color}{pantone312}
+% set bell tower as default background
+\newcommand*{\bg@motiv}{pantone315glocke}
+
+\newcommand*{\wedgeskip}{0pt}
+
+% by default give only current page number
+\newcommand*{\@@insert@framenumber}{\insertframenumber}
+
+% command to set the main color
+% for the color definitions, see the WWU corporate design manual
+% https://sso.uni-muenster.de/intern/marketing/corporatedesign/cdmanual.html
+% parameter #1: color
+\newcommand*{\set@wwu@maincolor}[1]{%
+	\renewcommand*{\main@color}{#1}%
+}
+
+\newcommand*{\title@fnt@color}{maincolor}
+\newcommand*{\title@date@color}{wwu-textcolor}
+
+% The inverted title image only appears on the title page.
+% The text color must be white there.
+% \fn@invers is used to read the corresponding background image file
+% \bg@invers is used to switch the text color
+\newcommand*{\fn@invers}{}
+\newcommand*{\bg@invers}{}
+\newif\if@invers
+
+% smaller sized WWU logo on l.h.s. of frame headlines
+% \newcommand*{\logoHeadline}{\wwulogo{2cm}}
+\newcommand*{\logoHeadline}{\wwulogo{1.5cm}}
+%
+\newcommand*{\logoTitleSmall}{\csname wwulogo\bg@invers\endcsname{3.5cm}}
+
+\newcommand*{\claimText}{wissenleben}
+\newcommand*{\claimDeEn}{}
+
+%% ========= possible package options ===========================
+% Pantone 312: “variant 1” of the PowerPoint template
+\DeclareOption{pantone312}{
+	\set@wwu@maincolor{pantone312}
+}
+% Pantone 3135: “variant 2” of the PowerPoint template
+\DeclareOption{pantone3135}{
+	\set@wwu@maincolor{pantone3135}
+}
+% Pantone 7462: “variant 3” of the PowerPoint template
+\DeclareOption{pantone7462}{
+	\set@wwu@maincolor{pantone7462}
+}
+
+\DeclareOption{inverse}{
+	\@inverstrue
+	\renewcommand*{\fn@invers}{invers}
+	\renewcommand*{\bg@invers}{invers}
+	\renewcommand*{\title@fnt@color}{white}
+	\renewcommand*{\title@date@color}{white}
+	% with inverse title image: switch to white title text
+	\renewcommand*{\title@fnt@color}{white}
+	\renewcommand*{\title@date@color}{white}
+}
+
+% There are three title images:
+% - castle bell tower
+% - text wedge
+% - WWU letters at Prinzipalmarkt
+\DeclareOption{belltower}{
+	\renewcommand*{\bg@motiv}{glocke}
+}
+\newif\if@wedge
+\DeclareOption{wedge}{
+	\@wedgetrue
+	\renewcommand*{\bg@motiv}{textkeil}
+	\renewcommand*{\wedgeskip}{4.5cm}
+}
+\DeclareOption{prinz}{
+	\renewcommand*{\bg@motiv}{prinzipalmarkt}
+	\@inverstrue
+	\renewcommand*{\fn@invers}{invers}
+	\renewcommand*{\bg@invers}{invers}
+	% with inverse title image “Prinzipalmarkt”:
+	% switch to text color “prinz” on title
+	\renewcommand*{\title@fnt@color}{prinz}
+	\renewcommand*{\title@date@color}{prinz}
+}
+
+\DeclareOption{english_claim}{
+	\renewcommand*{\claimText}{livingknowledge}
+	\renewcommand*{\claimDeEn}{-en}
+}
+
+% For the text wedge, the whole background is colored.
+% For the other images, a white strip remains at the bottom.
+\newcommand*{\claimMain}{%
+	\if@wedge%
+		\if@invers%
+			\claim{white}%
+		\else%
+			\claim{gray}%
+		\fi%
+	\else%
+		\claim{gray}%
+	\fi%
+}
+
+% decide whether the page number should show up
+\DeclareOption{nopagenumbering}{
+	\renewcommand*{\@@insert@framenumber}{}
+}
+\DeclareOption{fullpagenumbering}{
+	\renewcommand*{\@@insert@framenumber}{%
+		\insertframenumber\,\vrule width0.8pt height7pt depth 3pt\,\inserttotalframenumber%
+	}
+}
+
+% allow the user to do the font setup instead of doing it in the package
+\newif\if@manualfonts
+\DeclareOption{manualfonts}{
+	\@manualfontstrue
+}
+
+\ProcessOptions\relax
+
+% save the specified color as “maincolor”
+\colorlet{maincolor}{\main@color}
+% do font setup if “manualfonts” wasn’t specified
+\if@manualfonts
+	% language setting
+	\RequirePackage[english]{babel}
+	\RequirePackage[utf8]{inputenc}
+	\RequirePackage[T1]{fontenc}
+	%% use MetaRoman Normal as the standard non-serif font. See folder install meta on how to install.
+%
+% J.H.'s modification to change meta to standard fonts ...
+%
+% 	\RequirePackage{meta}
+% 	\renewcommand{\sfdefault}{fMt}
+\else
+%	\RequirePackage{wwustyle/meta-office-pro}
+\fi
+
+%% =============== images and graphics ==========================
+\newcommand*{\bgbox}[1]{\texorpdfstring{\colorbox{maincolor}{#1}}{#1}}
+
+% WWU claim with \includegraphics; uses one parameter:
+% parameter #1: color
+\newcommand*{\claim}[1]{%
+	% unfortunately, the image must be scaled here instead of using a fixed
+	% width or height, because the German and English versions of the claim
+	% differ in both
+	\rlap{\includegraphics[scale=0.5]{\claimText#1}}%
+}
+
+% WWU logo with \includegraphics; uses one parameter
+% parameter #1: width
+\newcommand*{\wwulogo}[1]{\wwu@logo{#1}{wwu-textcolor}}
+\newcommand*{\wwulogoinvers}[1]{\wwu@logo{#1}{white}}
+
+\newcommand*{\wwu@logo}[2]{%
+	\def\temp@a{#2}\def\temp@b{white}%
+	\ifx\temp@a\temp@b%
+		\includegraphics[width=#1]{WWUMuenster_Logo_2017_rgb_negativ}%
+	\else%
+		\includegraphics[width=#1]{WWUMuenster_Logo_2017_rgb_beamergray}%
+	\fi%
+}
+
+% background image (in a saved box, so only for the first frame)
+\newbox\bg@title
+\def\hintergrundbild{%
+	\sbox\bg@title{%
+%
+% J.H.'s modification to optionally suppress background image on the title page ...
+%
+		\includegraphics[height=\paperheight]{\main@color\bg@motiv\fn@invers}%
+	}%
+}
+\AtBeginDocument{\hintergrundbild}
+% workaround for the issue in https://tex.stackexchange.com/q/417282
+\xpatchcmd{\ps@empty}{%
+	\vbox{\hbox{\hskip-\Gm@lmargin\raise\headheight\box\beamer@tempbox\box\@tempboxa}\hfil}%
+}{%
+	\vbox{\hbox{\hskip-\Gm@lmargin\raise\headheight\box\beamer@tempbox\raise\headheight\box\@tempboxa}\hfil}%
+}{\PackageWarning{wwustyle-beamer}{%
+	Applying workaround for plain frame background in older beamer versions\MessageBreak%
+	(see https://tex.stackexchange.com/q/417282)%
+}}{}
+
+% define the institute logo command
+\newcommand*{\@institutelogo}{}
+\newcommand*{\institutelogo}[1]{%
+	\renewcommand*{\@institutelogo}{#1}%
+}
+
+\newcommand*{\@institutelogosmall}{}
+\newcommand*{\institutelogosmall}[1]{%
+	\renewcommand*{\@institutelogosmall}{#1}%
+}
+
+%% =============== margins, spacing, etc. =======================
+% disable left sidebar (empty)
+\setbeamersize{sidebar width left=0cm}
+% disable right sidebar now that the claim isn’t shown there anymore
+\setbeamersize{sidebar width right=0cm}
+
+% set text margins to 0.5cm
+% this gives the same margins as before with the sidebars
+% (with empty sidebars and sidebar width left=-0.25cm, sidebar width right=0.25cm)
+\setbeamersize{text margin left=0.5cm}
+\setbeamersize{text margin right=0.5cm}
+
+% switch off the navigation symbols
+\beamertemplatenavigationsymbolsempty
+
+%% =============== color definitions for beamer =================
+% colors to be used
+\definecolor{text-gray}{rgb}{0.45, 0.45, 0.45} % gray text on white background
+\definecolor{fu-blue} {RGB}{0,   51, 102} % blue text
+\definecolor{fu-green}{RGB}{153, 204,  0} % green text
+\definecolor{fu-red}  {RGB}{204, 0,    0} % red text (used by \alert)
+
+%% =============== redefinition of styles =======================
+% colors
+\usecolortheme{lily}
+\setbeamercolor{normal text}{fg=wwu-textcolor, bg=wwu-bgcolor}
+\setbeamercolor{alerted text}{fg=fu-red}
+\setbeamercolor{example text}{fg=fu-green}
+\setbeamercolor{structure}{fg=maincolor}
+
+\setbeamercolor{block title}{fg=white, bg=maincolor}
+\setbeamercolor{block title alerted}{fg=white, bg=fu-red}
+\setbeamercolor{block title example}{fg=white, bg=fu-green}
+\setbeamercolor{block body}{bg=maincolor!10}
+\setbeamercolor{block body alerted}{bg=fu-red!10}
+\setbeamercolor{block body example}{bg=fu-green!10}
+
+\setbeamercolor{bibliography entry author}{fg=fu-blue}
+\setbeamercolor{bibliography entry journal}{fg=text-gray}
+
+% frame title
+% 
+% shift the frametitle slighty to the top, to gain some space ...
+%
+\setbeamertemplate{frametitle}{%
+% 	\vskip4mm
+	\vskip2mm
+	\fontsize{14pt}{14pt}
+	\selectfont
+	\color{maincolor}
+	\bfseries
+	\insertframetitle
+	\par
+	\ifx\insertframesubtitle\empty%
+	\else
+	\fontsize{12pt}{12pt}
+	\selectfont
+	% set frame subtitles in pantoneblack7
+	% (which is darker than the color of normal text)
+	\color{pantoneblack7}
+	\mdseries
+	\insertframesubtitle
+	\fi%
+}
+
+% title page
+
+% The background for the title page is saved in \bg@title.
+% This box is output on the first page and is empty afterwards.
+\setbeamertemplate{background}{\hbox to \paperwidth{\hss\box\bg@title}}
+
+% redefine \@arrayparboxrestore so that the presentation title (which is set
+% using a \parbox) uses \raggedright instead of justifying text
+\g@addto@macro\@arrayparboxrestore{\raggedright}
+
+\setbeamertemplate{title page}{%
+	% set the title, subtitle, author and date
+	\setlength{\unitlength}{1mm}
+	\begin{picture}(0,15)
+		\put(0,4){\parbox[c]{10cm}{%
+			\color{\title@fnt@color}%
+			% title
+			\LARGE%
+			\bfseries%
+			\inserttitle%
+			\par%
+			\vskip2mm%
+			% subtitle
+			\footnotesize%
+			\normalfont%
+			\insertsubtitle%
+			\smallskip%
+			% author
+			\par%
+			\insertauthor%
+			\par%
+			% date
+			\medskip%
+			\scriptsize%
+			\color{\title@date@color}%
+			\insertdate%
+			\par%
+		}}
+	\end{picture}
+	\begin{tikzpicture}[remember picture, overlay]
+		% WWU logo (top left)
+		\node[xshift=0.4cm, yshift=-1cm, anchor=west]
+			at (current page.north west)
+			{\logoTitleSmall};
+		% WWU claim (bottom left)
+		\node[xshift=0.5cm, yshift=0.65cm]
+			at (current page.south west)
+			{\claimMain};
+		% institute logo (bottom right)
+		\node[xshift=-0.5cm, yshift=0.8cm, inner sep=0, anchor=east]
+			at (current page.south east) {%
+				% see \claimMain
+				\if@wedge%
+					\if@invers%
+						\color{white}%
+					\fi%
+				\fi%
+				\@institutelogo\hspace*{\wedgeskip}%
+			};
+	\end{tikzpicture}
+}
+
+% headline
+%
+% shift logos, short title etc. in the headline slighty to the top,
+% to gain some space ...
+%
+\setbeamertemplate{headline}{
+	\fontsize{6pt}{1pt}%
+	\selectfont%
+	{%
+		\begin{tikzpicture}[remember picture, overlay]
+% 			\node[xshift=0.5cm, yshift=-1cm, anchor=south west, inner sep=0]
+			\node[xshift=0.5cm, yshift=-0.6125cm, anchor=south west, inner sep=0]
+			        at (current page.north west) {\logoHeadline};
+% 			\node[xshift=3.5cm, yshift=-1cm, anchor=south west, inner sep=0]
+			\node[xshift=3.5cm, yshift=-0.6125cm, anchor=south west, inner sep=0]
+				at (current page.north west) {\@institutelogosmall};
+		\end{tikzpicture}
+	}%
+	\hfill%
+	\bfseries%
+	\color{maincolor}%
+	\let\bgbox\relax\insertshorttitle%
+	% same space to the right as text margin
+	\hspace{0.5cm}%
+	% invisible rule to set headline height
+%	\rule{0pt}{10mm}%
+	\rule{0pt}{5mm}%
+}
+
+% footline
+% make footline background non-transparent so that frame content cannot “slide
+% into” the footer
+%
+% % shift the footline slighty to the bottom, to gain some space ... 
+%
+\setbeamercolor{footlinecolor}{bg=wwu-bgcolor}
+\setbeamertemplate{footline}{%
+	\begin{beamercolorbox}[wd=\paperwidth]{footlinecolor}
+		\fontsize{6pt}{1pt}%
+		\selectfont%
+		\color{maincolor}%
+		\rule{\textwidth}{0.8pt}% horizontal line
+%		\vskip2mm%
+		\vskip-0.5mm%
+		\hspace{5mm}%
+		\color{wwu-textcolor}%
+		\let\bgbox\relax\insertshortauthor%
+%		\vrule height7pt depth3pt width0pt\hfill%
+		\vrule height3pt depth3pt width0pt\hfill%
+%		\fontsize{9pt}{12pt}%
+                \fontsize{6pt}{9pt}%
+		\selectfont%
+		\color{maincolor}%
+		\bfseries%
+		\@@insert@framenumber%
+		\hspace{5mm}%
+		\strut%
+%		\vskip3mm%
+		\vskip1mm%
+	\end{beamercolorbox}%
+}