1
Fork 0

Small latex snippet imrpovement

This commit is contained in:
Matei Adriel 2023-02-15 11:28:43 +01:00
parent 0ffda6f90d
commit d573e17a00
No known key found for this signature in database
4 changed files with 13 additions and 15 deletions
dotfiles/vscode-snippets/snippets/latex

View file

@ -193,16 +193,6 @@
"description": "Create an aligned environment",
"body": ["\\begin{aligned}", "\t$0", "\\end{aligned}"]
},
"Text explanation in math mode": {
"prefix": "texpl",
"description": "Explain a step using text in math mode",
"body": "&& \\text{($1)}$0"
},
"Explanation in math mode": {
"prefix": "expl",
"description": "Explain a step in math mode",
"body": "&& ($1) $0"
},
"Let": {
"prefix": "let",
"description": "Let something equal something else",
@ -216,7 +206,7 @@
"Aligned display math": {
"prefix": "maligned",
"description": "Create an aligned display math environment",
"body": ["\\[", "\t\\begin{aligned}", "\t\t$0", "\t\\end{aligned}", "\\]"]
"body": ["\\begin{align}", "\t$0", "\\end{align}"]
},
"System of equations": {
"prefix": "eqsystem",