This repository has been archived by the owner on Dec 22, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lug.cls
54 lines (41 loc) · 1.4 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
50
51
52
53
\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{minted}
\RequirePackage{xcolor}
\RequirePackage{hyperref}
\renewcommand*\footnoterule{}
\setminted{autogobble,python3,mathescape}
%\usemintedstyle{emacs}
\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}
}