summaryrefslogtreecommitdiff
path: root/support/tcltexed/hlp/eng/Letters.txt
blob: 5163868d91a7cc29cfe4d849011ae7d27bcc1626 (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
122
123
124
125
126
127
128
129
130
131
132
133
############################################################
Letters
############################################################
You can use LaTeX to typeset letters, both personal and 
business. The letter document class is designed to make a 
number of letters at once, although you can make just one if 
you so desire. 

Your `.tex' source file has the same minimum commands as the 
other document classes, i.e., you must have the following 
commands as a minimum: 

 \documentclass{letter}
 \begin{document}
  ... letters ...
 \end{document}

Each letter is a letter environment, whose argument is the 
name and address of the recipient. For example, you might 
have: 

 \begin{letter}{Mr. Joe Smith\\ 2345 Princess St. 
      \\ Edinburgh, EH1 1AA}
   ...
 \end{letter}

The letter itself begins with the \opening command. The text 
of the letter follows. It is typed as ordinary LaTeX input. 
Commands that make no sense in a letter, like \chapter, do not 
work. The letter closes with a \closing command. 
After the closing, you can have additional material. The \cc 
command produces the usual "cc: ...". There's also a similar 
\encl command for a list of enclosures. With both these commands, 
use \\ to separate the items. 

These commands are used with the letter class: 

	\address: Your return address. 
	\cc: Cc list. 
	\closing: Saying goodbye. 
	\encl: List of enclosed material. 
	\location: Your organisation's address. 
	\makelabels: Making address labels. 
	\name: Your name, for the return address. 
	\opening: Saying hello. 
	\ps: Adding a postscript. 
	\signature: Your signature. 
	\startbreaks: Allow page breaks. 
	\stopbreaks: Disallow page breaks. 
	\telephone: Your phone number. 

############################################################
	\address ::address::
############################################################
\address{Return address} 
The return address, as it should appear on the letter and the 
envelope. Separate lines of the address should be separated 
by \\ commands. If you do not make an \address declaration, 
then the letter will be formatted for copying onto your 
organisation's standard letterhead. (See section Overview of 
LaTeX and Local Guide, for details on your local implementation). 
If you give an \address declaration, then the letter will be 
formatted as a personal letter. 
############################################################
	\cc ::cc::
############################################################
\cc{Kate Schechter\\Rob McKenna} 
Generate a list of other persons the letter was sent to. Each 
name is printed on a separate line. 
############################################################
	\closing ::closing::
############################################################
\closing{text} 
The letter closes with a \closing command, i.e., 
 \closing{Best Regards,}
\encl
\encl{CV\\Certificates} 
Generate a list of enclosed material. 
############################################################
	\location ::location::
############################################################
\location{address} 
This modifies your organisation's standard address. This 
only appears if the firstpage pagestyle is selected. 
############################################################
	\makelabels ::makelabels::
############################################################
\makelabels{number} 
If you issue this command in the preamble, LaTeX will create 
a sheet of address labels. This sheet will be output before 
the letters. 
############################################################
	\name ::name::
############################################################
\name{June Davenport} 
Your name, used for printing on the envelope together with 
the return address. 
############################################################
	\opening ::opening::
############################################################
\opening{text} 
The letter begins with the \opening command. The mandatory 
argument, text, is whatever text you wish to start your 
letter, i.e., 
 \opening{Dear Joe,}
############################################################
	\ps ::ps::
############################################################
\ps 
Use this command before a postscript. 
############################################################
	\signature ::sinature::
############################################################
\signature{Harvey Swick} 
Your name, as it should appear at the end of the letter 
underneath the space for your signature. Items that should 
go on separate lines should be separated by \\ commands. 
############################################################
	\startbreaks ::startbreaks::
############################################################
\startbreaks 
Used after a \stopbreaks command to allow page breaks again. 
############################################################
	\stopbreaks ::stopbreaks::
############################################################
\stopbreaks 
Inhibit page breaks until a \startbreaks command occurs. 
############################################################
	\telephone ::telephone::
############################################################
\telephone{number} 
This is your telephone number. This only appears if the 
firstpage pagestyle is selected.