我尝试将其用作TorinoTh
我的演示模板,因为该模板可以在标题页上并排显示我的名字和我的顾问的名字,但这Warsaw
似乎无法实现。坦率地说,我希望我的标题页是:
这可以通过编译来实现纺织机械商:
\documentclass{beamer}
\usetheme[language=english,coding=utf8x,titlepagelogo=a-herd-of-boars,bullet=circle,pageofpages=of,titleline=true,color=red]{TorinoTh}
\usecolortheme{seahorse}
\makeatletter
\renewcommand\beamer@torinoth@superv{Adviser}
\renewcommand\beamer@torinoth@cand{\raisebox{-\depth}[0pt][0pt]{Student}}
\makeatother
\author{Junior Boar, R20210901}
\rel{Senior Boar, PhD}
\title{A Brief History of Boar}
\ateneo{National Boar University}
\date{\today}
\usepackage{amsthm}
\begin{document}
\titlepageframe
\begin{tframe}{Outline}
This is the outline of my thesis presentation.
\end{tframe}
\begin{tframe}{Quasi-local mass}
\begin{theorem}
Every little boar likes to compute
\[1+1=2.\]
\end{theorem}
\end{tframe}
\end{document}
然而,这带来了很多警告和 Badbox,这让我很困惑:
有没有办法去掉这些令人不安的消息?或者是否可以制作具有熟悉Warsaw
主题的相同标题页?谢谢帮助!
答案1
您可以使用主题创建类似的布局Warsaw
(需要 beamer v3.70 或更新版本):
\documentclass{beamer}
\usetheme{Warsaw}
\usecolortheme{seahorse}
\author{Junior Boar, R20210901}
\title{A Brief History of Boar}
\institute{National Boar University}
\titlegraphic{\includegraphics[width=3cm]{example-image-duck}}
\setbeamercolor{institute}{parent=title}
\setbeamerfont{institute}{size=\large}
\setbeamertemplate{author}{
\begin{columns}
\begin{column}{.5\textwidth}
\centering
Advisor
Senior Boar, PhD
\end{column}
\begin{column}{.5\textwidth}
\centering
Student
Junior Boar
\end{column}
\end{columns}
}
\setbeamertemplate{title page}{
\centering
\usebeamertemplate{institute}
\vfill
\usebeamertemplate{titlegraphic}
\vfill
\usebeamertemplate{title}
\vfill
\usebeamertemplate{author}
\vfill
\usebeamertemplate{date}
}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\end{document}