Beamer
例如,如果我想添加出版物引用但幻灯片底部预设的框区域空间不足,我该如何腾出一些空间?
以下是 MWE:
\documentclass{beamer}
\mode<presentation> {
\usetheme{Madrid}
}
\title[MY LONG PUBLICATION CITATION IS HERE]{My Title}
\author{My name}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
答案1
\setbeamertemplate{footline}{...}
对于此任务,您可以根据需要重新定义底部栏:`
仅作为从头开始的示例,这里提供了一种使用来制作酒吧的方法tabularx
,但正确的起点可能是修改原始模板。
\documentclass{beamer}
\usepackage{tabularx}
\usepackage{colortbl}
\usetheme{Madrid}
\title[MY LONG PUBLICATION CITATION IS HERE]{My Title}
\author{My name}
\setbeamertemplate{footline}{
\renewcommand{\arraystretch}{1.2}
\begin{tabularx}{\paperwidth}{
>{\centering}p{.2\paperwidth}
>{\centering}X
>{\centering}p{.2\paperwidth}}
\cellcolor{structure!50}\centering\vspace{-4pt}\insertauthor&
\cellcolor{structure!70}\centering\vspace{-4pt}\insertshorttitle&
\cellcolor{structure}\centering\vspace{-4pt}\insertdate\\
\end{tabularx}}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}