1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- %% Better graphics sizes
- \usepackage{graphicx}
- % Redefine \includegraphics so that, unless explicit options are
- % given, the image width will not exceed the width or the height of the page.
- % Images get their normal width if they fit onto the page, but
- % are scaled down if they would overflow the margins.
- \makeatletter
- \def\ScaleWidthIfNeeded{%
- \ifdim\Gin@nat@width>\linewidth
- \linewidth
- \else
- \Gin@nat@width
- \fi
- }
- \def\ScaleHeightIfNeeded{%
- \ifdim\Gin@nat@height>0.75\textheight
- 0.75\textheight
- \else
- \Gin@nat@width
- \fi
- }
- \makeatother
- \setkeys{Gin}{width=\ScaleWidthIfNeeded,height=\ScaleHeightIfNeeded,keepaspectratio}%
- %% Eliminate header
- %%\setbeamertemplate{headline}{}
- %% Shorten footer title
- \makeatletter
- \setbeamertemplate{footline}
- {
- \leavevmode%
- \hbox{%
- \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,right]{author in head/foot}%
- \usebeamerfont{author in head/foot}Ryan C. Thompson\hspace*{1em}
- \end{beamercolorbox}%
- \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,left]{title in head/foot}%
- \usebeamerfont{title in head/foot}\hspace*{1em}Genomic and epigenomic analysis of $\mathsf{CD4}^{+}$ memory
- \end{beamercolorbox}}%
- \vskip0pt%
- }
- \makeatother
- %% Eliminate figure numbering
- \usepackage{caption}
- \captionsetup{labelformat=empty,labelsep=none}
|