如何重新格式化标题,放弃 beamer 主题的格式?

如何重新格式化标题,放弃 beamer 主题的格式?

我在 Latex 中使用了 beamer 主题,但是我想在使用该主题的同时重新格式化标题。这可能吗?如何实现? 在此处输入图片描述

像这张图,我想把标题往上调一点,这样标题就不会遮挡背景中的logo。如何实现呢?我的代码如下。1.jpg是背景图片。

\documentclass{beamer}

\mode<presentation> {
\usetheme{Madrid}
}

\usepackage{graphicx} 
\usepackage{booktabs}
\usepackage{color}
\usepackage{mathtools}
\usepackage{multirow}\usepackage{mathrsfs}
\usepackage{CJK}\usepackage{hyperref}
\def\EE{\mathscr{E}}\def\FF{\mathscr{F}}
\def\IP{\mathbb{P}}\def\IE{\mathbb{E}}
\def\BB{\mathscr{B}}
\def\IR{\mathbb{R}}
\def\ss{\mathsf{s}}
\def\df{\mathrm{d}}
\usecolortheme{seahorse}
\usecolortheme{rose}
\setbeamertemplate{background}{\includegraphics[height=\paperheight]{1.jpg}}

\title{Regular Dirichlet Subspaces and Related Problems} 
\author{Jiangang Ying} % Your name
\institute[Fudan University] 
{
Fudan University \\ 
\medskip
\textit{[email protected]} 
}
\date{\today}
\begin{document}

\begin{frame}
\titlepage % Print the title page as the first slide
\end{frame}
\end{document}

答案1

您可以像设计背景一样设计自己的标题页。这是 MWE。它并不完美,但它可以帮助您入门。

\documentclass{beamer}

\mode<presentation> {
    \usetheme{Madrid}
}


\usecolortheme{seahorse}
\usecolortheme{rose}
\setbeamertemplate{background}{\includegraphics[height=\paperheight]{fadedlogo}}

%% you can design your own title page
\usepackage{tikz}
\usetikzlibrary{shadows.blur}
\definecolor{MyBlue}{HTML}{D6D6F0}
\setbeamertemplate{title page}{
    \begin{tikzpicture}[remember picture, overlay]
    \node[rectangle, draw=MyBlue,minimum height=1cm, minimum width=0.9\paperwidth, fill=MyBlue, rounded corners=1mm, blur shadow={shadow blur steps=5}] (title) at ([yshift=-1.5cm]current page.north){\Large Regular Dirichlet Subspaces and Related Problems};
    \node[below] (author) at ([yshift=-2cm]title.south) {\insertauthor}; 
    \node[below] (institute) at (author.south) {\tiny Fudan University}; 
    \node[below] (instituteid) at (institute.south) {   \tiny \textit{[email protected]}}; 
    \node[below] (date) at (instituteid.south) {\insertdate}; 
    \end{tikzpicture}
}
%%

\title{Regular Dirichlet Subspaces and Related Problems} 
\author{Jiangang Ying} % Your name
\institute[Fudan University] 
{
    Fudan University \\ 
    \medskip
    \textit{[email protected]} 
}
\date{\today}
\begin{document}

    \begin{frame}
        \titlepage % Print the title page as the first slide
        \end{frame}
\end{document} 

我从您的示例中删除了不需要的额外包,并且我没有您的徽标,所以我使用了假的徽标。这将产生输出:

封面

相关内容