-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheason.sty
More file actions
80 lines (60 loc) · 1.92 KB
/
eason.sty
File metadata and controls
80 lines (60 loc) · 1.92 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
\ProvidesPackage{eason}
% Packages
\usepackage{graphicx}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\usetikzlibrary{calc}
% \usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage[dvipsnames]{xcolor}
\usepackage{fontawesome5}
\usepackage{textcomp}
\usepackage{hyperref}
\usepackage{currfile}
% Functions for PGF
\pgfkeys{/pgf/declare function={csc(\x) = cosec(\x);}}
\pgfkeys{/pgf/declare function={acot(\x) = atan(1 / \x);}}
\pgfkeys{/pgf/declare function={asec(\x) = acos(1 / \x);}}
\pgfkeys{/pgf/declare function={acsc(\x) = asin(1 / \x);}}
\pgfkeys{/pgf/declare function={acosec(\x) = acsc(\x);}}
\pgfkeys{/pgf/declare function={coth(\x) = 1 / tanh(\x);}}
\pgfkeys{/pgf/declare function={sech(\x) = 1 / cosh(\x);}}
\pgfkeys{/pgf/declare function={csch(\x) = 1 / sinh(\x);}}
\pgfkeys{/pgf/declare function={cosech(\x) = csch(\x);}}
\pgfkeys{/pgf/declare function={asinh(\x) = {ln(\x + sqrt((\x)^2 + 1))};}}
\pgfkeys{/pgf/declare function={acosh(\x) = {ln(\x + sqrt((\x)^2 - 1))};}}
\pgfkeys{/pgf/declare function={atanh(\x) = {0.5 * ln((1 + \x) / (1 - \x))};}}
\pgfkeys{/pgf/declare function={acoth(\x) = atanh(1 / \x);}}
\pgfkeys{/pgf/declare function={asech(\x) = acosh(1 / \x);}}
\pgfkeys{/pgf/declare function={acsch(\x) = asinh(1 / \x);}}
\pgfkeys{/pgf/declare function={acosech(\x) = acsch(\x);}}
% Text Symbols
\newcommand{\GitHubHref}[2]{
\href{https://github.com/#1/#2}{\faGithub\space #1/#2}
}
\newcommand{\tick}{\(\checkmark\)}
% Title Page
\newcommand{\MakeTitlePage}[4]{
\begin{titlepage}
\begin{center}
\LARGE #1
\bigskip
\bigskip
\Large #2
\bigskip
\bigskip
\large #3
\bigskip
\large #4
\end{center}
\end{titlepage}
}
% Macros
\input{macros.tex}
\endinput