init
This commit is contained in:
8
snippets/ada-mode/case.yasnippet
Normal file
8
snippets/ada-mode/case.yasnippet
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: case statement
|
||||
# key: case
|
||||
# --
|
||||
case $1 is
|
||||
when $3 => $4
|
||||
when others => $2;
|
||||
end case;$0
|
||||
14
snippets/ada-mode/function.yasnippet
Normal file
14
snippets/ada-mode/function.yasnippet
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: function declaration
|
||||
# key: function
|
||||
# --
|
||||
-- @name $1
|
||||
-- @return $3
|
||||
-- @param $2
|
||||
-- @description $5
|
||||
function ${1:Name}($2) return ${3:Integer} is
|
||||
$4
|
||||
begin
|
||||
$7
|
||||
return ${6:$3};
|
||||
end $1;$0
|
||||
10
snippets/ada-mode/procedure
Normal file
10
snippets/ada-mode/procedure
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: ada -*-
|
||||
# name: procedure
|
||||
# key: proc
|
||||
# --
|
||||
procedure $1 is
|
||||
$2
|
||||
begin
|
||||
$3
|
||||
end $1;
|
||||
$0
|
||||
6
snippets/ada-mode/stdimport
Normal file
6
snippets/ada-mode/stdimport
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: with
|
||||
# key: with
|
||||
# --
|
||||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
|
||||
8
snippets/antlr-mode/project
Normal file
8
snippets/antlr-mode/project
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: project
|
||||
# key: proj
|
||||
# --
|
||||
<project name="${1:test}" default="${2:compile}" basedir="${3:.}">
|
||||
|
||||
$0
|
||||
</project>
|
||||
6
snippets/antlr-mode/property
Normal file
6
snippets/antlr-mode/property
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: property
|
||||
# key: prop
|
||||
# --
|
||||
<property name="${1:name}" value="${2:value}" />
|
||||
$0
|
||||
7
snippets/antlr-mode/target
Normal file
7
snippets/antlr-mode/target
Normal file
@@ -0,0 +1,7 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: target
|
||||
# key: target
|
||||
# --
|
||||
<target name="${1:compile}" ${2:other}>
|
||||
$0
|
||||
</target>
|
||||
1
snippets/apples-mode/.yas-parents
Normal file
1
snippets/apples-mode/.yas-parents
Normal file
@@ -0,0 +1 @@
|
||||
prog-mode
|
||||
6
snippets/apples-mode/comment
Normal file
6
snippets/apples-mode/comment
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: comment
|
||||
# --
|
||||
(*
|
||||
$0
|
||||
*)
|
||||
6
snippets/apples-mode/considering
Normal file
6
snippets/apples-mode/considering
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: considering
|
||||
# --
|
||||
considering $1
|
||||
$0
|
||||
end considering
|
||||
6
snippets/apples-mode/considering-application-responses
Normal file
6
snippets/apples-mode/considering-application-responses
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: considering-application-responses
|
||||
# --
|
||||
considering application responses
|
||||
$0
|
||||
end considering
|
||||
4
snippets/apples-mode/display-dialog
Normal file
4
snippets/apples-mode/display-dialog
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: display-dialog
|
||||
# --
|
||||
display dialog "$0"
|
||||
8
snippets/apples-mode/if
Normal file
8
snippets/apples-mode/if
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: if
|
||||
# --
|
||||
if $1 then
|
||||
$2
|
||||
else
|
||||
$0
|
||||
end if
|
||||
6
snippets/apples-mode/ignoring
Normal file
6
snippets/apples-mode/ignoring
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: ignoring
|
||||
# --
|
||||
ignoring $1
|
||||
$0
|
||||
end ignoring
|
||||
6
snippets/apples-mode/ignoring-application-responses
Normal file
6
snippets/apples-mode/ignoring-application-responses
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: ignoring-application-responses
|
||||
# --
|
||||
ignoring application responses
|
||||
$0
|
||||
end ignoring
|
||||
6
snippets/apples-mode/on
Normal file
6
snippets/apples-mode/on
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: on
|
||||
# --
|
||||
on $1
|
||||
$0
|
||||
end $1
|
||||
6
snippets/apples-mode/repeat
Normal file
6
snippets/apples-mode/repeat
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat
|
||||
# --
|
||||
repeat $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/apples-mode/repeat-until
Normal file
6
snippets/apples-mode/repeat-until
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-until
|
||||
# --
|
||||
repeat until $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/apples-mode/repeat-while
Normal file
6
snippets/apples-mode/repeat-while
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-while
|
||||
# --
|
||||
repeat while $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/apples-mode/repeat-with
Normal file
6
snippets/apples-mode/repeat-with
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-with
|
||||
# --
|
||||
repeat with $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/apples-mode/tell-application
Normal file
6
snippets/apples-mode/tell-application
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: tell-application
|
||||
# --
|
||||
tell application "$1"
|
||||
$0
|
||||
end tell
|
||||
5
snippets/apples-mode/tell-application-to-activate
Normal file
5
snippets/apples-mode/tell-application-to-activate
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: tell-application-to-activate
|
||||
# --
|
||||
tell application "$1" to activate
|
||||
$0
|
||||
8
snippets/apples-mode/try
Normal file
8
snippets/apples-mode/try
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: try
|
||||
# --
|
||||
try
|
||||
$1
|
||||
on error $2
|
||||
$0
|
||||
end try
|
||||
6
snippets/apples-mode/using-terms-from-application
Normal file
6
snippets/apples-mode/using-terms-from-application
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: using-terms-from-application
|
||||
# --
|
||||
using terms from application "$1"
|
||||
$0
|
||||
end using terms from
|
||||
6
snippets/apples-mode/with-timeout-of-seconds
Normal file
6
snippets/apples-mode/with-timeout-of-seconds
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: with-timeout-of-seconds
|
||||
# --
|
||||
with timeout of $1 seconds
|
||||
$0
|
||||
end timeout
|
||||
6
snippets/apples-mode/with-transaction
Normal file
6
snippets/apples-mode/with-transaction
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: with-transaction
|
||||
# --
|
||||
with transaction
|
||||
$0
|
||||
end transaction
|
||||
1
snippets/applescript-mode/.yas-parents
Normal file
1
snippets/applescript-mode/.yas-parents
Normal file
@@ -0,0 +1 @@
|
||||
prog-mode
|
||||
6
snippets/applescript-mode/comment
Normal file
6
snippets/applescript-mode/comment
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: comment
|
||||
# --
|
||||
(*
|
||||
$0
|
||||
*)
|
||||
6
snippets/applescript-mode/considering
Normal file
6
snippets/applescript-mode/considering
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: considering
|
||||
# --
|
||||
considering $1
|
||||
$0
|
||||
end considering
|
||||
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: considering-application-responses
|
||||
# --
|
||||
considering application responses
|
||||
$0
|
||||
end considering
|
||||
4
snippets/applescript-mode/display-dialog
Normal file
4
snippets/applescript-mode/display-dialog
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: display-dialog
|
||||
# --
|
||||
display dialog "$0"
|
||||
8
snippets/applescript-mode/if
Normal file
8
snippets/applescript-mode/if
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: if
|
||||
# --
|
||||
if $1 then
|
||||
$2
|
||||
else
|
||||
$0
|
||||
end if
|
||||
6
snippets/applescript-mode/ignoring
Normal file
6
snippets/applescript-mode/ignoring
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: ignoring
|
||||
# --
|
||||
ignoring $1
|
||||
$0
|
||||
end ignoring
|
||||
6
snippets/applescript-mode/ignoring-application-responses
Normal file
6
snippets/applescript-mode/ignoring-application-responses
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: ignoring-application-responses
|
||||
# --
|
||||
ignoring application responses
|
||||
$0
|
||||
end ignoring
|
||||
6
snippets/applescript-mode/on
Normal file
6
snippets/applescript-mode/on
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: on
|
||||
# --
|
||||
on $1
|
||||
$0
|
||||
end $1
|
||||
6
snippets/applescript-mode/repeat
Normal file
6
snippets/applescript-mode/repeat
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat
|
||||
# --
|
||||
repeat $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/applescript-mode/repeat-until
Normal file
6
snippets/applescript-mode/repeat-until
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-until
|
||||
# --
|
||||
repeat until $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/applescript-mode/repeat-while
Normal file
6
snippets/applescript-mode/repeat-while
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-while
|
||||
# --
|
||||
repeat while $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/applescript-mode/repeat-with
Normal file
6
snippets/applescript-mode/repeat-with
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: repeat-with
|
||||
# --
|
||||
repeat with $1
|
||||
$0
|
||||
end repeat
|
||||
6
snippets/applescript-mode/tell-application
Normal file
6
snippets/applescript-mode/tell-application
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: tell-application
|
||||
# --
|
||||
tell application "$1"
|
||||
$0
|
||||
end tell
|
||||
5
snippets/applescript-mode/tell-application-to-activate
Normal file
5
snippets/applescript-mode/tell-application-to-activate
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: tell-application-to-activate
|
||||
# --
|
||||
tell application "$1" to activate
|
||||
$0
|
||||
8
snippets/applescript-mode/try
Normal file
8
snippets/applescript-mode/try
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: try
|
||||
# --
|
||||
try
|
||||
$1
|
||||
on error $2
|
||||
$0
|
||||
end try
|
||||
6
snippets/applescript-mode/using-terms-from-application
Normal file
6
snippets/applescript-mode/using-terms-from-application
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: using-terms-from-application
|
||||
# --
|
||||
using terms from application "$1"
|
||||
$0
|
||||
end using terms from
|
||||
6
snippets/applescript-mode/with-timeout-of-seconds
Normal file
6
snippets/applescript-mode/with-timeout-of-seconds
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: with-timeout-of-seconds
|
||||
# --
|
||||
with timeout of $1 seconds
|
||||
$0
|
||||
end timeout
|
||||
6
snippets/applescript-mode/with-transaction
Normal file
6
snippets/applescript-mode/with-transaction
Normal file
@@ -0,0 +1,6 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: with-transaction
|
||||
# --
|
||||
with transaction
|
||||
$0
|
||||
end transaction
|
||||
8
snippets/bazel-mode/alias
Normal file
8
snippets/bazel-mode/alias
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: alias
|
||||
# key: alias
|
||||
# --
|
||||
alias(
|
||||
name = "$0",
|
||||
actual = "$1"
|
||||
)
|
||||
9
snippets/bazel-mode/ccb
Normal file
9
snippets/bazel-mode/ccb
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_binary
|
||||
# key: ccb
|
||||
# --
|
||||
cc_binary(
|
||||
name = "$0",
|
||||
srcs = ["$1"],
|
||||
deps = ["$2"]
|
||||
)
|
||||
8
snippets/bazel-mode/cci
Normal file
8
snippets/bazel-mode/cci
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_import
|
||||
# key: cci
|
||||
# --
|
||||
cc_import(
|
||||
name = "$0",
|
||||
hdrs = ["$1"]
|
||||
)
|
||||
10
snippets/bazel-mode/ccinc
Normal file
10
snippets/bazel-mode/ccinc
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_inc_library
|
||||
# key: ccinc
|
||||
# --
|
||||
cc_inc_library(
|
||||
name = "$0",
|
||||
hdrs = ["$1"],
|
||||
prefix = "$2",
|
||||
deps = ["$3"]
|
||||
)
|
||||
10
snippets/bazel-mode/ccl
Normal file
10
snippets/bazel-mode/ccl
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_library
|
||||
# key: ccl
|
||||
# --
|
||||
cc_library(
|
||||
name = "$0",
|
||||
srcs = ["$1"],
|
||||
hdrs = ["$2"],
|
||||
deps = ["$3"]
|
||||
)
|
||||
8
snippets/bazel-mode/ccp
Normal file
8
snippets/bazel-mode/ccp
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_proto_library
|
||||
# key: ccp
|
||||
# --
|
||||
cc_proto_library(
|
||||
name = "$0",
|
||||
deps = ["$1"]
|
||||
)
|
||||
9
snippets/bazel-mode/cct
Normal file
9
snippets/bazel-mode/cct
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: cc_test
|
||||
# key: cct
|
||||
# --
|
||||
cc_test(
|
||||
name = "$0"
|
||||
srcs = ["$1"],
|
||||
deps = ["$2"]
|
||||
)
|
||||
8
snippets/bazel-mode/fg
Normal file
8
snippets/bazel-mode/fg
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: filegroup
|
||||
# key: fg
|
||||
# --
|
||||
filegroup(
|
||||
name = "$0",
|
||||
srcs = "$1"
|
||||
)
|
||||
9
snippets/bazel-mode/genq
Normal file
9
snippets/bazel-mode/genq
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: genquery
|
||||
# key: genq
|
||||
# --
|
||||
genquery(
|
||||
name = "$0",
|
||||
expression = "$1",
|
||||
scope = "$2"
|
||||
)
|
||||
9
snippets/bazel-mode/jbin
Normal file
9
snippets/bazel-mode/jbin
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: java_binary
|
||||
# key: jbin
|
||||
# --
|
||||
java_binary(
|
||||
name = "$0",
|
||||
srcs = "$1",
|
||||
deps = "$2"
|
||||
)
|
||||
10
snippets/bazel-mode/jimp
Normal file
10
snippets/bazel-mode/jimp
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: java_import
|
||||
# key: jimp
|
||||
# --
|
||||
java_import(
|
||||
name = "$0",
|
||||
jars = [
|
||||
"$1"
|
||||
]
|
||||
)
|
||||
8
snippets/bazel-mode/jlib
Normal file
8
snippets/bazel-mode/jlib
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: java_library
|
||||
# key: jlib
|
||||
# --
|
||||
java_library(
|
||||
name = "$0",
|
||||
deps = "$1"
|
||||
)
|
||||
9
snippets/bazel-mode/jrun
Normal file
9
snippets/bazel-mode/jrun
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: java_runtime
|
||||
# key: jrun
|
||||
# --
|
||||
java_runtime(
|
||||
name = "$0",
|
||||
srcs = "$1",
|
||||
java_home = "$2"
|
||||
)
|
||||
11
snippets/bazel-mode/jtest
Normal file
11
snippets/bazel-mode/jtest
Normal file
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: java_test
|
||||
# key: jtest
|
||||
# --
|
||||
java_test(
|
||||
name = "$0",
|
||||
size = "$1",
|
||||
runtime_deps = [
|
||||
"$2"
|
||||
]
|
||||
)
|
||||
12
snippets/bazel-mode/pybin
Normal file
12
snippets/bazel-mode/pybin
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: py_binary
|
||||
# key: pybin
|
||||
# --
|
||||
py_binary(
|
||||
name = "$0",
|
||||
srcs = "$1",
|
||||
data = "$2"
|
||||
deps = [
|
||||
"$3"
|
||||
]
|
||||
)
|
||||
9
snippets/bazel-mode/pylib
Normal file
9
snippets/bazel-mode/pylib
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: py_library
|
||||
# key: pylib
|
||||
# --
|
||||
py_library(
|
||||
name = "$0",
|
||||
deps = "$1",
|
||||
srcs = "$2"
|
||||
)
|
||||
9
snippets/bazel-mode/pyrun
Normal file
9
snippets/bazel-mode/pyrun
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: py_runtime
|
||||
# key: pyrun
|
||||
# --
|
||||
py_runtime(
|
||||
name = "$0",
|
||||
files = "$1",
|
||||
interpreter = "$2"
|
||||
)
|
||||
11
snippets/bazel-mode/pytest
Normal file
11
snippets/bazel-mode/pytest
Normal file
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: py_test
|
||||
# key: pytest
|
||||
# --
|
||||
py_test(
|
||||
name = "$0",
|
||||
srcs = [
|
||||
"$1"
|
||||
],
|
||||
main = "$2",
|
||||
)
|
||||
9
snippets/bazel-mode/shbin
Normal file
9
snippets/bazel-mode/shbin
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: sh_binary
|
||||
# key: shbin
|
||||
# --
|
||||
sh_binary(
|
||||
name = "$0",
|
||||
srcs = "$1",
|
||||
data = "$2"
|
||||
)
|
||||
10
snippets/bazel-mode/shlib
Normal file
10
snippets/bazel-mode/shlib
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: sh_library
|
||||
# key: shlib
|
||||
# --
|
||||
sh_library(
|
||||
name = "$0",
|
||||
data = [
|
||||
"$1"
|
||||
]
|
||||
)
|
||||
11
snippets/bazel-mode/shtest
Normal file
11
snippets/bazel-mode/shtest
Normal file
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: sh_test
|
||||
# key: shtest
|
||||
# --
|
||||
sh_test(
|
||||
name = "$0",
|
||||
size = "$1",
|
||||
srcs = "$2",
|
||||
deps = "$3",
|
||||
data = "$4"
|
||||
)
|
||||
5
snippets/bazel-mode/ws
Normal file
5
snippets/bazel-mode/ws
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: workspace
|
||||
# key: ws
|
||||
# --
|
||||
workspace(name = "$0")
|
||||
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
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user