summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2015-03-13 12:10:32 +0000
committerUrbain Vaes <urbain@vaes.uk>2015-03-13 12:10:32 +0000
commit2163290664136a358648cf968572344d6406580e (patch)
treee6a3df0b686665c525e399651a55ce6e0840e645
parentb3727cce64e67585bfee83ebe6523712091cc4a0 (diff)
commit before merge
-rw-r--r--latexmkrc4
-rw-r--r--tex/report_default.tex121
-rw-r--r--vim/mySnippets/tex.snippets8
-rw-r--r--vim/vimrc9
-rw-r--r--zshrc1
5 files changed, 132 insertions, 11 deletions
diff --git a/latexmkrc b/latexmkrc
index 6b4722e..b466d7b 100644
--- a/latexmkrc
+++ b/latexmkrc
@@ -1,2 +1,2 @@
-/* $pdf_mode = 1; */
-/* $pdf_previewer = 'zathura -s -x "vim --servername SYNCTEX --remote +%{line} %{input}" %O %S'; */
+$pdf_mode = 1;
+$pdf_previewer = 'zathura -s -x "vim --servername SYNCTEX --remote +%{line} %{input}" %O %S';
diff --git a/tex/report_default.tex b/tex/report_default.tex
new file mode 100644
index 0000000..e9eb94f
--- /dev/null
+++ b/tex/report_default.tex
@@ -0,0 +1,121 @@
+\documentclass[10pt,twoside]{report}
+
+% Files to include
+\includeonly{
+ preamble/title,
+ preamble/authorship,
+ preamble/abstract,
+ preamble/acknowledgements,
+ chapters/introduction,
+ chapters/chap1,
+ chapters/chap2,
+ chapters/chap3,
+ chapters/conclusion,
+}
+
+% Boolean variables
+\newif \ifcontents \contentsfalse
+\newif \ifbib \bibtrue
+\newif \iflong \longtrue
+
+% Packages
+\usepackage[utf8]{inputenx}
+\usepackage[english]{babel}
+\usepackage{microtype}
+\usepackage{fancyhdr}
+\usepackage{listings}
+\usepackage{appendix}
+\usepackage{vmargin}
+\usepackage{setspace}
+\usepackage{mathenv}
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{amssymb}
+\usepackage{amscd}
+\usepackage{amsthm}
+\usepackage{hyperref}
+\usepackage{cleveref}
+\usepackage{graphicx}
+\usepackage{epstopdf}
+\usepackage{subfigure}
+\usepackage{color}
+
+% Packages with options
+\usepackage[labelfont=sc]{caption}
+\usepackage[square, numbers, comma, sort&compress]{natbib}
+
+% Layout options
+\setlength{\parskip}{6pt}
+
+% Compilation options
+\synctex=1
+
+% Setting for the table of contents
+\setcounter{secnumdepth}{3}
+\setcounter{tocdepth}{3}
+
+% 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]{\,\| #1 \|\,}
+\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{\dx}[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}}
+
+% Theorems
+\theoremstyle{plain}
+\newtheorem{assumption}{Assumption}[section]
+\newtheorem{example}{Example}[section]
+\newtheorem{theorem}{Theorem}[section]
+\newtheorem{corollary}[theorem]{Corollary}
+\newtheorem{lemma}[theorem]{Lemma}
+\newtheorem{proposition}[theorem]{Proposition}
+\newtheorem{axiom}[theorem]{Axiom}
+\theoremstyle{definition}
+\newtheorem{definition}[theorem]{Definition}
+\theoremstyle{remark}
+\newtheorem{remark}[theorem]{Remark}
+
+\begin{document}
+
+\pagestyle{empty}
+
+\setstretch{1.3}
+\include{preamble/title} \cleardoublepage
+\include{preamble/authorship} \cleardoublepage
+\include{preamble/abstract} \cleardoublepage
+\include{preamble/acknowledgements} \cleardoublepage
+\ifcontents \tableofcontents \fi
+
+\pagestyle{plain}
+
+
+\include{chapters/introduction} \cleardoublepage
+\include{chapters/chap1} \cleardoublepage
+\include{chapters/chap2} \cleardoublepage
+\include{chapters/chap3} \cleardoublepage
+\include{chapters/conclusion} \cleardoublepage
+
+\nocite*
+\bibliographystyle{unsrtnat}
+\bibliography{Bibliography}
+
+\end{document}
+
diff --git a/vim/mySnippets/tex.snippets b/vim/mySnippets/tex.snippets
index ef275a0..a1064ea 100644
--- a/vim/mySnippets/tex.snippets
+++ b/vim/mySnippets/tex.snippets
@@ -17,3 +17,11 @@ endsnippet
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
diff --git a/vim/vimrc b/vim/vimrc
index 99d8eb9..08bf19e 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -221,15 +221,6 @@ vnoremap g^ ^
"" Latex
nmap <buffer> <F2> <Plug>LatexChangeEnv
let g:tex_fast=""
-
-" Synctex
-function! LatexEvinceSearch()
- execute "!cd " . LatexBox_GetTexRoot() . '; evince_vim_dbus.py EVINCE "`basename ' . LatexBox_GetOutputFile(). '`" ' . line('.') . ' "%:p"'
-endfun
-
-command! LatexEvinceSearch call LatexEvinceSearch()
-
-autocmd FileType tex map <F6> :silent LatexEvinceSearch <Return>
autocmd Filetype tex call SetTexOptions()
diff --git a/zshrc b/zshrc
index 804a398..38b3185 100644
--- a/zshrc
+++ b/zshrc
@@ -43,6 +43,7 @@ alias up='cd ~/Dropbox/phd/presentations'
alias ul='cd ~/Dropbox/phd/literature'
alias ur='cd ~/Dropbox/phd/reports'
alias papers='cd ~/Dropbox/phd/papers'
+alias books='cd ~/Dropbox/phd/books'
alias cdd='cd ~/dotfiles'
# Commands