Templates

Hria Beamer

Preview

Hria Beamer

Beamer template for the HRIA project (Romanian AI Hub initiative)

Category

Presentation

License

Free to use (MIT)

File

template.tex

template.texRead-only preview
\documentclass[aspectratio=169]{beamer}
% some nicer environments
\usepackage{booktabs}

% <<< BEGIN theme

% remember to set the language if using Romanian
\usepackage[english]{babel}
\usetheme[language=english]{hria}

\usepackage{qrcode}

% remove navigation symbols
\beamertemplatenavigationsymbolsempty

% set how hidden items are displayed: invisible / transparent / dynamic
\setbeamercovered{transparent}

\ifpdftex
    \usepackage{sourcesanspro}
\else
    \usepackage{unicode-math}
    \usepackage{sourcesanspro}

    % FIXME: this seems to be the ``official'' font, but it looks a bit square-y to me
    % and it's not doing a great job at romanian diacritics (see ș and ț), so maybe
    % better to leave it out unless there's a very good reason not to?
    % \IfFontExistsTF{Titillium Web}{
    %     \setmainfont{Titillium Web}
    %     \setsansfont{Titillium Web}
    %     \setmathfont{Fira Math}[Scale=0.95]
    % }{}
\fi

% >>> END

% <<< BEGIN metadata

\title{HRIA Theme Template}
% \subtitle{Example Stylings of the HRIA Theme}
\author[H. J. F.]{Dr. Professor Hubert J. Farnsworth}
\institute{Academy of Science, New New York}
\date{24th January, 2026}
% \venue{My Awesome Conference --- 24/01/2026}

% >>> END

\begin{document}

\titleframe

\begin{frame}{HRIA Theme}
\framesubtitle{A short introduction to the HRIA theme}

The \textbf{HRIA Theme} (used as \texttt{\textbackslash usetheme\{hria\}}) is a
modern theme for Beamer based on some exiting HRIA documents\footnotemark[1].

\bigskip
It comes with a few nifty features:
\begin{itemize}
    \item Use of the HRIA colors consistent with other documents.
    \item Clean typography and spacing.
    \item Customized environments.
\end{itemize}

\bigskip
Separate parts are available as e.g. \texttt{\textbackslash usecolortheme\{hria\}}!

\footnotetext[1]{\tiny
\url{https://hria.upb.ro/wp-content/uploads/2025/06/HRIA-Brosura-06-2025.pdf}.
}
\end{frame}

\begin{frame}{HRIA Theme: Colors and Fonts}

This theme uses the \emph{Adobe Source Sans Pro} font. This is a clean \emph{sans serif}
font from Adobe that is freely available.

\bigskip
The theme has three standard colors:
\begin{itemize}
    \item A nice \textcolor{HRIALightBlue}{\textbf{light blue}} (\texttt{HRIALightBlue}).
    \item A bolder \textcolor{HRIADarkBlue}{\textbf{dark blue}} (\texttt{HRIADarkBlue}).
    \item An attention grabbing \textcolor{HRIAGreen}{\textbf{green}}
    (\texttt{HRIAGreen})!
    \item Variants \texttt{color!x} can also be used to darken or lighten them
\end{itemize}

\bigskip
These can be used for emphasizing \textcolor{HRIALightBlue}{text} or for
more obvious \alert{alerts}. Standard \textbf{bold} and \textit{italic} emphasis
can of course also be used!
\end{frame}

\begin{frame}{HRIA Theme: Blocks}
We have various standard Beamer blocks styled in a pleasing fashion.

\begin{block}{Block 1}
Some block block.
\end{block}

\begin{alertblock}{Alert 1}
Some alert block.
\end{alertblock}

\begin{exampleblock}{Example 1}
Some example block.
\end{exampleblock}
\end{frame}

\begin{frame}{HRIA Theme: Lists}
\textbf{Itemize}

\begin{itemize}
    \item Itemize lists are nicely customized ...
    \begin{itemize}
        \item All the way down ...
        \begin{itemize}
            \item To the third level!
        \end{itemize}
    \end{itemize}
\end{itemize}

\textbf{Enumerate}

\begin{enumerate}
    \item We can also enumerate!
    \item Many things!
    \item It's great!
\end{enumerate}

\textbf{Description}

\begin{description}
    \item[HRIA] And describe the project in exquisite detail, so that we
        can capture all its multiline greatness!
\end{description}
\end{frame}

\begin{frame}{HRIA Theme: Animations}

You can do a standard reveal with \texttt{[<+->]}.
\bigskip

\begin{itemize}[<+->]
    \item This is\alert<4>{ really} important.
    \item Now this.
    \item And now this.
\end{itemize}

\visible<4->{
\pause
\bigskip
You can also do an alerted reveal with \texttt{[<+- | alert@+>]}.
\bigskip

\begin{itemize}[<+- | alert@+>]
    \item This is important.
    \item Now this.
    \item And now this.
\end{itemize}
}
\end{frame}

\begin{frame}{HRIA Theme: Figures}

\begin{columns}
\begin{column}{0.5\textwidth}
\begin{figure}
\begin{tikzpicture}
    % Draw axes
    \draw [<->,thick] (0,2) node (yaxis) [above] {$y$}
        |- (3,0) node (xaxis) [right] {$x$};
    % Draw two intersecting lines
    \draw (0,0) coordinate (a_1) -- (2,1.8) coordinate (a_2);
    \draw (0,1.5) coordinate (b_1) -- (2.5,0) coordinate (b_2);
    % Calculate the intersection of the lines a_1 -- a_2 and b_1 -- b_2
    % and store the coordinate in c.
    \coordinate (c) at (intersection of a_1--a_2 and b_1--b_2);
    % Draw lines indicating intersection with y and x axis. Here we use
    % the perpendicular coordinate system
    \draw[dashed] (yaxis |- c) node[left] {$y'$}
        -| (xaxis -| c) node[below] {$x'$};
    % Draw a dot to indicate intersection point
    \fill[HRIALightBlue] (c) circle (2pt);
\end{tikzpicture}
\caption{A simple figure.}
\end{figure}
\end{column}

\begin{column}{0.4\textwidth}
\centering
\begin{table}
\caption{Largest cities in the world (source: UN 2018 population estimates
from Wikipedia)}
\begin{tabular}{@{} lr @{}}
    \toprule
    City & Population\\
    \midrule
    Tokyo & 37,468,000 \\
    Delhi & 28,514,000 \\
    Shanghai & 25,582,000 \\
    São Paolo & 21,650,000 \\
    \bottomrule
\end{tabular}
\end{table}
\end{column}
\end{columns}
\end{frame}

\begin{frame}{HRIA Theme: Formulas}
\framesubtitle{Gamma function definitions}

\begin{itemize}
    \item Euler's integral definition:
    \[
    \Gamma(z) = \int_0^{\infty} t^{z-1} e^{-t} \, \mathrm{d}t, \qquad \operatorname{Re}(z) > 0.
    \]
    \item Euler's product definition:
    \[
    \Gamma(z) = \frac{1}{z} \prod_{n=1}^{\infty} \frac{\left(1 + \tfrac{1}{n}\right)^z}{1 + \tfrac{z}{n}}.
    \]
    \item Weierstrass' product definition (use the Euler--Mascheroni constant $\gamma$):
    \[
    \frac{1}{\Gamma(z)} = z e^{\gamma z} \prod_{n=1}^{\infty} \left(1 + \frac{z}{n}\right) e^{-z/n}.
    \]
\end{itemize}
\end{frame}

\begin{frame}[plain,noframenumbering]{Acknowledgements}
\vfill
\centering

\begin{quote}
\inserthriafunding
\end{quote}

\bigskip
\inserthriaqrcode

\medskip
\Large
\href{\inserthriaurl}{\textbf{\texttt{\inserthriaurl}}}
\vfill
\end{frame}

\begin{frame}[plain,noframenumbering]{}
\vfill
\begin{center}
{\Large \textbf{Hubert J. Farnsworth} }

\textit{Academy of Science, New New York}

\bigskip

\begin{tabular}{ll}
\texttt{Email:} &
    \href{mailto:hubert.farnsworth@e-uvt.ro}{\texttt{hubert.farnsworth@e-uvt.ro}} \\
\texttt{ORCiD:} &
    \href{https://orcid.org/0000-0003-1399-3606}{\texttt{0000-0003-1399-3606}} \\
\texttt{Website:} &
    \href{https://github.com/alexfikl/hria-beamer}{\texttt{https://github.com/alexfikl/hria-beamer}}
\end{tabular}
\end{center}
\vfill
\end{frame}

\end{document}

% vim: foldmarker=<<<,>>>:foldmethod=marker
Preview
Hria Beamer preview
Hria Beamer LaTeX Template | Bibby | Bibby AI