Helianthus
Author
Richard Wong
Last Updated
a year ago
License
LaTeX Project Public License 1.3c
Abstract
A beamer theme with background image supports.
\documentclass[aspectratio=169]{beamer}
%\documentclass[handout,aspectratio=169]{beamer}
\usepackage{beamerthemehelianthus}
%%%%%% Refer to beamerthemehelianthus.md for details of using the package %%%%%%%
\title{Slide title}
\subtitle{Slide subtitle}
\author{Richard Wong}
\institute[rtk]{Institute of Richard Wong}
\date{1 January 2023}
\logo{%
\includegraphics[width=.08\paperwidth]{snowy-mountain-river-scene-png-5690341.png}%
\hskip2ex%
\includegraphics[width=.08\paperwidth]{nature-creek-mountain-design-5690340.png}%
}
\titlegraphic{
\begin{minipage}{.15\paperwidth}
\includegraphics[width=\linewidth]{nature-creek-mountain-design-5690340.png}%
\newline
\vskip2ex
\includegraphics[width=\linewidth]{snowy-mountain-river-scene-png-5690341.png}%
\end{minipage}
}
\leftfooter{Created with \LaTeX}
\rightfooter{Powered by Beamer}
\begin{document}
\titlebackgroundimage{petronas-towers-1222083.jpg}
\settitlepagestyle
\maketitle
\setbeamertemplate{title}[default][center]
\setbeamertemplate{author}[default][center]
\setbeamertemplate{institute}[default][center]
\maketitle
\section{Alpha}
\sectionbackgroundimage{Galaxy-backgrpund-01-hq.jpg}
\setsectionpagestyle
\frame{\sectionpage}
\subsection{Uno}
\sectionbackgroundimage{batu-1208710.jpg}
\frame{\subsectionpage}
\setcontentstyle
\begin{frame}{Frame with text}
\framesubtitle{Frame subtitle}
\centering
\textbf{Some centered-bold text}
\vspace{5mm}
Refer to \texttt{beamerthemehelianthus.md} for description of how to use this beamer theme
\end{frame}
\begin{frame}{Frame with blocks}
\begin{block}{Block title}
Block body
\end{block}
\begin{alertblock}{Alert block title}
Block body
\end{alertblock}
\begin{exampleblock}{Example block title}
Block body
\end{exampleblock}
\end{frame}
\begin{frame}{Enumerated items}
This is the style of enumerated items.
\begin{enumerate}
\item item one
\item item two
\item item three
\end{enumerate}
\end{frame}
\begin{frame}{Itemized items}
\framesubtitle{Itemized items}
This is the style of itemized items.
\begin{itemize}
\item item one
\item item two
\item item three
\end{itemize}
\end{frame}
\begin{frame}{Frame with table and footnote}
% \renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\centering
\def\arraystretch{1.3}\footnotesize
\begin{tabular}{lccr}
\textit{Column one} & \textit{Column two} & \textit{Column three} & \\\hline
\textbf{Row one} & \footnote{item a}a & info & 20\% \\
\textbf{Row two} & \footnote{item b}b & info & 10\% \\
\textbf{Row three} & \footnotemark[2]b, \footnote{item c}c & info & 20\% \\\hline
& & \textbf{Total} & \textbf{50\%}
\end{tabular}
\end{frame}
\backgroundimage{the-great-cave-1531993.jpg}
\setbackgroundstyle
\setbackgroundtint{black}
\setbackgroundtintopacity{0.5}
\begin{frame}
\begin{tikzpicture}[overlay,remember picture]
\node[anchor=east,font=\bfseries\Huge] at ([xshift=-2ex]current page.east) {\textcolor{white}{Thank} \textcolor{orange}{you}};
\end{tikzpicture}
\end{frame}
\end{document}