Code: Select all
\documentclass[
smaller,
professionalfonts,
hyperref={
colorlinks=true,
breaklinks=true,
bookmarks=true,
linkcolor=blue,
anchorcolor=blue,
citecolor=blue,
filecolor=red,
urlcolor=red,
pdfpagemode=FullScreen
}
]{beamer}
\usepackage{beamerthemesplit}
\mode<presentation>{
\usetheme{shadow}
\def\colorize<#1>{\temporal<#1>{\color{red}}{\color{red}}{\color{black!50}}}
\beamersetaveragebackground{yellow!10}
\beamertemplateshadingbackground{blue!5}{yellow!10}
\setbeamertemplate{frametitle}[from second]{}
\setbeamercovered{dynamic}
}
\usepackage{graphicx}
\usepackage[authoryear, numbers, semicolon, sort&compress]{natbib}
\usepackage{ragged2e}
\usepackage{lmodern}
\title{Title of the Presentation}
\author[abc]{Author Name}
\institute{Institution}
\date{}
\justifying
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\subsection{What is Allee effect}
\begin{frame}
\begin{beamerboxesrounded}[shadow=true]{What is ...............}
\begin{itemize}\justifying
\item<alert@1> \textbf<1>{The \cite{aziz2003boundedness}}
\end{itemize}
\begin{itemize}\justifying
\pause
\item<alert@2> \textbf<2>{This \cite{aziz2003boundedness}}
\end{itemize}
\end{beamerboxesrounded}
\end{frame}
\begin{frame}
\label{Bibliography}
\begin{center}
\Huge {References}
\end{center}
\bibliographystyle{spbasic}
\bibliography{bibl}
\end{frame}
\end{document}