Skip to content

Commit 71878d4

Browse files
committed
Initial commit
0 parents  commit 71878d4

File tree

3 files changed

+111
-0
lines changed

3 files changed

+111
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# LaTeX intermediate files
2+
*.aux
3+
*.bbl
4+
*.blg
5+
*.brf
6+
*.idx
7+
*.ilg
8+
*.ind
9+
*.lof
10+
*.log
11+
*.lot
12+
*.nav
13+
*.out
14+
*.snm
15+
*.toc
16+
*.acn
17+
*.acr
18+
*.alg
19+
*.glg
20+
*.glo
21+
*.gls
22+
*.ist
23+
*.fls
24+
*.fdb_latexmk
25+
*.synctex.gz
26+
*.run.xml
27+
*.bcf
28+
29+
# Editors and IDEs
30+
# VSCode
31+
.vscode/
32+
*.code-workspace
33+
# LaTeX editor files (TeXShop, TeXworks, etc.)
34+
*.pdfsync
35+
*.synctex
36+
*.synctex(busy)
37+
38+
# PDF files (usually generated as output)
39+
*.pdf
40+
41+
# Backup files
42+
*~
43+
*.bak
44+
*.backup
45+
*.tmp
46+
*.swp
47+
*.swo

01-intro.tex

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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. Introduction]{Parallel Programming course. Introduction}
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{Introduction}
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+
% Optional references slide
60+
\begin{frame}{References}
61+
\end{frame}
62+
63+
\end{document}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Slides for parallel programming course

0 commit comments

Comments
 (0)