我想为我的演讲创建自己的 Beamer 风格,并且我遵循这链接即可。我将标题页模板更改为以下形式
\defbeamertemplate*{title page}{texsx}[1][]
{
\begin{tikzpicture}[overlay,remember picture]
\node(title)[anchor=north, below = 0.1\textheight of current page.north] {
\begin{beamercolorbox}[center,sep=8pt,#1]{title page header}
\usebeamerfont{title}{\huge\color[rgb]{0,0,1}\inserttitle}%
\end{beamercolorbox}
};
\node(yfigure)[anchor=north, below=0.0cm of title.south] {
\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic
};
\node(author)[anchor=north, below = 0.0cm of yfigure.south] {
\begin{beamercolorbox}[left,sep=8pt,#1]{author}
\usebeamerfont{author}{\small\color[rgb]{0,0.5,0.5}\insertauthor}%
\end{beamercolorbox}
};
\node(date)[anchor=north, below = 0.0cm of author.south] {
\begin{beamercolorbox}[left,sep=8pt,#1]{date}
\usebeamerfont{author}{\small\color[rgb]{0,0.5,0.5}\insertdate}%
\end{beamercolorbox}
};
\end{tikzpicture}
% % \insertinstitute
}
我发现这很奇怪,因为作者锚点north
应该below of yfigure.south
位于页面的中间,而不是左侧。
我错过了什么?