blob: 5ad0920e7de87d809ff824928e5ee7fb7ca19a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
%%
%% This is an example of `hletf.clo' which is part of the hletter package
%% it should be rewritten by the user
%%
%% Copyright (C) 2011 Brian Housley
%%
%% It may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.2
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.2 or later is part of all distributions of LaTeX
%% version 1999/12/01 or later.
%%
%% Problems, bugs and comments to
%% brian.housley@gcs.ch
%%
%%
%% Copyright (C) 2011 Brian Housley
%%
%% It may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.2
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%% http://www.latex-project.org/lppl.txt
%% and version 1.2 or later is part of all distributions of LaTeX
%% version 1999/12/01 or later.
%%
%% Problems, bugs and comments to
%% brian.housley@gcs.ch
%%
% Letter options for French
%
% private -> 1
% signit -> 2
% bruni -> 3
% test -> 4
%
\ifcase\hltype
% case = 0 (no option - private)
\addressA{Largitzenstrasse 15}
\addressB{CH--4056 B\^ale}
\addressC{La Suisse}
\extraA{Tel\'ephone: +41 (61) 345 78 90}
\extraB{Tel\'efax: +41 (61) 345 78 92}
\extraC{eMail: info@gccs.com}
\bottomL{Bank: VCT Unterwil, CH--4220 Unterwil/BL}
\bottomR{Account: 322--956123.02R}
\or
% case = 1 (private)
\address{Rue principal 15\\
\textbf{CH-4056 B\^ale}\\
La Suisse\\[1ex]
\small Tel: +41 61 322 6382\\
\small Fax: +41 61 383 8148\\
\small Mobile: +41 76 337 4207\\
\small eMail: brian.smith@epfl.ch}
\or
% case = 2 (signit)
\addressA{Largitzenstrasse 15}
\addressB{CH--4056 B\^ale}
\addressC{La Suisse}
\extraA{Tel\'ephone: +41 (61) 345 78 90}
\extraB{Tel\'efax: +41 (61) 345 78 92}
\extraC{eMail: info@gccs.com}
\bottomL{Bank: VCT Unterwil, CH--4220 Unterwil/BL}
\bottomR{Account: 322--956123.02R}
\sign{signat}
\or
% case = 3 (bruni)
\addressA{Le Beffroi}
\addressB{54, Main Street}
\addressC{Upper Throgmortondale}
\extraA{Tel\'ephone: +44 187 3546}
\extraB{Tel\'efax: +44 187 3547}
\extraC{email: bruni@songs.flat.ac.uk}
\centreA{Chanteuse forte}
\centreB{Volume sans problem}
\centreC{Flats \& sharps utilis\'{e}}
\centreD{\rule[.5ex]{16mm}{1pt}}
\centreE{Notes parfois utilis\'{e}}
\centreF{\'{E}pieus permis}
\centrepos{-10mm}
\bottomL{$\ast\ast\ast\ast\ast\ast$}
\bottomC{\emph{Lullabies for small and big children our speciality}}
\bottomR{$\ast\ast\ast\ast\ast\ast$}
\sign[10mm]{signat}
\logo[50mm]{Bruennhilde}
\DeclareFixedFont{\newfa}{OT1}{phv}{m}{n}{12pt}
\DeclareFixedFont{\newfc}{OT1}{phv}{m}{sl}{10pt}
\or
% case = 4 (test --- run with draft)
\logo{test}
\addressA{\texttt{\char'134addressA}}
\addressB{\texttt{\char'134addressB}}
\addressC{\texttt{\char'134addressC}}
\extraA{\texttt{\char'134extraA}}
\extraB{\texttt{\char'134extraB}}
\extraC{\texttt{\char'134extraC}}
\centreA{\texttt{\char'134centreA}}
\centreB{\texttt{\char'134centreB}}
\centreC{\texttt{\char'134centreC}}
\centreD{\texttt{\char'134centreD}}
\centreE{\texttt{\char'134centreE}}
\centreF{\texttt{\char'134centreF}}
\centrepos{10mm}
\bottomL{\texttt{\char'134bottomL}}
\bottomC{\texttt{\char'134bottomC}}
\bottomR{\texttt{\char'134bottomR}}
\logo{test}
\sign{testsig}
\else
% all other cases (should never be used!)
\addressA{?}
\addressB{?}
\addressC{?}
\extraA{Telephone: ?}
\extraB{Telefax: ?}
\extraC{eMail: ?}
\fi
|