Skip to content

Commit e445e6a

Browse files
authored
Merge pull request #10 from learning-process/template
Add slides template
2 parents af78380 + 5ab52e3 commit e445e6a

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

template.tex

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
\documentclass{beamer}
2+
3+
% Theme choice
4+
\usetheme{Madrid}
5+
6+
% Optional packages
7+
\usepackage{graphicx} % For including images
8+
\usepackage{amsmath} % For math symbols and formulas
9+
\usepackage{hyperref} % For hyperlinks
10+
11+
% Title, author, date, and institute (optional)
12+
\title[Parallel Programming. ---Class name>]{Parallel Programming course. ---Class name---}
13+
\author{Obolenskiy Arseniy, Nesterov Alexander}
14+
\institute{Nizhny Novgorod State University}
15+
16+
\date{\today} % or \date{Month Day, Year}
17+
18+
% Redefine the footline to display both the short title and the university name
19+
\setbeamertemplate{footline}{
20+
\leavevmode%
21+
\hbox{%
22+
\begin{beamercolorbox}[wd=.45\paperwidth,ht=2.5ex,dp=1ex,leftskip=1em,center]{author in head/foot}%
23+
\usebeamerfont{author in head/foot}\insertshortinstitute % Displays the university name
24+
\end{beamercolorbox}%
25+
\begin{beamercolorbox}[wd=.45\paperwidth,ht=2.5ex,dp=1ex,leftskip=1em,center]{author in head/foot}%
26+
\usebeamerfont{author in head/foot}\insertshorttitle % Displays the short title
27+
\end{beamercolorbox}%
28+
\begin{beamercolorbox}[wd=.1\paperwidth,ht=2.5ex,dp=1ex,rightskip=1em,center]{author in head/foot}%
29+
\usebeamerfont{author in head/foot}\insertframenumber{} / \inserttotalframenumber
30+
\end{beamercolorbox}}%
31+
\vskip0pt%
32+
}
33+
34+
\begin{document}
35+
36+
% Title slide
37+
\begin{frame}
38+
\titlepage
39+
\end{frame}
40+
41+
% Table of Contents (optional)
42+
\begin{frame}{Contents}
43+
\tableofcontents
44+
\end{frame}
45+
46+
% Section
47+
\section{---Section name---}
48+
49+
% Slide 1
50+
\begin{frame}{Slide}
51+
\end{frame}
52+
53+
% Thank You Slide
54+
\begin{frame}
55+
\centering
56+
\Huge{Thank You!}
57+
\end{frame}
58+
59+
\begin{frame}{References}
60+
\end{frame}
61+
62+
\end{document}

0 commit comments

Comments
 (0)