-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.sty
32 lines (28 loc) · 917 Bytes
/
common.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
\usepackage[margin=1in]{geometry}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{enumitem}
\usepackage{mathabx}
\usepackage{mathtools}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{url}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\newcommand{\dom}{\mathop{\mathrm{dom}}}
\newcommand{\ran}{\mathop{\mathrm{ran}}}
\newcommand{\type}{\mathop{\mathrm{type}}}
\newcommand{\trcl}{\mathop{\mathrm{trcl}}}
\newcommand{\pred}{\mathop{\mathrm{pred}}}
\newcommand{\rank}{\mathop{\mathrm{rank}}}
\newcommand{\mos}{\mathop{\mathrm{mos}}}
\newcommand{\val}{\mathop{\mathrm{val}}}
\newcommand{\cf}{\mathop{\mathrm{cf}}}
\theoremstyle{definition}
\newtheorem{innercustomthm}{Exercise}
\newenvironment{customthm}[1]
{\renewcommand\theinnercustomthm{#1}\innercustomthm}
{\endinnercustomthm}
\author{Yoshihiro Kumazawa}