39 lines
956 B
JSON
39 lines
956 B
JSON
{
|
|
"begin-end": {
|
|
"prefix": "\\begin",
|
|
"body": [
|
|
"\\begin{${1:displaymath}}",
|
|
"\t$0",
|
|
"\\end{$1}"
|
|
],
|
|
"description": "A Begin/End Block"
|
|
},
|
|
"environment_tikz": {
|
|
"prefix": "environment_tikz",
|
|
"body": [
|
|
"\\begin{figure}[h!]",
|
|
"\t\\begin{center}",
|
|
"\t\t\\begin{tikzpicture}[scale=1]",
|
|
"\t\t\t$0",
|
|
"\t\t\\end{tikzpicture}",
|
|
"\t\\caption{$1}",
|
|
"\t\\end{center}",
|
|
"\t\\label{fig:$2}",
|
|
"\\end{figure}"
|
|
],
|
|
"description": "The \"TeX Ist Kein Zeichnprogram\" environment\nNeeds \\usepackage{tikz}"
|
|
},
|
|
"environment_figure": {
|
|
"prefix": "environment_figure",
|
|
"body": [
|
|
"\\begin{figure}[]",
|
|
"\t\\centering",
|
|
"\t\\includegraphics{$1}",
|
|
"\t\\label{fig:$2}",
|
|
"\t\\caption{$0}",
|
|
"\\end{figure}"
|
|
],
|
|
"description": "The figure environment"
|
|
}
|
|
}
|