99 lines
2.6 KiB
TeX
99 lines
2.6 KiB
TeX
%% Requires compilation with XeLaTeX or LuaLaTeX
|
|
\documentclass[10pt,table,dvipsnames, t, compress, aspectratio=169]{beamer}
|
|
|
|
%% Packages
|
|
\usepackage{tikz} % Load TikZ for creating graphics
|
|
\usetikzlibrary{tikzmark,calc,arrows.meta,shapes.arrows,decorations.pathreplacing}
|
|
% tikzmark: mark locations in the document
|
|
% calc: do coordinate calculations in TikZ
|
|
% arrows.meta: customize arrow styles
|
|
% shapes.arrows: predefined arrow shapes for nodes
|
|
% decorations.pathreplacing: decorate or replace paths (e.g., with brackets)
|
|
|
|
\usepackage{caption, subcaption, bbm, mathtools, amsmath, lmodern}
|
|
\usepackage{graphicx, amssymb, cancel, pifont, bm}
|
|
\usefonttheme[onlymath]{serif}
|
|
|
|
% Bibliography
|
|
\usepackage[style=apa, backend=biber]{biblatex}
|
|
\addbibresource{sn-bibliography.bib}
|
|
|
|
% Theme
|
|
\usetheme{BokeronTemp}
|
|
|
|
% Hyperref
|
|
\usepackage{hyperref}
|
|
% url in blue
|
|
\newcommand{\bluehref}[2]{%
|
|
\begingroup
|
|
\hypersetup{urlcolor=blue}%
|
|
\href{#1}{\color{blue}#2}%
|
|
\endgroup
|
|
}
|
|
|
|
% Color box
|
|
\usepackage{xcolor}
|
|
\usepackage{tcolorbox}
|
|
\newtcolorbox{mybox}{colback=BoxLightBlue, colframe=BokeronBlue, width=0.9\linewidth}
|
|
|
|
%% Title
|
|
\title{\textbf{\large Presentation Title}}
|
|
\author{ Abdullah Sultan\\
|
|
\texttt{masu@uma.es}
|
|
\\
|
|
Alguien Más\\
|
|
\texttt{alguien@uma.es}}
|
|
\institute[Open Bokeron]{Open Bokeron\\ https://openbokeron.uma.es}
|
|
\date{DD/MM/YYY}
|
|
|
|
|
|
\begin{document}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% TITLE SLIDES
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
{
|
|
\usebackgroundtemplate{
|
|
\begin{tikzpicture}[remember picture, overlay]
|
|
\node[at=(current page.center)] { \includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{background/OpenBokeronPresentation_Cover.jpg} % portada
|
|
};
|
|
\end{tikzpicture}
|
|
}
|
|
\begin{frame}[plain]
|
|
\titlepage
|
|
\end{frame}
|
|
}
|
|
|
|
% Current section
|
|
\AtBeginSection[ ]
|
|
{
|
|
\begin{frame}{}
|
|
\tableofcontents[currentsection,currentsubsection,
|
|
sectionstyle=show/shaded]
|
|
\end{frame}
|
|
}
|
|
% Current subsection
|
|
\AtBeginSubsection[ ]
|
|
{
|
|
\begin{frame}{}
|
|
\tableofcontents[currentsection,currentsubsection,
|
|
sectionstyle=show/shaded]
|
|
\end{frame}
|
|
}
|
|
|
|
\smallframetitle
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% Empezamos aquí
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\input{sections/Introduction}
|
|
\input{sections/OtherExamples}
|
|
\input{sections/Conclusion}
|
|
|
|
\frame[shrink=30] {\printbibliography}
|
|
|
|
\AtEndDocument{\usebeamertemplate{endpage}}
|
|
|
|
\end{document} |