Update to new latex snippets

This commit is contained in:
Admin 2025-02-18 14:32:17 +01:00
parent 45aeb0100f
commit 4386c6684e

View File

@ -1,56 +1,15 @@
{ {
"Formula (old)": { "prepare LaTeX Document": {
"prefix": "formulaBare",
"body": [
"\\begin{tcolorbox}[colback=red!5!white,colframe=red!75!black,title=Formula: $1]",
"\t$2",
"\\end{tcolorbox}"
],
"description": "Red tcolorbox to provide a formula (without the default setup)"
},
"Prepare Latex doc (old)": {
"prefix": "LaTeX-Prepare-Old",
"body": [
"\\documentclass{article}\n",
"% Imports %",
"\\usepackage{amsmath}",
"\\usepackage{graphicx}",
"\\usepackage{subcaption}",
"\\usepackage[export]{adjustbox}",
"\\usepackage{tcolorbox}",
"\\usepackage{xcolor}",
"\\usepackage{cancel}",
"\\usepackage{dsfont}",
"\\usepackage{amssymb}",
"\\usepackage[a4paper]{geometry}",
"\\usepackage{parskip}\n",
"% Setup %",
"\\title{\\Huge \\textbf{$1}}",
"\\author{Janis Hutz}\n",
"% Configuring %",
"\\addtolength{\\oddsidemargin}{-0.75in}",
"\\addtolength{\\textwidth}{1.5in}",
"\\addtolength{\\evensidemargin}{-0.75in}",
"\\addtolength{\\topmargin}{-1in}",
"\\addtolength{\\textheight}{2in}\n",
"% Main doc %",
"\\begin{document}",
"\\maketitle",
"$2",
"\\end{document}"
],
"description": "Prepare a LaTeX Document with all relevant imports"
},
"prepare LaTeX Document (New)": {
"prefix": "latex-prepare", "prefix": "latex-prepare",
"body": [ "body": [
"\\documentclass{article}\n", "\\documentclass{article}\n",
"\\input{~/projects/generalSchool/helpers.tex}\n", "\\newcommand{\\dir}{~/projects/latex} % IMPORTANT: No trailing slashes!",
"\\input{\\dir/include.tex}",
"\\load{recommended}\n",
"\\setup{$1}\n", "\\setup{$1}\n",
"\\begin{document}", "\\begin{document}",
"\\maketitle", "\\startDocument",
"\\pagestyle{fancy}", "\\usetcolorboxes",
"\\thispagestyle{fancy}\n\n",
"$2\n\n", "$2\n\n",
"\\end{document}" "\\end{document}"
], ],
@ -59,17 +18,13 @@
"Fancy table": { "Fancy table": {
"prefix": "table", "prefix": "table",
"body": [ "body": [
"\\begin{tabular}[h!]{|$1|}", "\\begin{tables}{$1}{$2}\n",
"\t\\hline", "\t$3\\\\",
"\t\\rowcolor{$2}\\multicolumn{$3}{|c|}{$4}\\", "\\end{tables}"
"\t\\hline",
"\t$5\\\\\\",
"\t\\hline",
"\\end{tabular}"
], ],
"description": "Inserts a tcolorbox to provide a formula (red)" "description": "Insert a table (without environment)"
}, },
"Formula (new)": { "Formula": {
"prefix": "formula", "prefix": "formula",
"body": [ "body": [
"\\begin{formula}[]{$1}", "\\begin{formula}[]{$1}",
@ -78,7 +33,7 @@
], ],
"description": "Inserts a tcolorbox to provide a formula (red)" "description": "Inserts a tcolorbox to provide a formula (red)"
}, },
"Definition (new)": { "Definition": {
"prefix": "definition", "prefix": "definition",
"body": [ "body": [
"\\begin{definition}[]{$1}", "\\begin{definition}[]{$1}",
@ -87,7 +42,7 @@
], ],
"description": "Inserts a tcolorbox to provide a definition (blue)" "description": "Inserts a tcolorbox to provide a definition (blue)"
}, },
"Recall (new)": { "Recall": {
"prefix": "recall", "prefix": "recall",
"body": [ "body": [
"\\begin{recall}[]{$1}", "\\begin{recall}[]{$1}",
@ -96,7 +51,7 @@
], ],
"description": "Inserts a tcolorbox to provide a recall / revision of previous knowledge (yellow)" "description": "Inserts a tcolorbox to provide a recall / revision of previous knowledge (yellow)"
}, },
"Important Remarks (new)": { "Important Remarks": {
"prefix": "remarks", "prefix": "remarks",
"body": [ "body": [
"\\begin{remarks}[]{$1}", "\\begin{remarks}[]{$1}",
@ -105,25 +60,25 @@
], ],
"description": "Inserts a tcolorbox to provide remarks (green)" "description": "Inserts a tcolorbox to provide remarks (green)"
}, },
"Guides (new)": { "Guides": {
"prefix": "guides", "prefix": "guides",
"body": [ "body": [
"\\begin{guides}[]{$1}{${2:Usage}}", "\\begin{guides}[]{$1}{${2:Usage}}",
"\t$2", "\t$2",
"\\end{guides}" "\\end{guides}"
], ],
"description": "Inserts a tcolorbox to provide guides / instructions on how to use (purple)" "description": "Inserts a tcolorbox to provide guides / instructions on how to use (red)"
}, },
"Properties (new)": { "Properties": {
"prefix": "properties", "prefix": "properties",
"body": [ "body": [
"\\begin{properties}[]{$1}", "\\begin{properties}[]{$1}",
"\t$2", "\t$2",
"\\end{properties}" "\\end{properties}"
], ],
"description": "Inserts a tcolorbox to inform about properties / restrictions / limitations" "description": "Inserts a tcolorbox to inform about properties"
}, },
"Restrictions (new)": { "Restrictions": {
"prefix": "restrictions", "prefix": "restrictions",
"body": [ "body": [
"\\begin{restrictions}[]{$1}", "\\begin{restrictions}[]{$1}",
@ -132,7 +87,7 @@
], ],
"description": "Inserts a tcolorbox to inform about restrictions" "description": "Inserts a tcolorbox to inform about restrictions"
}, },
"Limitations (new)": { "Limitations": {
"prefix": "limitations", "prefix": "limitations",
"body": [ "body": [
"\\begin{limitations}[]{$1}", "\\begin{limitations}[]{$1}",
@ -141,7 +96,7 @@
], ],
"description": "Inserts a tcolorbox to inform about limitations" "description": "Inserts a tcolorbox to inform about limitations"
}, },
"Theorem (new)": { "Theorem": {
"prefix": "theorem", "prefix": "theorem",
"body": [ "body": [
"\\begin{theorem}[]{$1}", "\\begin{theorem}[]{$1}",
@ -150,7 +105,7 @@
], ],
"description": "Inserts a tcolorbox to inform about theorems" "description": "Inserts a tcolorbox to inform about theorems"
}, },
"Lemma (new)": { "Lemma": {
"prefix": "lemma", "prefix": "lemma",
"body": [ "body": [
"\\begin{lemma}[]{$1}", "\\begin{lemma}[]{$1}",
@ -159,7 +114,7 @@
], ],
"description": "Inserts a tcolorbox to inform about lemmas" "description": "Inserts a tcolorbox to inform about lemmas"
}, },
"Corollary (new)": { "Corollary": {
"prefix": "corollary", "prefix": "corollary",
"body": [ "body": [
"\\begin{corollary}[]{$1}", "\\begin{corollary}[]{$1}",
@ -168,7 +123,25 @@
], ],
"description": "Inserts a tcolorbox to inform about corollaries" "description": "Inserts a tcolorbox to inform about corollaries"
}, },
"Terms (new)": { "Proposition": {
"prefix": "proposition",
"body": [
"\\begin{proposition}[]{$1}",
"\t$2",
"\\end{proposition}"
],
"description": "Inserts a tcolorbox to inform about propositions"
},
"Fact": {
"prefix": "fact",
"body": [
"\\begin{fact}[]{$1}",
"\t$2",
"\\end{fact}"
],
"description": "Inserts a tcolorbox to inform about facts"
},
"Terms": {
"prefix": "terms", "prefix": "terms",
"body": [ "body": [
"\\begin{terms}[]{$1}", "\\begin{terms}[]{$1}",
@ -177,7 +150,7 @@
], ],
"description": "Inserts a tcolorbox to inform about terms" "description": "Inserts a tcolorbox to inform about terms"
}, },
"Proof (new)": { "Proof": {
"prefix": "proof", "prefix": "proof",
"body": [ "body": [
"\\begin{proof}[]{$1}", "\\begin{proof}[]{$1}",
@ -186,7 +159,7 @@
], ],
"description": "Inserts a tcolorbox to show a proof" "description": "Inserts a tcolorbox to show a proof"
}, },
"Axiom (new)": { "Axiom": {
"prefix": "axiom", "prefix": "axiom",
"body": [ "body": [
"\\begin{axiom}[]{$1}", "\\begin{axiom}[]{$1}",
@ -195,7 +168,7 @@
], ],
"description": "Inserts a tcolorbox to show an axiom" "description": "Inserts a tcolorbox to show an axiom"
}, },
"Notation (new)": { "Notation": {
"prefix": "notation", "prefix": "notation",
"body": [ "body": [
"\\begin{notation}[]{$1}", "\\begin{notation}[]{$1}",
@ -204,7 +177,7 @@
], ],
"description": "Inserts a tcolorbox to show notation" "description": "Inserts a tcolorbox to show notation"
}, },
"Example (new)": { "Example": {
"prefix": "example", "prefix": "example",
"body": [ "body": [
"\\begin{example}[]{$1}", "\\begin{example}[]{$1}",
@ -213,16 +186,16 @@
], ],
"description": "Inserts a tcolorbox to show example" "description": "Inserts a tcolorbox to show example"
}, },
"Usage (languages, new)": { "Usage": {
"prefix": "usage", "prefix": "usage",
"body": [ "body": [
"\\begin{usage}[]{$1}", "\\begin{usage}[]{$1}",
"\t$2", "\t$2",
"\\end{usage}" "\\end{usage}"
], ],
"description": "Inserts a tcolorbox to inform about usage in a language context" "description": "Inserts a tcolorbox to inform about usage"
}, },
"Conjugation (languages, new)": { "Conjugation": {
"prefix": "conjugation", "prefix": "conjugation",
"body": [ "body": [
"\\begin{conjugation}[]{$1}", "\\begin{conjugation}[]{$1}",
@ -231,7 +204,7 @@
], ],
"description": "Inserts a tcolorbox to inform about conjugation" "description": "Inserts a tcolorbox to inform about conjugation"
}, },
"Forms (languages, new)": { "Forms": {
"prefix": "forms", "prefix": "forms",
"body": [ "body": [
"\\begin{forms}[]{$1}", "\\begin{forms}[]{$1}",
@ -240,7 +213,7 @@
], ],
"description": "Inserts a tcolorbox to inform about forms of e.g. grammatical structures" "description": "Inserts a tcolorbox to inform about forms of e.g. grammatical structures"
}, },
"General-Tcolorbox (new)": { "General-Tcolorbox": {
"prefix": "general-tcb", "prefix": "general-tcb",
"body": [ "body": [
"\\begin{general}[]{${1:title}}{${2:second title}}{${3|red,green,blue,cyan,magenta,yellow,black,gray,white,darkgray,lightgray,brown,lime,olive,orange,pink,purple,teal,violet|}}", "\\begin{general}[]{${1:title}}{${2:second title}}{${3|red,green,blue,cyan,magenta,yellow,black,gray,white,darkgray,lightgray,brown,lime,olive,orange,pink,purple,teal,violet|}}",
@ -261,6 +234,108 @@
"\\inlineex" "\\inlineex"
] ]
}, },
"Example (short)": {
"prefix": "example-short",
"body": [
"\\shortex"
]
},
"Definition (inline)": {
"prefix": "definition-inline",
"body": [
"\\inlinedef"
]
},
"Definition (short)": {
"prefix": "definition-short",
"body": [
"\\shortdef"
]
},
"Theorem (inline)": {
"prefix": "theorem-inline",
"body": [
"\\inlinetheorem"
]
},
"Theorem (short)": {
"prefix": "theorem-short",
"body": [
"\\shorttheorem"
]
},
"Lemma (inline)": {
"prefix": "lemma-inline",
"body": [
"\\inlinelemma"
]
},
"Lemma (short)": {
"prefix": "lemma-short",
"body": [
"\\shortlemma"
]
},
"Corollary (inline)": {
"prefix": "corollary-inline",
"body": [
"\\inlinecorollary"
]
},
"Corollary (short)": {
"prefix": "corollary-short",
"body": [
"\\shortcorollary"
]
},
"Proposition (inline)": {
"prefix": "proposition-inline",
"body": [
"\\inlineproposition"
]
},
"Proposition (short)": {
"prefix": "proposition-short",
"body": [
"\\shortproposition"
]
},
"Fact (inline)": {
"prefix": "fact-inline",
"body": [
"\\inlinefact"
]
},
"Fact (short)": {
"prefix": "fact-short",
"body": [
"\\shortfact"
]
},
"Axiom (inline)": {
"prefix": "axiom-inline",
"body": [
"\\inlineaxiom"
]
},
"Axiom (short)": {
"prefix": "axiom-short",
"body": [
"\\shortaxiom"
]
},
"Proof (inline)": {
"prefix": "proof-inline",
"body": [
"\\inlineproof"
]
},
"Proof (short)": {
"prefix": "proof-short",
"body": [
"\\shortproof"
]
},
"bold": { "bold": {
"prefix": "#bold", "prefix": "#bold",
"body": [ "body": [
@ -309,27 +384,28 @@
"\\color{${1|red,green,blue,cyan,magenta,yellow,black,gray,white,darkgray,lightgray,brown,lime,olive,orange,pink,purple,teal,violet|}}" "\\color{${1|red,green,blue,cyan,magenta,yellow,black,gray,white,darkgray,lightgray,brown,lime,olive,orange,pink,purple,teal,violet|}}"
] ]
}, },
"German doc": { "Set Language": {
"prefix": "latex-german", "prefix": "setLang",
"body": [ "body": [
"\\usepackage[ngerman]{babel}", "\\setLang{$1}"
"\\setcounter{lang}{2} % Move below \\begin{document}"
] ]
}, },
"Letter": { "Letter": {
"prefix": "latex-letter", "prefix": "latex-letter",
"body": [ "body": [
"\\documentclass[12pt,a4paper]{scrlttr2}\n", "\\documentclass[12pt,a4paper]{scrlttr2}\n",
"\\input{~/projects/generalSchool/letter-helpers.tex}\n", "\\newcommand{\\dir}{~/projects/latex} % IMPORTANT: No trailing slashes!",
"\\input{\\dir/include.tex}",
"\\load{recommended}\n",
"% Subject", "% Subject",
"\\setkomavar{subject}{$1}", "\\setkomavar{subject}{$1}",
"\\begin{document}\\raggedright", "\\begin{document}\\raggedright",
"\t\\begin{letter}{Company \\\\\\ Name \\\\\\ Address \\\\\\ CH-Place}", "\t\\begin{letter}{Company \\\\\\ Name \\\\\\ Address \\\\\\ CH-Place}",
"\t\t\\opening{Intro}\n", "\t\t\\opening{Intro}\n",
"\t\t$2\n", "\t\t$2\n",
"\t\t\\closing{Mit freundlichen Grüssen}", "\t\t\\closing{Kind regards}",
"\t\\end{letter}", "\t\\end{letter}",
"\\end{document}" "\\end{document}"
] ]
} }
} }