momentan bin ich an der Erstellung eines Beamer-Templates für Latex und würde gerne eine Grafik so einbinden, sodass Sie im Hintergrund liegt und immer bis zur Unterkante vom Subtitle sichtbar ist (oder ggf. im Hintergrund liegt und ab dem Subtitle eine einfarbige Box darüberliegt).
Hier ist ein Minimalbeispiel:
%% Template \documentclass{beamer} %% LAYOUT \useoutertheme{mytheme} % for overview and header \setbeamercolor{background canvas}{bg=green} \setbeamercolor{palette primary}{fg=white,bg=black} %% DOCUMENT \begin{document} \section{Testing} \subsection{Artificial data} \begin{frame}{Title} \framesubtitle{Subtitle} \end{frame} \end{document}
\mode<presentation> \setbeamercolor{section in head/foot}{parent=palette quaternary} \setbeamercolor{subsection in head/foot}{parent=palette primary} \setbeamercolor{author in head/foot}{parent=section in head/foot} \setbeamercolor{title in head/foot}{parent=subsection in head/foot} % Head \ifbeamer@compress \defbeamertemplate*{headline}{mytheme theme} {% \leavevmode% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{section in head/foot}% \bfseries\insertsectionnavigationhorizontal{.5\paperwidth}{\hskip0pt plus1filll}{}% \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex]{subsection in head/foot}% \bfseries\insertsubsectionnavigationhorizontal{.5\paperwidth}{}{\hskip0pt plus1filll}% \end{beamercolorbox}% } \else \defbeamertemplate*{headline}{mytheme theme} {% \leavevmode% \@tempdimb=2.4375ex% \ifnum\beamer@subsectionmax<\beamer@sectionmax% \multiply\@tempdimb by\beamer@sectionmax% \else% \multiply\@tempdimb by\beamer@subsectionmax% \fi% \ifdim\@tempdimb>0pt% \advance\@tempdimb by 1.825ex% \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{section in head/foot}% \vbox to\@tempdimb{\vfil\bfseries\insertsectionnavigation{.5\paperwidth}\vfil}% \end{beamercolorbox}% \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{subsection in head/foot}% \vbox to\@tempdimb{\vfil\bfseries\insertsubsectionnavigation{.5\paperwidth}\vfil}% \end{beamercolorbox}% \fi% } \fi \defbeamertemplate*{footline}{mytheme theme} {% \leavevmode \hbox{\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm]{author in head/foot} foot1 \end{beamercolorbox} \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot} foot2 \end{beamercolorbox}} \vskip0pt } \mode <all>
Vielen Dank schon einmal.