Merge pull request #75 from ravl1084/testing
Add snippet for ledger and BibLaTeX
This commit is contained in:
commit
cfc0260817
50
UltiSnips/bib.snippets
Normal file
50
UltiSnips/bib.snippets
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
snippet online "Online resource" b
|
||||||
|
@online{${1:name},
|
||||||
|
author={${2:author}},
|
||||||
|
title={${3:title}},
|
||||||
|
date={${4:date}},
|
||||||
|
url={${5:url}}
|
||||||
|
}
|
||||||
|
$0
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet article "Article reference" b
|
||||||
|
@article{${1:name},
|
||||||
|
author={${2:author}},
|
||||||
|
title={${3:title}},
|
||||||
|
journaltitle={${4:journal}},
|
||||||
|
volume={${5:NN}},
|
||||||
|
number={${6:NN}},
|
||||||
|
year={${7:YYYY}},
|
||||||
|
pages={${8:NN}--${9:NN}}
|
||||||
|
}
|
||||||
|
$0
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet book "Book reference" b
|
||||||
|
@book{${1:name},
|
||||||
|
author={${2:author}},
|
||||||
|
title={${3:title}},
|
||||||
|
subtitle={${4:subtitle}},
|
||||||
|
year={${5:YYYY}},
|
||||||
|
location={${6:somewhere}},
|
||||||
|
publisher={${7:publisher}},
|
||||||
|
pages={${8:NN}--${9:NN}}
|
||||||
|
}
|
||||||
|
$0
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet inb "In Book reference" b
|
||||||
|
@inbook{${1:name},
|
||||||
|
author={${2:author}},
|
||||||
|
title={${3:title}},
|
||||||
|
subtitle={${4:subtitle}},
|
||||||
|
booktitle={${5:book}},
|
||||||
|
editor={${6:editor}},
|
||||||
|
year={${7:YYYY}},
|
||||||
|
location={${8:somewhere}},
|
||||||
|
publisher={${9:publisher}},
|
||||||
|
pages={${10:NN}--${11:NN}}
|
||||||
|
}
|
||||||
|
$0
|
||||||
|
endsnippet
|
6
UltiSnips/ledger.snippets
Normal file
6
UltiSnips/ledger.snippets
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
snippet t "Transaction" b
|
||||||
|
${1:`!v strftime("%Y")`}-${2:`!v strftime("%m")`}-${3:`!v strftime("%d")`} ${4:*} ${5:Payee}
|
||||||
|
${6:Expenses} \$${7:0.00}
|
||||||
|
${8:Assets:Checking}
|
||||||
|
$0
|
||||||
|
endsnippet
|
@ -130,4 +130,8 @@ snippet pac "Package" b
|
|||||||
\usepackage[${1:options}]{${2:package}}$0
|
\usepackage[${1:options}]{${2:package}}$0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
|
||||||
|
snippet lp "Long parenthesis"
|
||||||
|
\left(${1:${VISUAL:contents}}\right)$0
|
||||||
|
endsnippet
|
||||||
# vim:ft=snippets:
|
# vim:ft=snippets:
|
||||||
|
Loading…
Reference in New Issue
Block a user