-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbash-3.tex
80 lines (66 loc) · 1.5 KB
/
bash-3.tex
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
\documentclass{beamer}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{float}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing, decorations.pathreplacing, decorations.shapes}
\usepackage{hyperref}
\usepackage{array}
\setbeamertemplate{navigation symbols}{}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=blue
}
\urlstyle{same}
\title{Bash Workshop III: Scripting}
\author{Frederick Yin}
\institute{JITech}
\date{2024}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{wksp}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=4
}
\lstset{style=wksp}
\graphicspath{{./img/}}
\AtBeginSection[]{
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents[currentsection]
\end{frame}
}
\renewcommand{\tt}{\texttt}
\begin{document}
\frame{\titlepage}
\include{05-scripting}
\begin{frame}
\frametitle{The End}
\vspace{1cm}
\centering \Huge {Thank You For Coming!}
\end{frame}
% \begin{frame}
% \frametitle{Credits}
% \begin{itemize}
% \end{itemize}
% \end{frame}
\end{document}