Revision 53afc29c
Von Marei Peischl vor fast 5 Jahren hinzugefügt
insettings.tex | ||
---|---|---|
1 | 1 |
% Sprachüberprüfung |
2 |
\ifthenelse{\equal{\lxlangcode}{EN}}{\input{english.tex}}{ |
|
3 |
\ifthenelse{\equal{\lxlangcode}{DE}}{\input{deutsch.tex}}{\input{deutsch.tex}} |
|
2 |
\RequirePackage[english, ngerman]{babel} |
|
3 |
\ifstr{\lxlangcode}{EN}{ |
|
4 |
\makeatletter |
|
5 |
\main@language{english} |
|
6 |
\makeatother |
|
7 |
\input{english.tex}}{ |
|
8 |
\ifstr{\lxlangcode}{DE}{ |
|
9 |
\makeatletter |
|
10 |
\main@language{ngerman} |
|
11 |
\makeatother |
|
12 |
\input{deutsch.tex}}{\input{deutsch.tex}} |
|
4 | 13 |
} % Ende EN |
5 | 14 |
|
6 | 15 |
|
... | ... | |
18 | 27 |
% Identität |
19 | 28 |
\input{\identpath/ident.tex} |
20 | 29 |
|
30 |
\ExplSyntaxOn |
|
21 | 31 |
% Währungen/Konten |
22 |
\IfSubStringInString{USD}{\lxcurrency}{\input{\identpath/usd_account.tex}}{ |
|
23 |
\IfSubStringInString{CHF}{\lxcurrency}{\input{\identpath/chf_account.tex}}{ |
|
24 |
\IfSubStringInString{EUR}{\lxcurrency}{\input{\identpath/euro_account.tex}}{\input{\identpath/euro_account.tex}} |
|
25 |
} % Ende CHF |
|
26 |
} % Ende USD |
|
27 |
|
|
28 |
% Briefkopf, Logo oder Briefpapier |
|
29 |
%%\IfSubStringInString{mail}{\lxmedia}{ % nur bei Mail |
|
30 |
% Nur ein Logo oben rechts |
|
31 |
\setlength{\wpYoffset}{130mm} % Verschiebung von der Mitte nach oben |
|
32 |
\setlength{\wpXoffset}{-68mm} % Verschiebung von der Mitte nach rechts |
|
33 |
\CenterWallPaper{0.2}{\identpath/briefkopf.png} % mit Skalierung |
|
34 |
% oder ganzer Briefbogen als Hintergrund |
|
35 |
%% \CenterWallPaper{1}{\identpath/briefbogen.pdf} |
|
36 |
%%} % Mail-Ende |
|
32 |
\tl_new:N \g_kivi_currency_tl |
|
33 |
\str_if_in:NnT \lxcurrency {USD} {\tl_gset:Nn \g_kivi_currency_tl {usd}} |
|
34 |
\str_if_in:NnT \lxcurrency {CHF} {\tl_gset:Nn \g_kivi_currency_tl {chf}} |
|
35 |
\tl_if_empty:NT \g_kivi_currency_tl {\tl_gset:Nn \g_kivi_currency_tl {euro}} |
|
36 |
% wenn er es nicht kennt dann text übernehmen. |
|
37 |
|
|
38 |
\input{\identpath/\g_kivi_currency_tl _account.tex} |
|
39 |
\ExplSyntaxOff |
|
37 | 40 |
|
38 | 41 |
|
39 | 42 |
% keine Absätze nach rechts einrücken |
Auch abrufbar als: Unified diff
remove ifthenelse requirement