All Projects → nschloe → ua-beamer

nschloe / ua-beamer

Licence: MIT License
A LaTeX beamer theme for the University of Antwerp

Programming Languages

TeX
3793 projects
Makefile
30231 projects

Projects that are alternatives of or similar to ua-beamer

templateestagiofga
Este repositório contém o template para a realização do relatório final da disciplina de estágio obrigatório da FGA - UnB em LaTeX
Stars: ✭ 22 (-68.57%)
Mutual labels:  latex
tikz favorites
collection of favorite TikZ graphics
Stars: ✭ 62 (-11.43%)
Mutual labels:  latex
ThinkRubyBuild
Forked from https://github.com/AllenDowney/ThinkPython2
Stars: ✭ 27 (-61.43%)
Mutual labels:  latex
snuthesis
An UNOFFICIAL LaTeX thesis template for Seoul National University (SNU), Korea.
Stars: ✭ 38 (-45.71%)
Mutual labels:  latex
LinearOne
LinearOne is a prototype theorem prover for first-order (multiplicative, intuitionistic) linear logic.
Stars: ✭ 16 (-77.14%)
Mutual labels:  latex
Learn-to-program-with-C AR
ترجمة لدرس تعلّم البرمجة بلغة السي الخاص بموقع OpenClassrooms
Stars: ✭ 51 (-27.14%)
Mutual labels:  latex
WHUT-Bachelor
武汉理工大学本科生毕业设计(论文) LaTeX 模板 LaTeX Template for Bachelor's Degree Thesis at Wuhan University of Technology (WHUT)
Stars: ✭ 18 (-74.29%)
Mutual labels:  latex
pape-rs
A Latex template to PDF generation web service written in Rust.
Stars: ✭ 69 (-1.43%)
Mutual labels:  latex
latex-action
GitHub Action to compile LaTeX documents
Stars: ✭ 123 (+75.71%)
Mutual labels:  latex
pdfcount
An R Shiny App to Count Words in a PDF Document
Stars: ✭ 26 (-62.86%)
Mutual labels:  latex
DIME-LaTeX-Templates
DIME's LaTeX templates and LaTeX exercises teaching anyone new to LaTeX how to use LaTeX and how to use DIME's templates
Stars: ✭ 32 (-54.29%)
Mutual labels:  latex
latex-beamer-teamplates
My LaTeX Beamer Templates for Daily Presentation and Documentation.
Stars: ✭ 14 (-80%)
Mutual labels:  latex
tex2py
converts LaTeX into a Python parse tree, allowing navigation using the default or a custom hierarchy
Stars: ✭ 70 (+0%)
Mutual labels:  latex
cv
A LaTeX template for academic CVs
Stars: ✭ 129 (+84.29%)
Mutual labels:  latex
elte-ik-pti-bsc-zarovizsga
ELTE IK - Programtervező Informatikus BSc Záróvizsga tételek kidolgozása
Stars: ✭ 26 (-62.86%)
Mutual labels:  latex
i.upmath.me
Upmath LaTeX Renderer
Stars: ✭ 42 (-40%)
Mutual labels:  latex
letter-2-reviewers-LaTeX-template
A LaTeX template to write response letters for journal revisions
Stars: ✭ 32 (-54.29%)
Mutual labels:  latex
alfred-latex-symbols-workflow
🔎 Alfred 3-4 workflow to search for latex symbol commands
Stars: ✭ 33 (-52.86%)
Mutual labels:  latex
vimtips
📖 Tips for Vim
Stars: ✭ 31 (-55.71%)
Mutual labels:  latex
CV-latex
latex template for CV
Stars: ✭ 19 (-72.86%)
Mutual labels:  latex

UA beamer theme

Build Status

This is a LaTeX beamer theme for the University of Antwerp. It is designed to match the official UA templates for Microsoft PowerPoint.

dark title

Installation

Retrieve ua-beamer via GitHub and place it in a directory where LaTeX can find it. For user installations on Unix, this is typically ~/texmf. Running texhash may be required.

You can check the integrity of your installation with

$ kpsewhich beamerfontthemeUniversiteitAntwerpen.sty
/home/username/texmf/tex/latex/ua-beamer/theme/beamerfontthemeUniversiteitAntwerpen.sty

Usage

Using the theme is as simple as invoking beamer's \usetheme:

\documentclass[compress]{beamer}

\usetheme[light,darktitle,framenumber,totalframenumber]{UniversiteitAntwerpen}

\usepackage{lipsum}

\title{Some slides with a UA beamer theme}
\subtitle{This is a dummy subtitle}

\author{Nico~Schl\"omer}

\begin{document}

\maketitle

\begin{frame}
\frametitle{A first test frame}
Some dummy text.
\end{frame}

\end{document}

See here for a more verbose example.

Note that the official font of Universiteit Antwerpen is Underware's Auto 1. If you have access to it, you can include it by adding

% Fonts. Use Auto 1, the official UA font.
\usepackage{fontspec,microtype}
\usepackage{unicode-math}
\defaultfontfeatures{Ligatures=TeX, Scale=MatchLowercase, Numbers=Lining}
\setmainfont{auto1}
\setsansfont{auto1}
\setmathfont{XITS Math} % for math symbols, can be any other OpenType math font
\setmathfont[range=\mathup]  {auto1}
\setmathfont[range=\mathbfup]{auto1 Bold}
\setmathfont[range=\mathbfit]{auto1 Bold Italic}
\setmathfont[range=\mathit]  {auto1 Italic}

to the document preamble.

All options are documented as part of the manual. To compile,

cd doc/manual && make

License

This software is published under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].