[nvim] add acronym snippet

This commit is contained in:
Marco Thomas
2022-10-19 15:48:31 +02:00
parent 564cbf3b0c
commit 9f9f2c5ca2

View File

@@ -71,6 +71,9 @@
"\\newtheorem{theorem}{Satz}[section]", "\\newtheorem{theorem}{Satz}[section]",
"\\newtheorem*{remark}{Bemerkung}", "\\newtheorem*{remark}{Bemerkung}",
"", "",
"%%% acronyms - use with \\ac{} - don't print a list of acronyms",
"\\usepackage[nolist]{acronym}",
"",
"%%% bibtex - cite with \\autocite{}, will show in footnote", "%%% bibtex - cite with \\autocite{}, will show in footnote",
"\\usepackage{csquotes}", "\\usepackage{csquotes}",
"\\usepackage[style=verbose-trad2]{biblatex}", "\\usepackage[style=verbose-trad2]{biblatex}",
@@ -80,7 +83,7 @@
"\\author{Marco Thomas}", "\\author{Marco Thomas}",
"\\date{\\today}", "\\date{\\today}",
"", "",
"% \\bibliography{bibliography}", "\\bibliography{bibliography}",
"", "",
"\\begin{document}", "\\begin{document}",
"", "",
@@ -90,11 +93,17 @@
"\\tableofcontents", "\\tableofcontents",
"\\newpage", "\\newpage",
"", "",
"% use with \\ac{}",
"\\begin{acronym}[Acronyms]",
" \\acro{latex}[LaTeX]{Bestes Doku Tool der Welt}",
"\\end{acronym}",
"",
"% begin here; don't forget to relaunch nvim :>", "% begin here; don't forget to relaunch nvim :>",
"\\section{}", "\\section{}",
"", "",
"% \\newpage", "% bibliography, cite with \\autocite{}",
"% \\printbibliography", "\\newpage",
"\\printbibliography",
"", "",
"\\end{document}" "\\end{document}"
], ],