%%%%%%%%%%%%%%%%%% USAGE NOTES %%%%%%%%%%%%%%%%%%
% - This is a version of the University of Manchester presentation template that adds the \DocumentMetadata command. ltx-talk rather than beamer is used to achieve this. This template produces PDF files which include a range of features to improve accessibility. If interested you can read about accessibility in LaTeX PDF files here: https://www.latex-project.org/publications/indexbytopic/pdf/
% - The template works, but produces a few warnings for accessibility aspects which don't work yet, and you may find that a number of third party packages don't work yet. In particular titlesec, caption, subcaption glossaries, multirow and listings. If you use a package that doesn't support tagging, the PDF will still compile, but the accessibility of the PDF will be reduced.
% - As many further packages as wanted can be loaded. Below are just an example set. Note that template itself loads a number of packages, including hyperref and csquote. You can check packages at https://latex3.github.io/tagging-project/tagging-status/full to see whether they have been updated to support tagging.
% - Accessibility aspects in the PDF produced with the template have been checked with PDFix Desktop, PDFUA-2-ISO32005
% Only a relatively small number of items have been themed. Key an eye out for any items that pick up 'default' colours. These tend to be blue. Means you need to keep an eye on colour contrasts. Let me know any items which aren't being themed and I can update the theme to set suitable colours.
% https://github.com/rhstanton/accessible_LaTeX for excellent general resources on this topic
%%%%%%%%%%%%%%%%%% ACCESSIBILITY SETUP %%%%%%%%%%%%%%%%%%
% Do no edit, sets the PDF accessibility mode
\DocumentMetadata{%
lang=en-GB,
pdfversion=2.0,
pdfstandard={ua-2,a-4f},
tagging=on,
tagging-setup={math/alt/use,math/setup=mathml-SE},
}
%%%%%%%%%%%%%%%%%% DOCUMENT SETUP %%%%%%%%%%%%%%%%%%
\documentclass[white]{uom_ltx_talk_casson}
% Options: white, purple. One must be given
% Can also pass any option that ltx-talk itself accepts, e.g. aspect-ratio=4:3
%%%%%%%%%%%%%%%%%% DOCUMENT INFORMATION %%%%%%%%%%%%%%%%%%
\title[short-title = {Short form of presentation title}]{University of Manchester ltx-talk presentation}
\subtitle{Subtitle goes here}
\author{Alex Casson}
\date{}
\begin{document}
%%%%%%%%%%%%%%%%%% TITLE SLIDE %%%%%%%%%%%%%%%%%%
\begin{frame}
\maketitle
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 1 %%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{First slide}
Some text
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 2 %%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Second slide}
This is an example picture\\
\EditInstance{floatenv}{std}{horizontal-alignment = center}
\begin{figure}
\includegraphics[alt={University of Manchester logo}, width = 0.15\paperwidth, keepaspectratio=true]{images/uom_logo_colour.pdf}
\end{figure}
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 3 %%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Lists}
\begin{itemize}
\item First
\item Second
\item Third
\end{itemize}
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 4 %%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Equations}
This is an example equation
\[
a^{2} + b^{2} = c^{2}
\]
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 5 %%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Tables}
\begin{table}
\caption{Example table}
\centering
\tagpdfsetup{table/header-rows={1}}
\begin{tabular}{cc}
\toprule
Column 1 & Column 2 \\
\toprule
A & B \\
C & D \\
\bottomrule
\end{tabular}
\end{table}
\end{frame}
%%%%%%%%%%%%%%%%%% SLIDE 6 %%%%%%%%%%%%%%%%%%
\begin{frame*} % note is * form for reading code from an external file
\frametitle{Code}
listings coloured highlighting is not currently supported. Best at present
\VerbatimInput[fontsize=\footnotesize, numbers=left]{code/example_code.py}
\end{frame*}
%%%%%%%%%%%%%%%%%% END MATTER %%%%%%%%%%%%%%%%%%
\end{document}