-
Notifications
You must be signed in to change notification settings - Fork 0
/
Summary.tex
96 lines (86 loc) · 2.84 KB
/
Summary.tex
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
\documentclass[10pt,landscape]{article}
\usepackage{multicol,multirow}
\usepackage{calc}
\usepackage{ifthen}
\usepackage[landscape]{geometry}
\usepackage[colorlinks=true,citecolor=blue,linkcolor=blue]{hyperref}
\usepackage[fleqn]{amsmath}
\usepackage{amssymb,amsthm,amsfonts}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{cancel}
\usepackage{xfrac}
\usepackage{framed}
\usepackage{fontawesome}
\usepackage{scrextend}
\usepackage[x11names]{xcolor}
\ifthenelse{\lengthtest { \paperwidth = 11in}}
{ \geometry{top=.3in,left=.3in,right=.3in,bottom=.3in} }
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
}
\pagestyle{empty}
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%x
{\normalfont\large\bfseries}}
\renewcommand{\subsection}{\@startsection{subsection}{2}{0mm}%
{-1explus -.5ex minus -.2ex}%
{0.5ex plus .2ex}%
{\normalfont\normalsize\bfseries}}
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{0mm}%
{-1ex plus -.5ex minus -.2ex}%
{1ex plus .2ex}%
{\normalfont\small\bfseries}}
\renewcommand{\arraystretch}{1.3}
\makeatother
\setcounter{secnumdepth}{0}
\setlength{\parindent}{0pt}
\setlength{\parskip}{0pt plus 0.5ex}
\setlength{\mathindent}{0pt}
\setlength{\columnseprule}{0.2pt}
\definecolor{shadecolor}{RGB}{200,240,240}
\definecolor{highlight}{RGB}{255,255,150}
\definecolor{amber}{HTML}{b45309}
\definecolor{indigo}{HTML}{3730a3}
\renewcommand{\CancelColor}{\color{purple}}
\renewcommand{\emph}[1]{{\setlength{\fboxsep}{0pt}\colorbox{highlight}{\em{#1}}}}
\newcommand{\utild}{\tilde{u}}
\newcommand{\numericsubsection}[1]{\subsection{{\color{amber}#1\ \faBookmarkO}}}
\newcommand{\symbolicsection}[1]{\section{{\color{indigo}#1\ \faBookmarkO}}}
\newcommand{\symbolicsubsection}[1]{\subsection{{\color{indigo}#1\ \faBookmarkO}}}
% -----------------------------------------------------------------------
\title{Partial Differential Equations}
\begin{document}
\raggedright
\footnotesize
\begin{center}
\textbf{Partial Differential Equations} \\
\end{center}
\begin{multicols}{3}
\setlength{\premulticols}{1pt}
\setlength{\postmulticols}{1pt}
\setlength{\multicolsep}{1pt}
\setlength{\columnsep}{2pt}
\input{Domain}
\input{Classification}
\input{Quasilinear}
\section{Linear PDEs}\label{sec:linear-pdes}
\input{Separation}
\input{Transformation}
\input{SecondOrder}
\input{Elliptic}
\input{Hyperbolic}
\hrulefill
\input{NumericalMethods}
\input{FDMElliptic}
\input{FDMParabolic}
\input{FDMHyperbolic}
\input{FVMElliptic}
\input{FEM}
\newpage
\input{CheatSheet}
\end{multicols}
\end{document}