-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeRham.tex
More file actions
125 lines (107 loc) · 3.06 KB
/
DeRham.tex
File metadata and controls
125 lines (107 loc) · 3.06 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
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
%Formattazione
%Scelgo report al posto di article per poter dividere l'elaborato in 3 capitoli
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
%Pacchetti che avevo già in altri file
%\usepackage{ucs}
\usepackage[british]{babel}
%Per i circuiti quantistici
%\usepackage[braket, qm]{qcircuit}
%I guess you cannot really write mathematics without ams
\usepackage{amsmath}
%It has the script font in math env, I use it for cnf (smooth fns)
\usepackage{mathrsfs}
\usepackage{amssymb}
\usepackage{amsthm}
%I don't think I'll need it in the near future, I contains symbols like Dirac notation and hslash.
\usepackage{physics}
%Pacchetti aggiunti dall'internet:
%Questo Pacchetto serve per modificare le impostazioni del line spacing inline
\usepackage{setspace}
\usepackage{graphicx}
%Per centrare il circuito di QFT (Chapter_2)
\usepackage{changepage}
%Per le liste nelle descrizioni degli algoritmi
\usepackage{enumitem}
%Per la sfera di Bloch
\usepackage{tikz}
%Per i diagrammini commutativi
\usetikzlibrary{cd}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{decorations.pathmorphing} %For squiggly lines
% Per sistemare il simbolo di misurazione nel testo
\usepackage{adjustbox}
%Per le appendici
\usepackage[title]{appendix}
%Per il Frontespizio
\usepackage{tabularx}
\usepackage{geometry}
%Dal Darione
\usepackage{layaureo}
\usepackage{subfiles}
\usepackage{mathtools}
\setlist[description]{leftmargin=3.2em,labelindent=3.2em}
%Comandi miei
%Sillabazione
%\hyphenation{distinto}
\newcommand{\R}{\mathbb{R}}
\renewcommand{\P}{\mathbb{P}}
\newcommand{\C}[1]{\mathbb{C}^{#1}}
\newcommand{\Zn}[1]{\mathbb{Z}/{#1}\mathbb{Z}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\T}{\mathbb{T}}
\newcommand{\bket}[2]{\braket{#1\,}{\, #2}}
\newcommand{\bbket}[3]{\mel{#1\,}{\, #2 \,}{\, #3}}
\renewcommand{\op}[2]{\ket{#1}\! \bra{#2}}
%New useful operators:
\DeclareMathOperator{\sign}{sign}
\DeclareMathOperator{\ima}{im}
\DeclareMathOperator{\fct}{Fct}
\newtheorem{post}{Postulate}
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheoremstyle{example}
{}%{1.0em}%〈Space above〉
{}%{0.7em}%〈Space below〉
{}%〈Body font〉
{}%〈Indent amount〉
{\bfseries}%〈Theorem head font〉
{.}%〈Punctuation after theorem head〉
{.5em}%〈Space after theorem head〉
{}%Theorem head: empty = default
\newtheoremstyle{definition}
{}%{1.0em}
{}%{0.7em}
{}
{}
{\bfseries}
{.\\*}
{0.5em}
{\thmname{#1}\thmnumber{ #2}\thmnote{: #3}}%〈Theorem head can be left empty, meaning ‘normal’)
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}%[section]
\newtheorem{rem}[thm]{Remark}
\newtheorem{ex}[thm]{Example}
\numberwithin{equation}{section}
%Simbolo QED
\renewcommand{\qedsymbol}{\ensuremath{\blacksquare}}
%Bibliografia
\usepackage{csquotes}
\usepackage[
backend=biber,
style=alphabetic,
citestyle=alphabetic,
doi=false,
url=false,
isbn=false
]{biblatex}
\usepackage{hyperref}
\addbibresource{Bibliography.bib}
\begin{document}
\subfile{Content}
\nocite{*}
\printbibliography
\end{document}