Files
garden/.vscode/project.code-snippets
2026-05-02 15:59:03 -04:00

176 lines
3.6 KiB
Plaintext

{
"Log to console": {
"scope": "latex",
"prefix": "log",
"body": ["console.info(\"Hello, ${1:World}!\")", "$0"],
"description": "Logs to console"
},
"Theorem Block": {
"scope": "latex",
"prefix": "thm",
"body": [
"\\begin{theorem}[$1]",
"\\label{theorem:$2}",
" $3",
"\\end{theorem}",
"$0"
]
},
"Definition Block": {
"scope": "latex",
"prefix": "def",
"body": [
"\\begin{definition}[$1]",
"\\label{definition:$2}",
" $3",
"\\end{definition}",
"$0"
]
},
"Summary": {
"scope": "latex",
"prefix": "summ",
"body": [
"\\begin{summary}[$1]",
"\\label{summary:$2}",
" $3",
"\\end{summary}",
"$0"
]
},
"Lemma Block": {
"scope": "latex",
"prefix": "lem",
"body": [
"\\begin{lemma}",
"\\label{lemma:$1}",
" $2",
"\\end{lemma}",
"$0"
]
},
"Proposition Block": {
"scope": "latex",
"prefix": "prop",
"body": [
"\\begin{proposition}",
"\\label{proposition:$1}",
" $2",
"\\end{proposition}",
"$0"
]
},
"Remark Block": {
"scope": "latex",
"prefix": "rem",
"body": [
"\\begin{remark}",
"\\label{remark:$1}",
" $2",
"\\end{remark}",
"$0"
]
},
"Corollary Block": {
"scope": "latex",
"prefix": "cor",
"body": [
"\\begin{corollary}",
"\\label{corollary:$1}",
" $2",
"\\end{corollary}",
"$0"
]
},
"Proof Block": {
"scope": "latex",
"prefix": "proof",
"body": ["\\begin{proof}", " $1", "\\end{proof}"]
},
"Bold": {
"scope": "latex",
"prefix": "bf",
"body": ["\\textbf{$1}$0"]
},
"Italic": {
"scope": "latex",
"prefix": "it",
"body": ["\\textit{$1}$0"]
},
"Align": {
"scope": "latex",
"prefix": "align",
"body": ["\\begin{align*}", " $1", "\\end{align*}", "$0"]
},
"Enumerate": {
"scope": "latex",
"prefix": "enum",
"body": ["\\begin{enumerate}", " \\item $1", "\\end{enumerate}", "$0"]
},
"Section": {
"scope": "latex",
"prefix": "sec",
"body": ["\\section{$1}", "\\label{section:$2}", "", "$0"]
},
"Subsection": {
"scope": "latex",
"prefix": "subsec",
"body": ["\\subsection{$1}", "\\label{subsection:$2}", "", "$0"]
},
"Part": {
"scope": "latex",
"prefix": "part",
"body": ["\\part{$1}", "\\label{part:$2}", "", "$0"]
},
"Chapter": {
"scope": "latex",
"prefix": "chapter",
"body": ["\\chapter{$1}", "\\label{chap:$2}", "", "$0"]
},
"Citation After Block": {
"scope": "latex",
"prefix": "cite",
"body": ["[{{\\cite[$1]{$2}}}]$0"]
},
"Mathcal": {
"scope": "latex",
"prefix": "cal",
"body": ["\\mathcal{$1}$0"]
},
"Mathscr": {
"scope": "latex",
"prefix": "scr",
"body": ["\\mathscr{$1}$0"]
},
"Mathfrak": {
"scope": "latex",
"prefix": "fk",
"body": ["\\mathfrak{$1}$0"]
},
"Dual Pairing": {
"scope": "latex",
"prefix": "dp",
"body": ["\\dpb{$1}{$2}$0"]
},
"Dual Pairing, Default Bracket Size": {
"scope": "latex",
"prefix": "dpn",
"body": ["\\dpn{$1}{$2}$0"]
},
"d-Dimensional Euclidean Space": {
"scope": "latex",
"prefix": "rd",
"body": ["\\real^d$0"]
},
"Dyadic Rational Numbers": {
"scope": "latex",
"prefix": "dya",
"body": ["\\mathbb{D}"]
},
"Rank": {
"scope": "latex",
"prefix": "rank",
"body": ["\\text{rk}"]
}
}