Skip to content

Instantly share code, notes, and snippets.

@henry-thompson
Last active May 15, 2017 16:28
Show Gist options
  • Save henry-thompson/76f1209991084adc200f585349959c74 to your computer and use it in GitHub Desktop.
Save henry-thompson/76f1209991084adc200f585349959c74 to your computer and use it in GitHub Desktop.
Visual Studio Code LaTeX Configuration File
{
"Supervision Work Template": {
"prefix": "supervision",
"body": [
"\\documentclass[11pt]{article}",
"\\usepackage{mdframed}",
"\\usepackage{parskip}",
"\\usepackage{amsmath}",
"\\usepackage{amsfonts}",
"\\usepackage{minted}",
"",
"\\title{${1:title}}",
"\\author{Henry Thompson (ht367)}",
"",
"\\begin{document}",
" \\maketitle",
" $2",
"\\end{document}"
],
"description": "Supervision Work/Notes Template"
},
"mdframed": {
"prefix": "mdframed",
"body": [
"\\begin{mdframed}",
"$1",
"\\end{mdframed}"
],
"description": "Create mdframed block"
},
"minted": {
"prefix": "minted",
"body": [
"\\begin{minted}{${1:Language}}",
"$2",
"\\end{minted}"
],
"description": "Create minted block"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment