-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.sty
109 lines (95 loc) · 3.63 KB
/
style.sty
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
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{style}[09/10/2018 File di stile per Sistemi-Dinamici]
%
\usepackage[T1]{fontenc}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage[bookmarks, colorlinks]{hyperref} % Genera indice e permette di cliccare nel pdf, colorlinks fa il link colorati in rosso invece delle box.
% PACCHETTI PER LA SCRITTURA MATEMATICA
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{enumitem}
\usepackage{cancel}
\usepackage{framed}
\usepackage{commath} % Comandi per derivate (differenziale: \dif{x}, derivata liebeniz: \od[n]{f}{x}, derivata parziale: \pd[n]{f}{x}, mixed partial derivative: \md{f}{5}{x}{2}{y}{3})
\usepackage{faktor} % Per quoziente
\usepackage{booktabs}
\usepackage{tabularx}
% IMMAGINI
\usepackage{graphics}
\usepackage{subfig}
% TIKZ
\usepackage{pgf,tikz,pgfplots}
\usepackage{tikz-cd}
\pgfplotsset{compat=1.15}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
% Permette di specificare nelle matrici la formattazione come nelle tabelle
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{%
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}}
\makeatother
% OPERATORI LOGICI
\newcommand{\vel}{\vee}
%\renewcommand{\and}{\wedge}
\newcommand{\liff}{\Longleftrightarrow}
\renewcommand{\iff}{\Leftrightarrow}
% TOPOLOGIA
\newcommand{\ouv}[1]{{#1}^{\circ}} % Parte interna
\newcommand{\clo}[1]{\overline{#1}} % Chiusura
\newcommand{\fron}[1]{\partial{#1}} % Frontiera
\newcommand{\der}[1]{D{(#1)}} % Derivato
%\newcommand{\di}[2]{d{\left(#1, #2\right)}} % Distanza
% INSIEMISTICA E FUNZIONI
\newcommand{\N}{\mathbb{N}} % Numeri naturali
\newcommand{\Z}{\mathbb{Z}} % Numeri interi relativi
\newcommand{\Q}{\mathbb{Q}} % Numeri razionali
\newcommand{\R}{\mathbb{R}} % Numeri reali
\newcommand{\C}{\mathbb{C}} % Numeri complessi
\newcommand{\K}{\mathbb{K}} % Campo K generico
\renewcommand{\S}{\mathbb{S}} % Sfera
\newcommand{\T}{\mathbb{T}} % Toro
\renewcommand{\P}{\mathscr{P}} % Insieme delle parti
\renewcommand{\emptyset}{\varnothing} % Insieme vuoto
\newcommand{\Rel}{\mathcal{R}} % Relazione
\newcommand{\Id}{\mathrm{Id}} % Identità
\newcommand{\card}[1]{\left|#1\right|} % Cardinalità
\newcommand{\PP}{\mathbb{P}} % Probabilità
\renewcommand{\setminus}{\!\smallsetminus\!}
% SUCCESSIONI DI FUNZIONI
\newcommand{\touf}{\rightrightarrows} % Converge uniformemente
% FUNZIONI DI PIU' VARIABILI
\renewcommand{\vec}[1]{\mathbf{#1}} % Vettore in grassetto corsivo
\DeclareMathOperator{\grad}{\nabla} % Gradiente
\DeclareMathOperator{\jac}{\mathit{J}} % Jacobiano
\DeclareMathOperator{\hess}{\mathit{H}} % Hessiana
\DeclareMathOperator{\meas}{meas} % Misura
\DeclareMathOperator{\lap}{\Delta} % Laplaciano
\let\div\relax
\DeclareMathOperator{\div}{div} % Divergenza
\DeclareMathOperator{\rot}{rot} % Rotore
% GEOMETRIA
\let\ker\relax
\DeclareMathOperator{\ker}{Ker} % Nucleo o Kernel
\DeclareMathOperator{\im}{Im} % Immagine
\DeclareMathOperator{\End}{End} % Endomorfismi
\DeclareMathOperator{\Aut}{Aut} % Auto<omorfismi
\DeclareMathOperator{\tr}{tr} % Traccia
\DeclareMathOperator{\rg}{rg} % Rango
\DeclareMathOperator{\sgn}{sgn} % Segno
\DeclareMathOperator{\cof}{cof} % Cofattore
\renewcommand{\sp}[2]{\left\langle #1, #2 \right\rangle} % Prodotto scalare parentesi angolate
\newcommand{\varsp}[2]{\phi{\left(#1, #2\right)}} % Prodotto scalare funzione
% ALTRO
\renewcommand{\epsilon}{\varepsilon}
\newcommand{\todeb}{\rightharpoonup}
% TEOREMI
\theoremstyle{definition}
\newtheorem*{pbase}{Passo base}
\newtheorem*{pind}{Passo induttivo}