1
0
Fork 0

init math cheat sheet

This commit is contained in:
Kim, Jimin 2025-05-15 12:58:21 +09:00
parent 54287f1685
commit 49639b4bb8
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 85 additions and 0 deletions

View file

@ -18,6 +18,7 @@
"nixos",
"nixpkgs",
"pkgs",
"pompydev",
"texlive"
],

84
latex/math/math.tex Normal file
View file

@ -0,0 +1,84 @@
\documentclass[11pt]{book}
\usepackage[showframe,paperwidth=90mm,paperheight=140mm,margin=5mm,bottom=6mm,footskip=4mm]{geometry} % https://mirrors.ctan.org/macros/latex/contrib/geometry/geometry.pdf
\usepackage[hidelinks]{hyperref} % http://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
\usepackage{amsfonts} % http://mirrors.ctan.org/fonts/amsfonts/doc/amsfndoc.pdf
\usepackage{amsmath} % http://mirrors.ctan.org/macros/latex/required/amsmath/amsldoc.pdf
\usepackage{catchfile} % https://mirrors.ctan.org/macros/latex/contrib/catchfile/catchfile.pdf
\usepackage{fontawesome} % http://mirrors.ctan.org/fonts/fontawesome/doc/fontawesome.pdf
\usepackage{kotex} %
\usepackage{paracol} % https://mirrors.ctan.org/macros/latex/contrib/paracol/paracol-man.pdf
\usepackage{qrcode} % http://mirrors.ctan.org/macros/latex/contrib/qrcode/qrcode.pdf
\usepackage{titlesec} % https://mirrors.ctan.org/macros/latex/contrib/titlesec/titlesec.pdf
\usepackage{xstring} % https://mirrors.ctan.org/macros/generic/xstring/xstring-en.pdf
\usepackage{enumitem} % http://mirrors.ctan.org/macros/latex/contrib/enumitem/enumitem.pdf
\titleformat{\chapter}[block]{\huge\bfseries}{}{0pt}{}{}
\titlespacing{\chapter}{0pt}{-20pt}{0pt}
\setlist[description]{leftmargin=15pt,labelindent=0pt}
\CatchFileDef{\HEAD}{../../.git/refs/heads/master}{}
\newcommand{\gitrevision}{
\StrLeft{\HEAD}{7}
}
\newcommand{\gh}{
https://github.com/pompydev/cheatsheets/tree/\HEAD
}
\newcommand{\cc}[1]{
$\vcenter{\hbox{#1}}$
}
\begin{document}
\pagenumbering{gobble}
\centerline{\large pomp's}
\null
\centerline{\LARGE \textbf{Mathematics}}
\null
\centerline{\large Cheat Sheet}
\vspace{236.5pt}
\columnratio{0.63}
\begin{paracol}{2}
\vspace{21pt}
\href{\gh}{\cc{\large\faGithub} pompydev/cheatsheets}
git reversion:\gitrevision
made with \LaTeX
\switchcolumn
\fbox{\qrcode[hyperlink,height=20mm]{\gh}}
\end{paracol}
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\chapter{Algebra}
\section{Types of Numbers}
\begin{description}
\item[$\mathbb{C}$] - Complex / 복소수 ($\pmb{a+bi}$)
\begin{description}
\item[$\mathbb{R}$] - Real / 실수 ($\pmb{a}+bi$)
\begin{description}
\item[$\mathbb{Q}$] - Rational / 유리수 ($\frac{a}{b} | a,b\in\mathbb{Z},b\ne 0 $)
\begin{description}
\item[$\mathbb{Z}$] - Integer / 정수 ($..., -1, 0, 1, ...$)
\begin{description}
\item[$\mathbb{N}$] - Natural / 자연수 ($1, 2, 3, ...$)
\item[$\mathbb{W}$] - Whole ($0, 1, 2, ...$)
\end{description}
\end{description}
\item Irrational / 무리수
\end{description}
\item[$\mathbb{I}$] - Imaginary / 허수 ($a+\pmb{bi}$)
\end{description}
\end{description}
\newpage
\end{document}