template_cesbio
Author
Odile de La Ruë
Last Updated
3 years ago
License
LaTeX Project Public License 1.3c
Abstract
simple template for presentation with cesbio colors & logo
% a simple template with cesbio color code
\documentclass[xcolor=table, t]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{booktabs, comment}
\usepackage[absolute, overlay]{textpos}
\usepackage{pgfpages}
\usepackage{caption}
\usepackage[font=footnotesize]{caption}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{blindtext}
\usepackage{amsmath}
\usepackage[makeroom]{cancel}
\usepackage{textpos}
\usepackage{tikz}
\usepackage{csquotes}
% CESBIO ADAPTED COLOURS
\definecolor{colorcesbio}{RGB}{37, 145, 17}
\definecolor{forestgreen}{rgb}{0.13, 0.55, 0.13}
\definecolor{greenyellow}{rgb}{0.68, 1.0, 0.18}
\definecolor{inchworm}{rgb}{0.7, 0.93, 0.36}
% OPTIONAL COLOURS
% you can add the ones you need : lot of proposition on http://latexcolor.com/
\definecolor{ballblue}{rgb}{0.13, 0.67, 0.8}
\definecolor{bluegreen}{rgb}{0.0, 0.87, 0.87}
\definecolor{chromeyellow}{rgb}{1.0, 0.65, 0.0}
\definecolor{darkcyan}{rgb}{0.0, 0.55, 0.55}
\definecolor{darkpastelred}{rgb}{0.76, 0.23, 0.13}
\definecolor{electricgreen}{rgb}{0.0, 1.0, 0.0}
\definecolor{electriclime}{rgb}{0.8, 1.0, 0.0}
\definecolor{deepcarrotorange}{rgb}{0.91, 0.41, 0.17}
% CESBIO ADAPTED BEAMER OPTIONS
\setbeamercolor{title in head/foot}{bg=inchworm, fg=forestgreen}
\setbeamercolor{author in head/foot}{bg=colorcesbio}
\setbeamertemplate{page number in head/foot}{}
\useoutertheme{infolines}
\usetheme{Madrid}
\usecolortheme[named=colorcesbio]{structure}
% SPECIFIC COMMANDS
% if you nee to set command for youe presentation, you can put them here
\newcommand{\defnotation}[1]{\bf{\textsl{#1}}}
% PRESENTATION INFORMATIONS
% to fill in
\title[all frame title]{Main title}
\subtitle{Subtitle}
\titlegraphic{\includegraphics[height=2.0cm]{logo_cesbio.jpg}}
\author[all frame autor]{
1st author ,
2nd autor,
3rd Author }
\institute[]{Team\\ Centre d'Etudes Spatiales de la Biodiversité}
\date{\today}
% cesbio adapted frame structure
\addtobeamertemplate{navigation symbols}{}{%
\usebeamerfont{footline}%
\usebeamercolor[fg]{footline}%
\hspace{1em}%
\insertframenumber/\inserttotalframenumber
}
% Cover frame
\begin{document}
\begin{frame}
\maketitle
\end{frame}
% cesbio logo on all frames
\logo{\includegraphics[height=1.0cm]{logo_cesbio.jpg}~}
%table of contents
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents
\end{frame}
% INTRODUCTION
\section{Introduction}
\begin{frame}
\frametitle<presentation>{Introduction}
\framesubtitle{First elements of context}
Surface energy balance \cite{HEUSINKVELD200421}
\end{frame}
% your section structure and all your frames
% CONCLUSION
\section{Conclusion}
\begin{frame}
\frametitle<presentation>{Conclusion}
\end{frame}
% References
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliographystyle{apalike}
\bibliography{bibliography}
\end{frame}
% APPENDIX - if necessary
\begin{appendix}
\section{Appendix 1}
\subsection{Appendix 1.1}\label{app_11}
\begin{frame}
\frametitle<presentation>{Appendix 1}
\framesubtitle{Appendix 1.1}
\end{frame}
\end{appendix}
\end{document}