-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.sty
More file actions
48 lines (39 loc) · 1014 Bytes
/
style.sty
File metadata and controls
48 lines (39 loc) · 1014 Bytes
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
% Standard Math Packages
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
% Document
\usepackage{microtype}
\usepackage[parfill]{parskip}
\usepackage{multicol}
\usepackage{centernot}
\usepackage[english]{babel}
% Utilities
\usepackage{enumerate}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{booktabs}
\usepackage[thinlines]{easytable}
\usepackage{thmtools}
% Figures
\usepackage[labelfont=bf]{caption}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{xcolor} %[dvipsnames]
% Tweaking Settings
\addto\captionsenglish{\renewcommand\chaptername{Note}}
\renewcommand{\qedsymbol}{$\blacksquare$}
\DeclareMathOperator{\mean}{mean}
\pgfplotsset{width=2.25in}
\lstset{
% numbers=left,
breaklines=true,
tabsize=2,
basicstyle=\ttfamily,
}
% Macros
\definecolor{light-gray}{gray}{0.95}
\declaretheorem[shaded={bgcolor=light-gray}]{theorem}
\DeclareMathOperator{\card}{card}
\newcommand{\header}[2]{\begin{flushright} \textbf{#1} #2 \end{flushright}}