-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
71 lines (54 loc) · 2.03 KB
/
main.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
%----------------------------------------------------------------------------------------
% PACKAGES AND THEMES
%----------------------------------------------------------------------------------------
\documentclass[aspectratio=43,xcolor=dvipsnames]{beamer}
\usetheme{Simple}
\usepackage{hyperref}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage{tabularx}
\usepackage{listings}
\usepackage{ulem}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
% The title
\title{Arch Linux}
\subtitle{Una distribuzione semplice}
\author {Davide Carnemolla}
\institute % Your institution may be shorthand to save space
{
% Your institution for the title page
Dipartimento di Matematica e Informatica \\
Università degli Studi di Catania
\vskip 100pt
Saturday Morning Snippets 2021
}
\date{}
%----------------------------------------------------------------------------------------
% PRESENTATION SLIDES
%----------------------------------------------------------------------------------------
\begin{document}
\begin{frame}
% Print the title page as the first slide
\titlepage
\end{frame}
\begin{frame}{Panoramica}
% Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
\tableofcontents
\end{frame}
%------------------------------------------------
\section{Cos'è una distribuzione GNU/Linux?}
%------------------------------------------------
\input{Distribuzione}
\section{Cos'è Arch Linux?}
\input{Arch}
\section{Installazione Arch Linux}
\input{Installazione}
\section{Strumenti Utili}
\input{Strumenti}
\section{Conclusioni}
\input{Conclusioni}
\input{Contatti}
%----------------------------------------------------------------------------------------
\end{document}