forked from giacThePhantom/AlgoritmiStruttureDati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefix.tex
48 lines (43 loc) · 1.38 KB
/
prefix.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
\documentclass[oneside]{book}
\usepackage[a4paper, total={6in, 8in}]{geometry}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{listings}
\usepackage{amssymb}
\usepackage[nottoc]{tocbibind}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage{fancyhdr}
\usepackage{makecell}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{pdfpages}
\usepackage{emptypage}
\usepackage{multicol}
\usepackage[ruled,vlined]{algorithm2e}
\pagestyle{fancy}
\fancyhf{}
\lhead{\rightmark}
\cfoot{\leftmark}
\rfoot{\thepage}
\lstset{
frame=tb, % draw a frame at the top and bottom of the code block
tabsize=4, % tab space width
showstringspaces=false, % don't mark spaces in strings
numbers=left, % display line numbers on the left
commentstyle=\color{green}, % comment color
keywordstyle=\color{red}, % keyword color
stringstyle=\color{blue}, % string color
breaklines=true,
postbreak=\mbox{\textcolor{green}{$\hookrightarrow$}\space}
}
\date{\textbf{\today}}
\author{
Giacomo Fantoni \\
\small Telegram: \href{https://t.me/GiacomoFantoni}{@GiacomoFantoni} \\[3pt]
Github: \href{https://github.com/whocares/repository}{Github Repository}}
\newcommand{\myparagraph}[1]{\paragraph{#1}\mbox{}\\}
\renewcommand*{\listalgorithmcfname}{}
\renewcommand*{\algorithmcfname}{}
\renewcommand*{\algorithmautorefname}{}
\renewcommand{\thealgocf}{}