You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			57 lines
		
	
	
		
			898 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			57 lines
		
	
	
		
			898 B
		
	
	
	
		
			Plaintext
		
	
priority -50
 | 
						|
 | 
						|
##############
 | 
						|
# MATH STUFF #
 | 
						|
##############
 | 
						|
snippet eq "Equation" b
 | 
						|
\begin{equation}
 | 
						|
	$0
 | 
						|
\end{equation}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet eqnn "Equation without number" b
 | 
						|
\begin{equation*}
 | 
						|
	$0
 | 
						|
\end{equation*}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet eqa "Equation array" b
 | 
						|
\begin{eqnarray}
 | 
						|
	$1 & $2 & $0
 | 
						|
\end{eqnarray}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet eqann "Equation array without numbers" b
 | 
						|
\begin{eqnarray*}
 | 
						|
	$1 & $2 & $0
 | 
						|
\end{eqnarray*}
 | 
						|
 | 
						|
endsnippet
 | 
						|
snippet frac "Fraction" w
 | 
						|
\frac{${1:${VISUAL:nom}}}{${2:denom}}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet mat "Smart Matrix"
 | 
						|
\begin{${1:p/b/v/V/B/small}matrix}
 | 
						|
	$0
 | 
						|
\end{$1matrix}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet lr( "left( right)" w
 | 
						|
\left( ${1:${VISUAL}} \right)
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet lr| "left| right|" w
 | 
						|
\left| ${1:${VISUAL}} \right|
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet lr{ "left\{ right\}" w
 | 
						|
\left\\{ ${1:${VISUAL}} \right\\}
 | 
						|
endsnippet
 | 
						|
 | 
						|
snippet lr[ "left[ right]" w
 | 
						|
\left[ ${1:${VISUAL}} \right]
 | 
						|
endsnippet
 | 
						|
 | 
						|
# vim:ft=snippets:
 |