A professional LaTeX Beamer presentation template inspired by Universitas Gadjah Mada's visual identity. This template features a clean, modern design with UGM's signature blue color scheme and branding elements.
The template includes:
- Clean title page with UGM logo and branding
- Professional slide layouts with consistent styling
- UGM color scheme (deep blue #074363 with light grey accents)
- Footer with UGM website, slogan, and logo
- Custom frame title styling with blue accent bar
- Download or clone this repository
- Ensure you have a LaTeX distribution installed (TeX Live, MiKTeX, etc.)
- Open
main.texin your preferred LaTeX editor - Compile the document using
latexmk main.tex(refer the section below) - Customize the content for your presentation
latexmk main.texRead .latexmkrc for more details.
ugm-snowyblue-beamer-template/
βββ main.tex # Main presentation file with examples
βββ beamerthemeUGM.sty # UGM theme definition
βββ assets/ # Theme assets
βββ template-guidelines.pdf # Design guidelines reference
βββ readme.md # This file
- UGM Branding: Official colors, logos, and styling
- Professional Layout: Clean, academic presentation design
- Responsive Design: Works well with different aspect ratios
- Rich Typography: Uses Atkinson font family for modern look
- Comprehensive Examples: Detailed template with multiple slide types
- β Title slide with UGM branding
- β Table of contents
- β Text formatting (bold, italic, colors, alerts)
- β Block environments (standard, alert, example)
- β Mathematical equations and formulas
- β Multi-column layouts (2, 3, and custom widths)
- β Professional tables (basic, booktabs, colored)
- β Images and figures with captions
- β Image grids and layouts
- β Video embedding support
- β TikZ diagrams and flowcharts
- β Charts and graphs with PGFPlots
- β Code listings with syntax highlighting
- β Algorithms
- β Custom colored boxes with icons
- β Bibliography and references
Edit the following in main.tex:
\title{Your Presentation Title}
\subtitle{Your Subtitle}
\author{Your Name $|$ Contact Information}
\date{\today}The theme uses these colors (defined in beamerthemeUGM.sty):
\definecolor{ugmBlue}{HTML}{074363} % Primary UGM blue
\definecolor{ugmText}{HTML}{333333} % Text color
\definecolor{ugmLightGrey}{HTML}{F2F4FA} % Light background
\definecolor{ugmSlogan}{HTML}{666666} % Slogan textThe template uses the Atkinson font family. To change fonts:
\usepackage[sfdefault]{your-font-package}
\renewcommand{\familydefault}{\sfdefault}To modify the footer elements, edit the footline template in beamerthemeUGM.sty:
- Left: Website URL
- Center: UGM slogan
- Right: UGM logo
The template requires these LaTeX packages:
beamer- Presentation frameworkinputenc- UTF-8 input encodingfontawesome5- Iconsxcolor- Color supporttikz- Graphics and diagrams
amsmath- Mathematical formulasbooktabs- Professional tablesmulticol- Multi-column layoutstcolorbox- Colored boxeslistings- Code listingspgfplots- Charts and graphsalgorithm2e- Algorithm formattingmedia9- Video embedding
Most packages are included in standard LaTeX distributions. If missing:
TeX Live/MacTeX:
tlmgr install package-nameMiKTeX:
mpm --install package-name\begin{frame}
\frametitle{Your Slide Title}
Your content here...
\begin{itemize}
\item Bullet point 1
\item Bullet point 2
\end{itemize}
\end{frame}\begin{frame}
\frametitle{Two Columns}
\begin{columns}[T]
\begin{column}{0.48\textwidth}
Left column content
\end{column}
\begin{column}{0.48\textwidth}
Right column content
\end{column}
\end{columns}
\end{frame}\begin{frame}[fragile]
\frametitle{Code Example}
\begin{lstlisting}[language=Python]
def hello_world():
print("Hello, World!")
\end{lstlisting}
\end{frame}\begin{tcolorbox}[colback=ugmLightGrey,colframe=ugmBlue,title=Note]
Important information here
\end{tcolorbox}Compilation Errors:
- Ensure all required packages are installed
- Use
latexmkand ensure.latexmkrccorrectly setup - Check for missing image files
Font Issues:
- Install the Atkinson font or substitute with another font
- Use
\usepackage[sfdefault]{helvet}as fallback
Image Issues:
- Ensure image files are in the same directory
- Use relative paths for images
- Supported formats: PNG, JPG, PDF
TikZ/PGFPlots Issues:
- Complex diagrams may require multiple compilation runs
- Ensure tikz libraries are loaded:
\usetikzlibrary{...}
This template is created for academic and educational use. The UGM logos and branding elements remain property of Universitas Gadjah Mada.
Feel free to:
- Report issues
- Suggest improvements
- Submit pull requests
- Share your presentations made with this template
For issues related to:
- Template usage: Check the examples in
main.tex - LaTeX questions: Consult LaTeX documentation or Stack Exchange
- UGM branding: Follow official UGM guidelines
Created by: Harun | github.com/runsdev

