summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--header.tex27
-rw-r--r--mutt/mailboxes2
-rw-r--r--vim/mySnippets/tex.snippets24
-rw-r--r--vim/vimrc1
5 files changed, 44 insertions, 12 deletions
diff --git a/.gitignore b/.gitignore
index 78dfac6..a923e12 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,4 +5,4 @@ mutt/mutt-colors-solarized/
mutt/temp/
passwords
mutt/cache/
-mutt/cache/headers/
+mutt/cache/headers
diff --git a/header.tex b/header.tex
new file mode 100644
index 0000000..0c654ab
--- /dev/null
+++ b/header.tex
@@ -0,0 +1,27 @@
+% Macros
+\definecolor{darkred}{rgb}{.7,0,0}
+\newcommand{\real}[0]{\mathbf R}
+\newcommand{\nat}[0]{\mathbf N}
+\newcommand{\op}[0]{\mathcal}
+\newcommand{\grad}[0]{\nabla}
+\newcommand{\dive}[0] {\,\nabla\,\cdot\,}
+\newcommand{\ip}[2]{\left \langle #1,#2 \right\rangle}
+\newcommand{\norm}[1]{\left\| #1 \right\|}
+\newcommand{\pard}[2]{\partial_{#2} #1}
+\newcommand{\pardl}[2]{\frac{\partial #1}{\partial #2}}
+\newcommand{\pardd}[2]{\partial_{#2}^2 #1}
+\newcommand{\parddl}[2]{\frac{\partial^2 #1}{\partial #2^2}}
+\newcommand{\dd}[0]{\,\mathrm d}
+\newcommand{\hermite}[0]{\mathcal}
+\newcommand{\gaussian}[1]{g_{#1}}
+\newcommand{\stdgaussian}[0]{g}
+\newcommand{\test}[1]{C^\infty_c(#1)}
+\newcommand{\flp}[2]{L^{#1}(#2)}
+\newcommand{\wlp}[3]{L^{#1}(#2,#3)}
+\newcommand{\sobolev}[2]{H^{#1}(#2)}
+\newcommand{\wsobolev}[3]{H^{#1}(#2, #3)}
+\newcommand{\red}[1]{\textcolor{darkred}{#1}}
+\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
+\newcommand{\smooth}[1]{C^\infty(#1)}
+\newcommand{\cont}[2]{C^{#1}(#2)}
+\newcommand{\Space}[0]{\mathscr}
diff --git a/mutt/mailboxes b/mutt/mailboxes
index 9e64508..d259b41 100644
--- a/mutt/mailboxes
+++ b/mutt/mailboxes
@@ -1 +1 @@
-mailboxes "+Hotmail/Hotmail" "+Main/Drafts" "+Main/Main" "+Main/Sent" "+Gmail/Gmail" "+Imperial/Imperial"
+mailboxes "+Gmail/Gmail" "+Hotmail/Hotmail" "+Imperial/Imperial" "+Main/Drafts" "+Main/Main" "+Main/Sent"
diff --git a/vim/mySnippets/tex.snippets b/vim/mySnippets/tex.snippets
index 9c2153e..ff3fc0a 100644
--- a/vim/mySnippets/tex.snippets
+++ b/vim/mySnippets/tex.snippets
@@ -11,7 +11,7 @@ snippet div "Divergence" i
endsnippet
snippet new "New command" b
-\newcommand{$1}[$2] {$3} $0
+\newcommand{$1}[$2]{$3} $0
endsnippet
snippet op "Operator style" i
@@ -19,11 +19,11 @@ snippet op "Operator style" i
endsnippet
snippet pard "Partial derivative" i
-\pard{$1}{$2} $0
+\pardl{$1}{$2} $0
endsnippet
snippet pardd "Double partial derivative" i
-\pardd{$1}{$2} $0
+\parddl{$1}{$2} $0
endsnippet
snippet herm "Hermite polynomials" i
@@ -38,12 +38,16 @@ snippet sumi "Sum over index set" i
\sum_{${1:i} \in ${2:I}} $0
endsnippet
+snippet int "Integral" i
+\int_{$1}
+endsnippet
+
snippet ip "Inner product" i
-\ip{$1}{$2} $0
+\ip{$1}{$2}$0
endsnippet
snippet norm "Norm" i
-\norm{$1} $0
+\norm{$1}$0
endsnippet
snippet test "Test functions" i
@@ -55,7 +59,7 @@ snippet lp "Flat Lp space" i
endsnippet
snippet lpw "Weighted Lp space" i
-\wlp{${1:2}}{${2:\real^n}}{${3: \rho}} $0
+\wlp{${1:2}}{${2:\real^n}}{${3:\rho}}$0
endsnippet
snippet sob "Flat Sobolev space" i
@@ -66,10 +70,10 @@ snippet sobw "Weighted Sobolev space" i
\wsobolev{${1:s}}{${2:\real^n}}{${3:\rho}} $0
endsnippet
-snippet new "New command" b
-\newcommand{$1}[$2]{$3}
-endsnippet
-
snippet smooth "Smooth function" i
\smooth{${1:\real^n}} $0
endsnippet
+
+snippet cont "Continuous function" i
+\cont{$1}{$2} $0
+endsnippet
diff --git a/vim/vimrc b/vim/vimrc
index 33c095a..bef1eb2 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -66,6 +66,7 @@ nnoremap <LocalLeader>i :Latexmk<CR>
nnoremap <LocalLeader>e :LatexErrors<CR>
nnoremap <LocalLeader>o :LatexView<CR>
nnoremap <LocalLeader>k :LatexmkStop<CR>:LatexmkClean<CR>
+nnoremap <LocalLeader>h :split header.sty<CR>
" Gundo
nnoremap <F5> :GundoToggle<cr>