Update pipeline and markdown snippets
This commit is contained in:
47
.vscode/markdown.code-snippets
vendored
47
.vscode/markdown.code-snippets
vendored
@@ -1,22 +1,59 @@
|
||||
{
|
||||
"figure": {
|
||||
"scope": "latex",
|
||||
"prefix": "fig",
|
||||
"body": [
|
||||
"\\begin{figure}[h]",
|
||||
" \\centering",
|
||||
" \\fbox{\\includegraphics[width=1\\textwidth]{resources/$1}}",
|
||||
" \\caption{$2}",
|
||||
" \\label{fig:$3}",
|
||||
" \\source{$4}",
|
||||
"\\end{figure}"
|
||||
]
|
||||
},
|
||||
"code listing": {
|
||||
"scope": "latex",
|
||||
"prefix": "lst",
|
||||
"body": [
|
||||
"\\begin{code}",
|
||||
" \\inputminted{${1:language}}{resources/${2:source file}}",
|
||||
" \\label{lst:$3}",
|
||||
" \\captionof{listing}{$4}",
|
||||
" \\source{$5}",
|
||||
"\\end{code}"
|
||||
]
|
||||
},
|
||||
"table": {
|
||||
"scope": "latex",
|
||||
"prefix": "tab",
|
||||
"body": [
|
||||
"\\begin{table}[h]",
|
||||
" \\centering",
|
||||
" \\begin{tabularx}{\\textwidth}{$1}",
|
||||
" $5",
|
||||
" \\end{tabularx}",
|
||||
" \\caption{$2}",
|
||||
" \\label{tab:$3}",
|
||||
" \\source{$4}",
|
||||
"\\end{table}"
|
||||
]
|
||||
},
|
||||
"online im Internet": {
|
||||
"scope": "markdown",
|
||||
"prefix": "oii",
|
||||
"body": "online im Internet"
|
||||
},
|
||||
|
||||
"autocite": {
|
||||
"scope": "markdown",
|
||||
"prefix": "ac",
|
||||
"body": "[vgl. @${1:bibentry}, ${2:page}]"
|
||||
"prefix": "ac",
|
||||
"body": "[vgl. @${1:bibentry}, ${2:page}]"
|
||||
},
|
||||
|
||||
"label": {
|
||||
"scope": "markdown",
|
||||
"prefix": "lbl",
|
||||
"body": "{#${1:type}:${2:id}}"
|
||||
},
|
||||
|
||||
"reference": {
|
||||
"scope": "markdown",
|
||||
"prefix": "ref",
|
||||
|
Reference in New Issue
Block a user