Added tikz standalone figure snippet

This commit is contained in:
Samuel Ortion 2023-03-28 08:44:58 +02:00
parent 33079ea6c7
commit 68e5522b5f
1 changed files with 23 additions and 0 deletions

View File

@ -49,4 +49,27 @@
"%----------------------------------------------------------------------------",
]
},
"Hypothesis highlight":{
"scope": "latex,tex",
"prefix": "hyp",
"body": [
"\\textit{\\textcolor{orange}{Hyp.} $0}",
]
},
"Figure TikZ Standalone":{
"scope": "latex,tex",
"prefix": "tikzfig",
"body":[
"\\documentclass[margin=0.5cm]{standalone}",
"\\usepackage{tikz}",
"\\usetikzlibrary{positioning,calc}",
"",
"\\begin{document}",
"",
"\\begin{tikzpicture}",
" $0",
"\\end{tikzpicture}",
"\\end{document}",
]
}
}