-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentation.tex
141 lines (121 loc) · 2.91 KB
/
presentation.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
%
% Example document for using the hhuBeamer-class.
% PLEASE read carefully.
%
% You can change fontsize here - the titlepage has fixed font size
\documentclass[11pt]{beamer}
% you can switch between "english" and "german"
% there might be some babel-error on the first compile time
% but normally it can be ignored
% Use frametitlestandard for standard psoition of frametitle
% or framtetitletop for top-position of frametitle
\usetheme[english,frametitletop]{hhu}
%
% Note: Use \hhu to insert the correct spelling of the HHU's name
% Note: Use \noframetitle for frames without title
% Note: Use \begin{highlighted}...\end{highlighted} to emphasize formulas
% Note: There are predefined colors hhuX with
% X = Blue,Green,Red,Orange,Darkblue,Iceblue,Turquoise,Black.
% Please use only these colors and use hhuBlack and hhuBlue
% as standard colors.
%
%
\usepackage{minted}
% https://gist.github.com/mutbuerger/e65575180b99e9074129
\usepackage{tcolorbox}
\usepackage{multimedia}
\tcbuselibrary{skins, breakable}
\usetikzlibrary{shadings, backgrounds}
\newtcolorbox{codeblock}[2][]
{%
enhanced,
colbacktitle=titlebg,
coltitle=titlecolor,
interior style={%
top color=codebg,
bottom color=codebg
},
boxrule=0mm,
arc=0.6mm,
width= (\linewidth),
fonttitle=\footnotesize,
adjusted title=\texttt{#1},
after title={%
\hfill\setlength{\fboxsep}{2pt}
\colorbox{languagebg}{\textcolor{black}
{\footnotesize{\texttt{#2}}}}
},
overlay={%
\begin{tcbclipinterior}\fill[numberbg] (frame.south west)
rectangle ([xshift=5mm]frame.north west);
\end{tcbclipinterior}
},
top=0mm,
bottom=0mm,
left=5mm,
right=0mm
}
\newtcolorbox{terminalblock}[1][]
{%
enhanced,
colbacktitle=titlebg,
coltitle=titlecolor,
interior style={%
top color=termbg,
bottom color=termbg
},
boxrule=0mm,
arc=0.6mm,
width= (\linewidth),
fonttitle=\footnotesize,
top=1mm,
bottom=0mm,
left=1mm,
right=1mm
}
\newmintedfile{cpp}{
linenos,
autogobble,
breaklines=true,
breaksymbol=,
breakindent=4mm,
breakbefore=.,
breakbeforesymbolpre=,
breakbeforesymbolpost=,
baselinestretch=0.8,
framesep=5mm,
numbersep=7pt,
fontsize=\footnotesize,
style=manni
}
\newmintedfile{text}{
autogobble,
breaklines=true,
breaksymbol=,
breakindent=4mm,
breakbefore=.,
breakbeforesymbolpre=,
breakbeforesymbolpost=,
baselinestretch=0.8,
framesep=5mm,
fontsize=\footnotesize
}
\AtBeginEnvironment{terminalblock}{\color{white}}
\title{hhuOS}
\date{18.07.2024\\Institute of Computer Science \\Heinrich Heine University Düsseldorf}
\author{Christian Gesse, Fabian Ruhland}
\institute{}
\begin{document}
\frame[plain]{\maketitle}
\include{sections/introduction}
\include{sections/memory}
\include{sections/process}
\include{sections/filesystem}
\include{sections/game}
\include{sections/todo}
%\begin{frame}[standout]{Demo}
% \begin{center}
% \includegraphics[width=.6\textwidth]{img/hhuos_main}
% \end{center}
%\end{frame}
\end{document}