[DATALAD] Recorded changes
This commit is contained in:
parent
c9a0194b87
commit
fbc26a2892
54 changed files with 3938 additions and 0 deletions
3
.gitattributes
vendored
3
.gitattributes
vendored
|
@ -1,2 +1,5 @@
|
||||||
* annex.backend=MD5E
|
* annex.backend=MD5E
|
||||||
**/.git* annex.largefiles=nothing
|
**/.git* annex.largefiles=nothing
|
||||||
|
README.md annex.largefiles=nothing
|
||||||
|
*.tex annex.largefiles=nothing
|
||||||
|
*.sty annex.largefiles=nothing
|
||||||
|
|
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
*.aux
|
||||||
|
*.bbl
|
||||||
|
*.fls
|
||||||
|
*.log
|
||||||
|
*.nav
|
||||||
|
*.toc
|
||||||
|
*.out
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.run.xml
|
||||||
|
*.snm
|
||||||
|
*.bib
|
5
README.md
Normal file
5
README.md
Normal file
|
@ -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.
|
||||||
|
|
1
TODO.md
Symbolic link
1
TODO.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
.git/annex/objects/7P/V0/MD5E-s57--8d93925368c10edc17e95ebfd9b877d8.md/MD5E-s57--8d93925368c10edc17e95ebfd9b877d8.md
|
488
alpha.sty
Executable file
488
alpha.sty
Executable file
|
@ -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
|
||||||
|
|
||||||
|
|
14
document.tex
Normal file
14
document.tex
Normal file
|
@ -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}
|
||||||
|
|
92
einstellungen.tex
Normal file
92
einstellungen.tex
Normal file
|
@ -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
|
||||||
|
|
||||||
|
|
1
fonts/Meta-Bold.ttf
Symbolic link
1
fonts/Meta-Bold.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/kw/QG/MD5E-s77004--d1ff1ad7ea91246c405f9fcf9c532270.ttf/MD5E-s77004--d1ff1ad7ea91246c405f9fcf9c532270.ttf
|
1
fonts/Meta-Italic.ttf
Symbolic link
1
fonts/Meta-Italic.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/72/J2/MD5E-s90668--7f6ca7e606046387015b4a8acfb23dd6.ttf/MD5E-s90668--7f6ca7e606046387015b4a8acfb23dd6.ttf
|
1
fonts/Meta-Medium-Caps.ttf
Symbolic link
1
fonts/Meta-Medium-Caps.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/gF/76/MD5E-s49928--523c04d79249165b63273dc295c14b51.ttf/MD5E-s49928--523c04d79249165b63273dc295c14b51.ttf
|
1
fonts/Meta-Normal-Caps.ttf
Symbolic link
1
fonts/Meta-Normal-Caps.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/vP/gF/MD5E-s50200--c9d22c0f661ecc6047c207bcb58f80e9.ttf/MD5E-s50200--c9d22c0f661ecc6047c207bcb58f80e9.ttf
|
1
fonts/Meta-Regular.ttf
Symbolic link
1
fonts/Meta-Regular.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/KX/w2/MD5E-s78172--0b79c1148ab2e1a4a8813482a887dbcb.ttf/MD5E-s78172--0b79c1148ab2e1a4a8813482a887dbcb.ttf
|
1
fonts/MetaLF-Bold.ttf
Symbolic link
1
fonts/MetaLF-Bold.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/KF/FP/MD5E-s77156--2f26e8e4820489cfdb5d9758a9f5a0e4.ttf/MD5E-s77156--2f26e8e4820489cfdb5d9758a9f5a0e4.ttf
|
1
fonts/MetaLF-Italic.ttf
Symbolic link
1
fonts/MetaLF-Italic.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/4v/wX/MD5E-s85932--faefa33f394b953ccf6e2c00d6d1d7c2.ttf/MD5E-s85932--faefa33f394b953ccf6e2c00d6d1d7c2.ttf
|
1
fonts/MetaLF-Regular.ttf
Symbolic link
1
fonts/MetaLF-Regular.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/0J/PJ/MD5E-s77796--92d7c0451d75711fc7f299d887216209.ttf/MD5E-s77796--92d7c0451d75711fc7f299d887216209.ttf
|
1
fonts/MetaOffcPro-Bold.ttf
Symbolic link
1
fonts/MetaOffcPro-Bold.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/qq/52/MD5E-s187300--0ac87f481b190d345b1488b45356a4f9.ttf/MD5E-s187300--0ac87f481b190d345b1488b45356a4f9.ttf
|
1
fonts/MetaOffcPro-Norm.ttf
Symbolic link
1
fonts/MetaOffcPro-Norm.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/6P/qm/MD5E-s190404--8173df3b821d82ac118fb8ebf1b47071.ttf/MD5E-s190404--8173df3b821d82ac118fb8ebf1b47071.ttf
|
1
fonts/MetaOffcPro-NormIta.ttf
Symbolic link
1
fonts/MetaOffcPro-NormIta.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/0z/7K/MD5E-s193060--e5b1d45d82020f3eaf6b713cbb51a4d1.ttf/MD5E-s193060--e5b1d45d82020f3eaf6b713cbb51a4d1.ttf
|
1
fonts/MetaScOffcPro-Bold.ttf
Symbolic link
1
fonts/MetaScOffcPro-Bold.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/9k/Jj/MD5E-s176916--7a6036a945680114c8d77bb20e42bdf0.ttf/MD5E-s176916--7a6036a945680114c8d77bb20e42bdf0.ttf
|
1
fonts/MetaScOffcPro-Norm.ttf
Symbolic link
1
fonts/MetaScOffcPro-Norm.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/F6/1W/MD5E-s180464--a3297a57198a2ef0e4df5cec2684e881.ttf/MD5E-s180464--a3297a57198a2ef0e4df5cec2684e881.ttf
|
1
fonts/MetaScOffcPro-NormIta.ttf
Symbolic link
1
fonts/MetaScOffcPro-NormIta.ttf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/j1/0q/MD5E-s182948--f74a502810d33a191a86999e1f67252a.ttf/MD5E-s182948--f74a502810d33a191a86999e1f67252a.ttf
|
1
fonts/The files for the font “Meta” must be placed here
Symbolic link
1
fonts/The files for the font “Meta” must be placed here
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/2W/kW/MD5E-s0--d41d8cd98f00b204e9800998ecf8427e/MD5E-s0--d41d8cd98f00b204e9800998ecf8427e
|
1
justfile
Symbolic link
1
justfile
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
.git/annex/objects/ZZ/ZQ/MD5E-s312--c7c1fdc72cdf960f7ad7299d761074d1/MD5E-s312--c7c1fdc72cdf960f7ad7299d761074d1
|
1273
macros.sty
Executable file
1273
macros.sty
Executable file
File diff suppressed because it is too large
Load diff
1
talk.pdf
Symbolic link
1
talk.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
.git/annex/objects/q8/2m/MD5E-s271546--3704e2dac1570a7e64382cbc71e34ef6.pdf/MD5E-s271546--3704e2dac1570a7e64382cbc71e34ef6.pdf
|
205
talk.tex
Normal file
205
talk.tex
Normal file
|
@ -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}
|
||||||
|
|
||||||
|
|
162
wwustyle-mod.sty
Normal file
162
wwustyle-mod.sty
Normal file
|
@ -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}%
|
||||||
|
}
|
1150
wwustyle.sty
Normal file
1150
wwustyle.sty
Normal file
File diff suppressed because it is too large
Load diff
1
wwustyle/WWUMuenster_Logo_2017_4c.pdf
Symbolic link
1
wwustyle/WWUMuenster_Logo_2017_4c.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/0f/86/MD5E-s575781--2bda543d6bed128d42a938cedfee604c.pdf/MD5E-s575781--2bda543d6bed128d42a938cedfee604c.pdf
|
1
wwustyle/WWUMuenster_Logo_2017_negativ-eps-converted-to.pdf
Symbolic link
1
wwustyle/WWUMuenster_Logo_2017_negativ-eps-converted-to.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/8Z/kM/MD5E-s7293--9a2f3ef7f274c0a4cea16e15a506cb63.pdf/MD5E-s7293--9a2f3ef7f274c0a4cea16e15a506cb63.pdf
|
1
wwustyle/WWUMuenster_Logo_2017_negativ.eps
Symbolic link
1
wwustyle/WWUMuenster_Logo_2017_negativ.eps
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Ww/53/MD5E-s1566122--524fb046c2058daf0bfe5a4f450d09b0.eps/MD5E-s1566122--524fb046c2058daf0bfe5a4f450d09b0.eps
|
1
wwustyle/livingknowledgegrey.pdf
Symbolic link
1
wwustyle/livingknowledgegrey.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/vX/KZ/MD5E-s512940--238827e40d4fb9ae6bb2a89efcd8e0bc.pdf/MD5E-s512940--238827e40d4fb9ae6bb2a89efcd8e0bc.pdf
|
1
wwustyle/livingknowledgewhite.pdf
Symbolic link
1
wwustyle/livingknowledgewhite.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/jQ/6z/MD5E-s512940--72e577cf5214c7f4d76fc737f7e43202.pdf/MD5E-s512940--72e577cf5214c7f4d76fc737f7e43202.pdf
|
1
wwustyle/pantone312glocke.pdf
Symbolic link
1
wwustyle/pantone312glocke.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/M6/2K/MD5E-s11354--5ca1aeacbc67aecc2c49b8dd671bfe64.pdf/MD5E-s11354--5ca1aeacbc67aecc2c49b8dd671bfe64.pdf
|
1
wwustyle/pantone312glockeinvers.pdf
Symbolic link
1
wwustyle/pantone312glockeinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Kz/3G/MD5E-s12001--f94a080b70cd3f78b1281429be3184ba.pdf/MD5E-s12001--f94a080b70cd3f78b1281429be3184ba.pdf
|
1
wwustyle/pantone312prinzipalmarktinvers.pdf
Symbolic link
1
wwustyle/pantone312prinzipalmarktinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/2x/kp/MD5E-s1434114--c62119908086f648c17b5a16e28101aa.pdf/MD5E-s1434114--c62119908086f648c17b5a16e28101aa.pdf
|
1
wwustyle/pantone312textkeil.pdf
Symbolic link
1
wwustyle/pantone312textkeil.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/8J/8P/MD5E-s93086--d4565678f4c8de1a0929fed902859d9a.pdf/MD5E-s93086--d4565678f4c8de1a0929fed902859d9a.pdf
|
1
wwustyle/pantone312textkeilinvers.pdf
Symbolic link
1
wwustyle/pantone312textkeilinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Q9/fx/MD5E-s95418--a413045b44f6677cb35683a04037779c.pdf/MD5E-s95418--a413045b44f6677cb35683a04037779c.pdf
|
1
wwustyle/pantone315glocke.pdf
Symbolic link
1
wwustyle/pantone315glocke.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Px/mJ/MD5E-s11347--646ded181dc3f057089ce7c812aa6833.pdf/MD5E-s11347--646ded181dc3f057089ce7c812aa6833.pdf
|
1
wwustyle/pantone315glockeinvers.pdf
Symbolic link
1
wwustyle/pantone315glockeinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/PM/60/MD5E-s11994--63ccb389202d832a1f2a8ed84eb9ac85.pdf/MD5E-s11994--63ccb389202d832a1f2a8ed84eb9ac85.pdf
|
1
wwustyle/pantone315prinzipalmarktinvers.pdf
Symbolic link
1
wwustyle/pantone315prinzipalmarktinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/71/6m/MD5E-s1434113--115a911ead0cf92074fd1dfe16d4f359.pdf/MD5E-s1434113--115a911ead0cf92074fd1dfe16d4f359.pdf
|
1
wwustyle/pantone315textkeil.pdf
Symbolic link
1
wwustyle/pantone315textkeil.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/0m/xm/MD5E-s97068--93f0a2656a2c12b768678153b1c98213.pdf/MD5E-s97068--93f0a2656a2c12b768678153b1c98213.pdf
|
1
wwustyle/pantone315textkeilinvers.pdf
Symbolic link
1
wwustyle/pantone315textkeilinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/7Z/K1/MD5E-s92644--ab78ff55f86ee51a37bdc4fa7e4bf6d6.pdf/MD5E-s92644--ab78ff55f86ee51a37bdc4fa7e4bf6d6.pdf
|
1
wwustyle/pantone3282glocke.pdf
Symbolic link
1
wwustyle/pantone3282glocke.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Pv/4q/MD5E-s11345--2c6e03a091688b5bd0093a5a5862af99.pdf/MD5E-s11345--2c6e03a091688b5bd0093a5a5862af99.pdf
|
1
wwustyle/pantone3282glockeinvers.pdf
Symbolic link
1
wwustyle/pantone3282glockeinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/4v/Xg/MD5E-s11993--8041392db574d0c92df43b130b13de19.pdf/MD5E-s11993--8041392db574d0c92df43b130b13de19.pdf
|
1
wwustyle/pantone3282prinzipalmarktinvers.pdf
Symbolic link
1
wwustyle/pantone3282prinzipalmarktinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/2m/mz/MD5E-s1434113--bab6b9784237681e4e5cd9771c65e64b.pdf/MD5E-s1434113--bab6b9784237681e4e5cd9771c65e64b.pdf
|
1
wwustyle/pantone3282textkeil.pdf
Symbolic link
1
wwustyle/pantone3282textkeil.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/ww/9K/MD5E-s93090--58b9ff0f48513ccd009d633bec0fac3c.pdf/MD5E-s93090--58b9ff0f48513ccd009d633bec0fac3c.pdf
|
1
wwustyle/pantone3282textkeilinvers.pdf
Symbolic link
1
wwustyle/pantone3282textkeilinvers.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/jV/v1/MD5E-s92644--a624c9c47c75ed7516e6e71315eb548c.pdf/MD5E-s92644--a624c9c47c75ed7516e6e71315eb548c.pdf
|
1
wwustyle/rqcd_logo.pdf
Symbolic link
1
wwustyle/rqcd_logo.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/Q2/f8/MD5E-s5490--00aae3ee6e84b6acec2200db5e8dd343.pdf/MD5E-s5490--00aae3ee6e84b6acec2200db5e8dd343.pdf
|
1
wwustyle/rtg_logo.png
Symbolic link
1
wwustyle/rtg_logo.png
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/mQ/Fz/MD5E-s24979--16063339fb1a87450b005235a4e5b718.png/MD5E-s24979--16063339fb1a87450b005235a4e5b718.png
|
1
wwustyle/unims.pdf
Symbolic link
1
wwustyle/unims.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/9f/2w/MD5E-s4035--4fa4e7b908e97a1f814e2e1ac1082ccd.pdf/MD5E-s4035--4fa4e7b908e97a1f814e2e1ac1082ccd.pdf
|
1
wwustyle/wissenlebengrey.pdf
Symbolic link
1
wwustyle/wissenlebengrey.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/27/Gx/MD5E-s512921--19079365640566f4d1a1cc524822d160.pdf/MD5E-s512921--19079365640566f4d1a1cc524822d160.pdf
|
1
wwustyle/wissenlebenwhite.pdf
Symbolic link
1
wwustyle/wissenlebenwhite.pdf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../.git/annex/objects/vj/K7/MD5E-s512929--71cfc338f67e9a83d199a4e99b704965.pdf/MD5E-s512929--71cfc338f67e9a83d199a4e99b704965.pdf
|
492
wwustyleMy_nometa.sty
Normal file
492
wwustyleMy_nometa.sty
Normal file
|
@ -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}%
|
||||||
|
}
|
Reference in a new issue