diff --git a/config/config.tex b/config/config.tex index 5ef679e..0424988 100644 --- a/config/config.tex +++ b/config/config.tex @@ -15,8 +15,8 @@ % Configure your address here \newcommand{\name}{Janis Hutz} -\newcommand{\street}{} -\newcommand{\city}{} +\newcommand{\street}{Street} +\newcommand{\city}{City} \newcommand{\countrycode}{CH} diff --git a/examples/letter/letter.pdf b/examples/letter/letter.pdf new file mode 100644 index 0000000..c29d17d Binary files /dev/null and b/examples/letter/letter.pdf differ diff --git a/examples/letter/letter.tex b/examples/letter/letter.tex new file mode 100644 index 0000000..b404744 --- /dev/null +++ b/examples/letter/letter.tex @@ -0,0 +1,17 @@ +\documentclass[12pt,a4paper]{scrlttr2} + +\newcommand{\dir}{~/projects/latex} % IMPORTANT: No trailing slashes! +\input{\dir/include.tex} +\load{letter} + +% Subject +\setkomavar{subject}{Test} +\begin{document}\raggedright + \begin{letter}{Company \\ Name \\ Address \\ CH-Place} + \opening{Intro} + + Test + + \closing{Kind regards} + \end{letter} +\end{document} diff --git a/include.tex b/include.tex index 7858ca6..4caa90d 100644 --- a/include.tex +++ b/include.tex @@ -5,7 +5,7 @@ \edef\minimal{minimal} \edef\most{most} \edef\full{full} - \edef\letter{letter} + \edef\letters{letter} \edef\temp{#1} \ifx \temp\recommended \typeout{[CustomLaTeXHelperLoader]: Loading config recommended} @@ -27,8 +27,11 @@ \input{\dir/dist/full.tex} \loadFull \else - \ifx \temp\letter + \ifx \temp\letters \typeout{[CustomLaTeXHelperLoader]: Loading config letter} + \input{\dir/dist/minimal.tex} + \loadMinimal + % \input{\dir/config/config.tex} \input{\dir/dist/letter.tex} \else \typeout{[CustomLaTeXHelperLoader]: INVALID CONFIG SPECIFIED, NOTHING LOADED!} diff --git a/vscode-snippets/tex.json b/vscode-snippets/tex.json index 922f93e..47ce6df 100755 --- a/vscode-snippets/tex.json +++ b/vscode-snippets/tex.json @@ -396,7 +396,7 @@ "\\documentclass[12pt,a4paper]{scrlttr2}\n", "\\newcommand{\\dir}{~/projects/latex} % IMPORTANT: No trailing slashes!", "\\input{\\dir/include.tex}", - "\\load{recommended}\n", + "\\load{letter}\n", "% Subject", "\\setkomavar{subject}{$1}", "\\begin{document}\\raggedright",