-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacros.tex
More file actions
67 lines (60 loc) · 1.89 KB
/
Copy pathmacros.tex
File metadata and controls
67 lines (60 loc) · 1.89 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
\usepackage[utf8]{inputenc}
\usepackage{polski}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage[shortlabels]{enumitem}
\usepackage{mathdots}
\usepackage{url}
\usepackage{xcolor}
\usepackage{array}
\usepackage{hyperref} % referencje do miejsc w pdfie
\usepackage{environ} % zaawansowane środowiska
\usepackage{minted} % formatowanie kodu
\usepackage{tabularx} % lepsze tabelki
\usepackage{wrapfig} % do ustawiania pozycji obrazków
\usepackage{multicol} % wiele kolumn
\usepackage{csquotes}
\usepackage[
backend=bibtex, % backend=biber
style=numeric,
sorting=none,
urldate=long,
]{biblatex}
\usepackage{indentfirst}
\usepackage{listings}
% --- Podstawowe matematyczne symbole
\newcommand{\wtw}{\quad \Leftrightarrow \quad} % wtedy i tylko wtedy
\newcommand{\bigexists}{\mbox{\Large $\mathsurround0pt\exists$}\hspace{0.2em}}
\newcommand{\bigforall}{\mbox{\Large $\mathsurround0pt\forall$}\hspace{0.1em}}
\newcommand{\lr}[1]{\left\langle #1 \right\rangle}
\renewcommand{\geq}{\geqslant}
\renewcommand{\leq}{\leqslant}
% --- Oznaczenia zbiorów
\newcommand{\RR}{\mathbb{R}}
\newcommand{\ZZ}{\mathbb{Z}}
\newcommand{\NN}{\mathbb{N}}
\newcommand{\CC}{\mathbb{C}}
\newcommand{\KK}{\mathbb{K}}
\newcommand{\QQ}{\mathbb{Q}}
% --- Tekst w math mode
\newcommand{\dm}[1]{\displaystyle{#1}} % skrót do displaystyle
\newcommand{\textq}[1]{\quad \text{#1} \quad}
\newcommand{\textqq}[1]{\qquad \text{#1} \qquad}
% --- Kolory
\newcommand{\purple}[1]{\textcolor{purple}{#1}}
\newcommand{\teal}[1]{\textcolor{teal}{#1}}
\newcommand{\gray}[1]{\textcolor{gray}{#1}}
\newcommand{\grey}[1]{\textcolor{gray}{#1}}
\newcommand{\red}[1]{\textcolor{red}{#1}}
\newcommand{\orange}[1]{\textcolor{orange}{#1}}
% --- Kod Pythona
\addbibresource{bibliography.bib}
\hypersetup{
colorlinks=true,
linkcolor={black},
citecolor={blue},
urlcolor={blue}
}