Files
dotfiles/.config/Code/User/snippets/latex.json
2024-09-23 11:48:01 +02:00

15 lines
336 B
JSON

{
"Centered figure": {
"prefix": [ "\\figure" ],
"body": [
"\\begin{figure}[H]",
"\t\\centering",
"\t\\includegraphics[width=$2\\linewidth]{$1}",
"\t\\caption{",
"\t\t\\parbox[t]{$2\\linewidth}{$3}",
"\t}",
"\\end{figure}",
],
"description": "Centered figure"
}
}