forked from samsartor/lug-gpucomputing-talk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlug.cls
50 lines (37 loc) · 1.29 KB
/
lug.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{lug}[2016/08/31]
\LoadClass{beamer}
\usetheme[numbering=none,progressbar=frametitle,block=fill]{metropolis}
\setbeamercovered{dynamic}
\RequirePackage{graphicx}
\RequirePackage{ifxetex}
\ifxetex\RequirePackage{fontspec}\fi
\RequirePackage{hyperref}
\renewcommand*\footnoterule{}
\beamertemplatenavigationsymbolsempty%
\def\logoimage{graphics/lug}
\setlength\parindent{0pt}
\AtBeginDocument{%
\maketitle
}
\AtEndDocument{%
\begin{frame}{Copyright Notice}
\begin{columns}
\begin{column}{0.7\textwidth}
\small
This presentation was from the \textbf{Mines
Linux Users Group}. A mostly-complete archive of our
presentations can be found online at
\url{https://lug.mines.edu}.
\bigskip
Individual authors may have certain copyright or licensing
restrictions on their presentations. Please be certain to
contact the original author to obtain permission to reuse or
distribute these slides.
\end{column}
\begin{column}{0.3\textwidth}
\includegraphics[width=\textwidth]{\logoimage}
\end{column}
\end{columns}
\end{frame}
}