init
This commit is contained in:
4
snippets/bibtex-mode/.yas-setup.el
Normal file
4
snippets/bibtex-mode/.yas-setup.el
Normal file
@@ -0,0 +1,4 @@
|
||||
(require 'yasnippet)
|
||||
(require 'yasnippet-snippets)
|
||||
|
||||
(add-hook 'bibtex-mode-hook #'yasnippet-snippets--no-indent)
|
||||
17
snippets/bibtex-mode/article
Normal file
17
snippets/bibtex-mode/article
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: article
|
||||
# key: article
|
||||
# --
|
||||
@article{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
journal = {${journal}},
|
||||
year = {${year}}${,
|
||||
volume = {${volume}}}${,
|
||||
number = {${number}}}${,
|
||||
pages = {${pages}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/book
Normal file
22
snippets/bibtex-mode/book
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: book
|
||||
# key: book
|
||||
# --
|
||||
@book{ ${title},
|
||||
author = {${author}},
|
||||
editor = {${editor}}
|
||||
title = {${title}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}}${,
|
||||
volume = {${volume}}}${,
|
||||
number = {${number}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
isbn = {${isbn}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/bookinbook
Normal file
22
snippets/bibtex-mode/bookinbook
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: bookinbook
|
||||
# key: bookinbook
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@bookinbook{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
chapter = {${chapter}}${,
|
||||
pages = {${pages}}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}},
|
||||
volume = {${volume}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
15
snippets/bibtex-mode/booklet
Normal file
15
snippets/bibtex-mode/booklet
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: booklet
|
||||
# key: booklet
|
||||
# --
|
||||
@booklet{ ${title},
|
||||
author = {${author}}${,
|
||||
howpublished = {${howpublished}}}${,
|
||||
address = {${address}}}${,
|
||||
year = {${year}}}${,
|
||||
month = {${month}}}${,
|
||||
volume = {${volume}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/collection
Normal file
22
snippets/bibtex-mode/collection
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: collection
|
||||
# key: collection
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@collection{ ${title},
|
||||
editor = {${editor}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
21
snippets/bibtex-mode/conference
Normal file
21
snippets/bibtex-mode/conference
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: conference
|
||||
# key: conference
|
||||
# --
|
||||
@conference{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
booktitle = {${booktitle}},
|
||||
year = {${year}},
|
||||
editor = {${editor}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
organization = {${organization}}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
17
snippets/bibtex-mode/dataset
Normal file
17
snippets/bibtex-mode/dataset
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: dataset
|
||||
# key: dataset
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@dataset{ ${title}
|
||||
title = {${title}},
|
||||
editor = {${editor}},
|
||||
year = {${year}}${,
|
||||
author = {${author}}}${,
|
||||
volume = {${volume}}}${,
|
||||
version = {${version}}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
organization = {${organization}}}${,
|
||||
note = {${note}}}
|
||||
|
||||
}
|
||||
14
snippets/bibtex-mode/electronic
Normal file
14
snippets/bibtex-mode/electronic
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: electronic
|
||||
# key: electronic
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@electronic{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
year = {${year}},
|
||||
url = {${url}}${,
|
||||
editor = {${editor}}}${,
|
||||
urldate = {${urldate}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
21
snippets/bibtex-mode/inbook
Normal file
21
snippets/bibtex-mode/inbook
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: inbook
|
||||
# key: inbook
|
||||
# --
|
||||
@inbook{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
chapter = {${chapter}}${,
|
||||
pages = {${pages}}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}},
|
||||
volume = {${volume}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
23
snippets/bibtex-mode/incollection
Normal file
23
snippets/bibtex-mode/incollection
Normal file
@@ -0,0 +1,23 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: incollection
|
||||
# key: incollection
|
||||
# --
|
||||
@incollection{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
booktitle = {${booktitle}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}}${,
|
||||
editor = {${editor}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
21
snippets/bibtex-mode/inproceedings
Normal file
21
snippets/bibtex-mode/inproceedings
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: inproceedings
|
||||
# key: inproceedings
|
||||
# --
|
||||
@inproceedings{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
booktitle = {${booktitle}},
|
||||
year = {${year}},
|
||||
editor = {${editor}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
organization = {${organization}}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
24
snippets/bibtex-mode/inreference
Normal file
24
snippets/bibtex-mode/inreference
Normal file
@@ -0,0 +1,24 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: inreference
|
||||
# key: inreference
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@inreference{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
booktitle = {${booktitle}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}}${,
|
||||
editor = {${editor}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
14
snippets/bibtex-mode/manual
Normal file
14
snippets/bibtex-mode/manual
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: manual
|
||||
# key: manual
|
||||
# --
|
||||
@manual{ ${title},
|
||||
title = {${title}}${,
|
||||
author = {${author}}}${,
|
||||
organization = {${organization}}}${,
|
||||
address = {${address}}}${,
|
||||
editor = {${editor}}}${,
|
||||
month = {${month}}}${,
|
||||
year = {${year}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
16
snippets/bibtex-mode/masterthesis
Normal file
16
snippets/bibtex-mode/masterthesis
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: masterthesis
|
||||
# key: masterthesis
|
||||
# --
|
||||
@masterthesis{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
school = {${school}},
|
||||
year = {${year}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
14
snippets/bibtex-mode/misc
Normal file
14
snippets/bibtex-mode/misc
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: misc
|
||||
# key: misc
|
||||
# --
|
||||
@misc{ ${title}${,
|
||||
author = {${author}}}${,
|
||||
title = {${title}}}${,
|
||||
howpublished = {${howpublished}}}${,
|
||||
month = {${month}}}${,
|
||||
year = {${year}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
23
snippets/bibtex-mode/mvbook
Normal file
23
snippets/bibtex-mode/mvbook
Normal file
@@ -0,0 +1,23 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: mvbook
|
||||
# key: mvbook
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@mvbook{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
volume = {${volume}}}${,
|
||||
editor = {${editor}}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
number = {${number}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
isbn = {${isbn}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/mvcollection
Normal file
22
snippets/bibtex-mode/mvcollection
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: mvcollection
|
||||
# key: mvcollection
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@mvcollection{ ${title},
|
||||
editor = {${editor}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
volumes = {${volumes}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/mvreference
Normal file
22
snippets/bibtex-mode/mvreference
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: mvereference
|
||||
# key: mvreference
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@mvreference{ ${title},
|
||||
editor = {${editor}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
volumes = {${volumes}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
14
snippets/bibtex-mode/online
Normal file
14
snippets/bibtex-mode/online
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: online
|
||||
# key: online
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@online{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
year = {${year}},
|
||||
url = {${url}}${,
|
||||
editor = {${editor}}}${,
|
||||
urldate = {${urldate}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
15
snippets/bibtex-mode/patent
Normal file
15
snippets/bibtex-mode/patent
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: patent
|
||||
# key: patent
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@patent{ ${title},
|
||||
title = {${title}},
|
||||
author = {${author}},
|
||||
number = {${number}},
|
||||
year = {${year}},
|
||||
holder = {${holder}}${,
|
||||
type = {${type}}}${,
|
||||
url = {${url}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
16
snippets/bibtex-mode/periodical
Normal file
16
snippets/bibtex-mode/periodical
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: periodical
|
||||
# key: periodical
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@periodical{ ${title}
|
||||
editor = {${editor}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
issue = {${issue}}}${,
|
||||
issuetitle = {${issuetitle}}}${,
|
||||
url = {${url}}}${,
|
||||
urldate = {${urldate}}}${,
|
||||
issn = {${issn}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
16
snippets/bibtex-mode/phdthesis
Normal file
16
snippets/bibtex-mode/phdthesis
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: phdthesis
|
||||
# key: phdthesis
|
||||
# --
|
||||
@phdthesis{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
school = {${school}},
|
||||
year = {${year}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
18
snippets/bibtex-mode/proceedings
Normal file
18
snippets/bibtex-mode/proceedings
Normal file
@@ -0,0 +1,18 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: proceedings
|
||||
# key: proceedings
|
||||
# --
|
||||
@proceedings{ ${title},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
editor = {${editor}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
organization = {${organization}}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/reference
Normal file
22
snippets/bibtex-mode/reference
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: reference
|
||||
# key: reference
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@reference{ ${title},
|
||||
editor = {${editor}},
|
||||
title = {${title}},
|
||||
year = {${year}}${,
|
||||
publisher = {${publisher}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
17
snippets/bibtex-mode/report
Normal file
17
snippets/bibtex-mode/report
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: report
|
||||
# key: report
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@report{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
institution = {${institution}},
|
||||
year = {${year}},
|
||||
type = {${type}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
8
snippets/bibtex-mode/set
Normal file
8
snippets/bibtex-mode/set
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: set
|
||||
# key: set
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@set{${title},
|
||||
entryset = {${entryset}}
|
||||
}
|
||||
14
snippets/bibtex-mode/software
Normal file
14
snippets/bibtex-mode/software
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: software
|
||||
# key: software
|
||||
# --
|
||||
@software{ ${title}${,
|
||||
author = {${author}}}${,
|
||||
title = {${title}}}${,
|
||||
howpublished = {${howpublished}}}${,
|
||||
month = {${month}}}${,
|
||||
year = {${year}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
22
snippets/bibtex-mode/suppbook
Normal file
22
snippets/bibtex-mode/suppbook
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: suppbook
|
||||
# key: suppbook
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@suppbook{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
chapter = {${chapter}}${,
|
||||
pages = {${pages}}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}},
|
||||
volume = {${volume}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${addre}ss}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
24
snippets/bibtex-mode/suppcollection
Normal file
24
snippets/bibtex-mode/suppcollection
Normal file
@@ -0,0 +1,24 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: suppcollection
|
||||
# key: suppcollection
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@suppcollection{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
booktitle = {${booktitle}},
|
||||
publisher = {${publisher}},
|
||||
year = {${year}}${,
|
||||
editor = {${editor}}}${,
|
||||
volume = {${volume}}}${,
|
||||
series = {${series}}}${,
|
||||
type = {${type}}}${,
|
||||
chapter = {${chapter}}}${,
|
||||
pages = {${pages}}}${,
|
||||
address = {${address}}}${,
|
||||
edition = {${edition}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
18
snippets/bibtex-mode/suppperiodical
Normal file
18
snippets/bibtex-mode/suppperiodical
Normal file
@@ -0,0 +1,18 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: suppperiodical
|
||||
# key: suppperiodical
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@suppperiodical{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
journal = {${journal}},
|
||||
year = {${year}}${,
|
||||
volume = {${volume}}}${,
|
||||
number = {${number}}}${,
|
||||
pages = {${pages}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
16
snippets/bibtex-mode/techreport
Normal file
16
snippets/bibtex-mode/techreport
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: techreport
|
||||
# key: techreport
|
||||
# --
|
||||
@techreport{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
institution = {${institution}},
|
||||
year = {${year}},
|
||||
type = {${type}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
17
snippets/bibtex-mode/thesis
Normal file
17
snippets/bibtex-mode/thesis
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: thesis
|
||||
# key: thesis
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@thesis{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
school = {${school}},
|
||||
year = {${year}}${,
|
||||
type = {${type}}}${,
|
||||
address = {${address}}}${,
|
||||
month = {${month}}}${,
|
||||
note = {${note}}}
|
||||
}
|
||||
|
||||
$0
|
||||
13
snippets/bibtex-mode/unpublished
Normal file
13
snippets/bibtex-mode/unpublished
Normal file
@@ -0,0 +1,13 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: unpublished
|
||||
# key: unpublished
|
||||
# --
|
||||
@unpublished{ ${title},
|
||||
author = {${author}},
|
||||
title = {${title}},
|
||||
note = {${note}}${,
|
||||
month = {${month}}}${,
|
||||
year = {${year}}}
|
||||
}
|
||||
|
||||
$0
|
||||
8
snippets/bibtex-mode/xdata
Normal file
8
snippets/bibtex-mode/xdata
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: xdata
|
||||
# key: xdata
|
||||
# author: Spenser Truex
|
||||
# --
|
||||
@xdata{ ${title},
|
||||
$0
|
||||
}
|
||||
Reference in New Issue
Block a user