-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
41 lines (31 loc) · 1.03 KB
/
main.tex
File metadata and controls
41 lines (31 loc) · 1.03 KB
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
\input{preamble.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Actual document
\begin{document}
% Cover page from univeristy template
\subfile{./cover_page.tex}
\newpage
\tableofcontents
\subfile{./introduction/introduction.tex}
\subfile{./modern-network-booting/modern-network-booting.tex}
\subfile{./architecture/architecture.tex}
\subfile{./implementation/implementation.tex}
\subfile{./development/development.tex}
\subfile{./conclusion.tex}
\emergencystretch=1em % Prevents overfull lines in bibliography
\printbibliography
% TEST CODE HIGHLIGHTING
% \begin{minted}{jsx}
% const Avatar = React.forwardRef<
% React.ElementRef<typeof AvatarPrimitive.Root>,
% React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
% >(({ className, ...props }, ref) => (
% <AvatarPrimitive.Root
% ref={ref}
% className={cn('relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full', className)}
% {...props}
% />
% ));
% Avatar.displayName = AvatarPrimitive.Root.displayName;
% \end{minted}
\end{document}