1 |
wakaba |
1.1 |
%! |
2 |
|
|
%%BoundingBox: (atend) |
3 |
|
|
%%Pages: (atend) |
4 |
|
|
%%DocumentFonts: (atend) |
5 |
|
|
%%EndComments |
6 |
|
|
% |
7 |
|
|
% FrameMaker PostScript Prolog 3.0, for use with FrameMaker 3.0 |
8 |
|
|
% Copyright (c) 1986,87,89,90,91 by Frame Technology Corporation. |
9 |
|
|
% All rights reserved. |
10 |
|
|
% |
11 |
|
|
% Known Problems: |
12 |
|
|
% Due to bugs in Transcript, the 'PS-Adobe-' is omitted from line 1 |
13 |
|
|
/FMversion (3.0) def |
14 |
|
|
% Set up Color vs. Black-and-White |
15 |
|
|
/FMPrintInColor systemdict /colorimage known |
16 |
|
|
systemdict /currentcolortransfer known or def |
17 |
|
|
% Uncomment this line to force b&w on color printer |
18 |
|
|
% /FMPrintInColor false def |
19 |
|
|
/FrameDict 195 dict def |
20 |
|
|
systemdict /errordict known not {/errordict 10 dict def |
21 |
|
|
errordict /rangecheck {stop} put} if |
22 |
|
|
% The readline in 23.0 doesn't recognize cr's as nl's on AppleTalk |
23 |
|
|
FrameDict /tmprangecheck errordict /rangecheck get put |
24 |
|
|
errordict /rangecheck {FrameDict /bug true put} put |
25 |
|
|
FrameDict /bug false put |
26 |
|
|
mark |
27 |
|
|
% Some PS machines read past the CR, so keep the following 3 lines together! |
28 |
|
|
currentfile 5 string readline |
29 |
|
|
00 |
30 |
|
|
0000000000 |
31 |
|
|
cleartomark |
32 |
|
|
errordict /rangecheck FrameDict /tmprangecheck get put |
33 |
|
|
FrameDict /bug get { |
34 |
|
|
/readline { |
35 |
|
|
/gstring exch def |
36 |
|
|
/gfile exch def |
37 |
|
|
/gindex 0 def |
38 |
|
|
{ |
39 |
|
|
gfile read pop |
40 |
|
|
dup 10 eq {exit} if |
41 |
|
|
dup 13 eq {exit} if |
42 |
|
|
gstring exch gindex exch put |
43 |
|
|
/gindex gindex 1 add def |
44 |
|
|
} loop |
45 |
|
|
pop |
46 |
|
|
gstring 0 gindex getinterval true |
47 |
|
|
} def |
48 |
|
|
} if |
49 |
|
|
/FMVERSION { |
50 |
|
|
FMversion ne { |
51 |
|
|
/Times-Roman findfont 18 scalefont setfont |
52 |
|
|
100 100 moveto |
53 |
|
|
(FrameMaker version does not match postscript_prolog!) |
54 |
|
|
dup = |
55 |
|
|
show showpage |
56 |
|
|
} if |
57 |
|
|
} def |
58 |
|
|
/FMLOCAL { |
59 |
|
|
FrameDict begin |
60 |
|
|
0 def |
61 |
|
|
end |
62 |
|
|
} def |
63 |
|
|
/gstring FMLOCAL |
64 |
|
|
/gfile FMLOCAL |
65 |
|
|
/gindex FMLOCAL |
66 |
|
|
/orgxfer FMLOCAL |
67 |
|
|
/orgproc FMLOCAL |
68 |
|
|
/organgle FMLOCAL |
69 |
|
|
/orgfreq FMLOCAL |
70 |
|
|
/yscale FMLOCAL |
71 |
|
|
/xscale FMLOCAL |
72 |
|
|
/manualfeed FMLOCAL |
73 |
|
|
/paperheight FMLOCAL |
74 |
|
|
/paperwidth FMLOCAL |
75 |
|
|
/FMDOCUMENT { |
76 |
|
|
array /FMfonts exch def |
77 |
|
|
/#copies exch def |
78 |
|
|
FrameDict begin |
79 |
|
|
0 ne dup {setmanualfeed} if |
80 |
|
|
/manualfeed exch def |
81 |
|
|
/paperheight exch def |
82 |
|
|
/paperwidth exch def |
83 |
|
|
/yscale exch def |
84 |
|
|
/xscale exch def |
85 |
|
|
currenttransfer cvlit /orgxfer exch def |
86 |
|
|
currentscreen cvlit /orgproc exch def |
87 |
|
|
/organgle exch def /orgfreq exch def |
88 |
|
|
setpapername |
89 |
|
|
manualfeed {true} {papersize} ifelse |
90 |
|
|
{manualpapersize} {false} ifelse |
91 |
|
|
{desperatepapersize} if |
92 |
|
|
end |
93 |
|
|
} def |
94 |
|
|
/pagesave FMLOCAL |
95 |
|
|
/orgmatrix FMLOCAL |
96 |
|
|
/landscape FMLOCAL |
97 |
|
|
/FMBEGINPAGE { |
98 |
|
|
FrameDict begin |
99 |
|
|
/pagesave save def |
100 |
|
|
3.86 setmiterlimit |
101 |
|
|
/landscape exch 0 ne def |
102 |
|
|
landscape { |
103 |
|
|
90 rotate 0 exch neg translate pop |
104 |
|
|
} |
105 |
|
|
{pop pop} |
106 |
|
|
ifelse |
107 |
|
|
xscale yscale scale |
108 |
|
|
/orgmatrix matrix def |
109 |
|
|
gsave |
110 |
|
|
} def |
111 |
|
|
/FMENDPAGE { |
112 |
|
|
grestore |
113 |
|
|
pagesave restore |
114 |
|
|
end |
115 |
|
|
showpage |
116 |
|
|
} def |
117 |
|
|
/FMFONTDEFINE { |
118 |
|
|
FrameDict begin |
119 |
|
|
findfont |
120 |
|
|
ReEncode |
121 |
|
|
1 index exch |
122 |
|
|
definefont |
123 |
|
|
FMfonts 3 1 roll |
124 |
|
|
put |
125 |
|
|
end |
126 |
|
|
} def |
127 |
|
|
/FMFILLS { |
128 |
|
|
FrameDict begin |
129 |
|
|
array /fillvals exch def |
130 |
|
|
end |
131 |
|
|
} def |
132 |
|
|
/FMFILL { |
133 |
|
|
FrameDict begin |
134 |
|
|
fillvals 3 1 roll put |
135 |
|
|
end |
136 |
|
|
} def |
137 |
|
|
/FMNORMALIZEGRAPHICS { |
138 |
|
|
newpath |
139 |
|
|
0.0 0.0 moveto |
140 |
|
|
1 setlinewidth |
141 |
|
|
0 setlinecap |
142 |
|
|
0 0 0 sethsbcolor |
143 |
|
|
0 setgray |
144 |
|
|
} bind def |
145 |
|
|
/fx FMLOCAL |
146 |
|
|
/fy FMLOCAL |
147 |
|
|
/fh FMLOCAL |
148 |
|
|
/fw FMLOCAL |
149 |
|
|
/llx FMLOCAL |
150 |
|
|
/lly FMLOCAL |
151 |
|
|
/urx FMLOCAL |
152 |
|
|
/ury FMLOCAL |
153 |
|
|
/FMBEGINEPSF { |
154 |
|
|
end |
155 |
|
|
/FMEPSF save def |
156 |
|
|
/showpage {} def |
157 |
|
|
FMNORMALIZEGRAPHICS |
158 |
|
|
[/fy /fx /fh /fw /ury /urx /lly /llx] {exch def} forall |
159 |
|
|
fx fy translate |
160 |
|
|
rotate |
161 |
|
|
fw urx llx sub div fh ury lly sub div scale |
162 |
|
|
llx neg lly neg translate |
163 |
|
|
} bind def |
164 |
|
|
/FMENDEPSF { |
165 |
|
|
FMEPSF restore |
166 |
|
|
FrameDict begin |
167 |
|
|
} bind def |
168 |
|
|
FrameDict begin |
169 |
|
|
/setmanualfeed { |
170 |
|
|
%%BeginFeature *ManualFeed True |
171 |
|
|
statusdict /manualfeed true put |
172 |
|
|
%%EndFeature |
173 |
|
|
} def |
174 |
|
|
/max {2 copy lt {exch} if pop} bind def |
175 |
|
|
/min {2 copy gt {exch} if pop} bind def |
176 |
|
|
/inch {72 mul} def |
177 |
|
|
/pagedimen { |
178 |
|
|
paperheight sub abs 16 lt exch |
179 |
|
|
paperwidth sub abs 16 lt and |
180 |
|
|
{/papername exch def} {pop} ifelse |
181 |
|
|
} def |
182 |
|
|
/papersizedict FMLOCAL |
183 |
|
|
/setpapername { |
184 |
|
|
/papersizedict 14 dict def |
185 |
|
|
papersizedict begin |
186 |
|
|
/papername /unknown def |
187 |
|
|
/Letter 8.5 inch 11.0 inch pagedimen |
188 |
|
|
/LetterSmall 7.68 inch 10.16 inch pagedimen |
189 |
|
|
/Tabloid 11.0 inch 17.0 inch pagedimen |
190 |
|
|
/Ledger 17.0 inch 11.0 inch pagedimen |
191 |
|
|
/Legal 8.5 inch 14.0 inch pagedimen |
192 |
|
|
/Statement 5.5 inch 8.5 inch pagedimen |
193 |
|
|
/Executive 7.5 inch 10.0 inch pagedimen |
194 |
|
|
/A3 11.69 inch 16.5 inch pagedimen |
195 |
|
|
/A4 8.26 inch 11.69 inch pagedimen |
196 |
|
|
/A4Small 7.47 inch 10.85 inch pagedimen |
197 |
|
|
/B4 10.125 inch 14.33 inch pagedimen |
198 |
|
|
/B5 7.16 inch 10.125 inch pagedimen |
199 |
|
|
end |
200 |
|
|
} def |
201 |
|
|
/papersize { |
202 |
|
|
papersizedict begin |
203 |
|
|
/Letter {lettertray letter} def |
204 |
|
|
/LetterSmall {lettertray lettersmall} def |
205 |
|
|
/Tabloid {11x17tray 11x17} def |
206 |
|
|
/Ledger {ledgertray ledger} def |
207 |
|
|
/Legal {legaltray legal} def |
208 |
|
|
/Statement {statementtray statement} def |
209 |
|
|
/Executive {executivetray executive} def |
210 |
|
|
/A3 {a3tray a3} def |
211 |
|
|
/A4 {a4tray a4} def |
212 |
|
|
/A4Small {a4tray a4small} def |
213 |
|
|
/B4 {b4tray b4} def |
214 |
|
|
/B5 {b5tray b5} def |
215 |
|
|
/unknown {unknown} def |
216 |
|
|
papersizedict dup papername known {papername} {/unknown} ifelse get |
217 |
|
|
end |
218 |
|
|
/FMdicttop countdictstack 1 add def |
219 |
|
|
statusdict begin stopped end |
220 |
|
|
countdictstack -1 FMdicttop {pop end} for |
221 |
|
|
} def |
222 |
|
|
/manualpapersize { |
223 |
|
|
papersizedict begin |
224 |
|
|
/Letter {letter} def |
225 |
|
|
/LetterSmall {lettersmall} def |
226 |
|
|
/Tabloid {11x17} def |
227 |
|
|
/Ledger {ledger} def |
228 |
|
|
/Legal {legal} def |
229 |
|
|
/Statement {statement} def |
230 |
|
|
/Executive {executive} def |
231 |
|
|
/A3 {a3} def |
232 |
|
|
/A4 {a4} def |
233 |
|
|
/A4Small {a4small} def |
234 |
|
|
/B4 {b4} def |
235 |
|
|
/B5 {b5} def |
236 |
|
|
/unknown {unknown} def |
237 |
|
|
papersizedict dup papername known {papername} {/unknown} ifelse get |
238 |
|
|
end |
239 |
|
|
stopped |
240 |
|
|
} def |
241 |
|
|
/desperatepapersize { |
242 |
|
|
statusdict /setpageparams known |
243 |
|
|
{ |
244 |
|
|
paperwidth paperheight 0 1 |
245 |
|
|
statusdict begin |
246 |
|
|
{setpageparams} stopped pop |
247 |
|
|
end |
248 |
|
|
} if |
249 |
|
|
} def |
250 |
|
|
/savematrix { |
251 |
|
|
orgmatrix currentmatrix pop |
252 |
|
|
} bind def |
253 |
|
|
/restorematrix { |
254 |
|
|
orgmatrix setmatrix |
255 |
|
|
} bind def |
256 |
|
|
/dmatrix matrix def |
257 |
|
|
/dpi 72 0 dmatrix defaultmatrix dtransform |
258 |
|
|
dup mul exch dup mul add sqrt def |
259 |
|
|
/freq dpi 18.75 div 8 div round dup 0 eq {pop 1} if 8 mul dpi exch div def |
260 |
|
|
/sangle 1 0 dmatrix defaultmatrix dtransform exch atan def |
261 |
|
|
/DiacriticEncoding [ |
262 |
|
|
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef |
263 |
|
|
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef |
264 |
|
|
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef |
265 |
|
|
/.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef |
266 |
|
|
/.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl |
267 |
|
|
/numbersign /dollar /percent /ampersand /quotesingle /parenleft |
268 |
|
|
/parenright /asterisk /plus /comma /hyphen /period /slash /zero /one |
269 |
|
|
/two /three /four /five /six /seven /eight /nine /colon /semicolon |
270 |
|
|
/less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K |
271 |
|
|
/L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash |
272 |
|
|
/bracketright /asciicircum /underscore /grave /a /b /c /d /e /f /g /h |
273 |
|
|
/i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar |
274 |
|
|
/braceright /asciitilde /.notdef /Adieresis /Aring /Ccedilla /Eacute |
275 |
|
|
/Ntilde /Odieresis /Udieresis /aacute /agrave /acircumflex /adieresis |
276 |
|
|
/atilde /aring /ccedilla /eacute /egrave /ecircumflex /edieresis |
277 |
|
|
/iacute /igrave /icircumflex /idieresis /ntilde /oacute /ograve |
278 |
|
|
/ocircumflex /odieresis /otilde /uacute /ugrave /ucircumflex |
279 |
|
|
/udieresis /dagger /.notdef /cent /sterling /section /bullet |
280 |
|
|
/paragraph /germandbls /registered /copyright /trademark /acute |
281 |
|
|
/dieresis /.notdef /AE /Oslash /.notdef /.notdef /.notdef /.notdef |
282 |
|
|
/yen /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef |
283 |
|
|
/ordfeminine /ordmasculine /.notdef /ae /oslash /questiondown |
284 |
|
|
/exclamdown /logicalnot /.notdef /florin /.notdef /.notdef |
285 |
|
|
/guillemotleft /guillemotright /ellipsis /.notdef /Agrave /Atilde |
286 |
|
|
/Otilde /OE /oe /endash /emdash /quotedblleft /quotedblright |
287 |
|
|
/quoteleft /quoteright /.notdef /.notdef /ydieresis /Ydieresis |
288 |
|
|
/fraction /currency /guilsinglleft /guilsinglright /fi /fl /daggerdbl |
289 |
|
|
/periodcentered /quotesinglbase /quotedblbase /perthousand |
290 |
|
|
/Acircumflex /Ecircumflex /Aacute /Edieresis /Egrave /Iacute |
291 |
|
|
/Icircumflex /Idieresis /Igrave /Oacute /Ocircumflex /.notdef /Ograve |
292 |
|
|
/Uacute /Ucircumflex /Ugrave /dotlessi /circumflex /tilde /macron |
293 |
|
|
/breve /dotaccent /ring /cedilla /hungarumlaut /ogonek /caron |
294 |
|
|
] def |
295 |
|
|
/ReEncode { |
296 |
|
|
dup |
297 |
|
|
length |
298 |
|
|
dict begin |
299 |
|
|
{ |
300 |
|
|
1 index /FID ne |
301 |
|
|
{def} |
302 |
|
|
{pop pop} ifelse |
303 |
|
|
} forall |
304 |
|
|
0 eq {/Encoding DiacriticEncoding def} if |
305 |
|
|
currentdict |
306 |
|
|
end |
307 |
|
|
} bind def |
308 |
|
|
/graymode true def |
309 |
|
|
/bwidth FMLOCAL |
310 |
|
|
/bpside FMLOCAL |
311 |
|
|
/bstring FMLOCAL |
312 |
|
|
/onbits FMLOCAL |
313 |
|
|
/offbits FMLOCAL |
314 |
|
|
/xindex FMLOCAL |
315 |
|
|
/yindex FMLOCAL |
316 |
|
|
/x FMLOCAL |
317 |
|
|
/y FMLOCAL |
318 |
|
|
/setpattern { |
319 |
|
|
/bwidth exch def |
320 |
|
|
/bpside exch def |
321 |
|
|
/bstring exch def |
322 |
|
|
/onbits 0 def /offbits 0 def |
323 |
|
|
freq sangle landscape {90 add} if |
324 |
|
|
{/y exch def |
325 |
|
|
/x exch def |
326 |
|
|
/xindex x 1 add 2 div bpside mul cvi def |
327 |
|
|
/yindex y 1 add 2 div bpside mul cvi def |
328 |
|
|
bstring yindex bwidth mul xindex 8 idiv add get |
329 |
|
|
1 7 xindex 8 mod sub bitshift and 0 ne |
330 |
|
|
{/onbits onbits 1 add def 1} |
331 |
|
|
{/offbits offbits 1 add def 0} |
332 |
|
|
ifelse |
333 |
|
|
} |
334 |
|
|
setscreen |
335 |
|
|
{} settransfer |
336 |
|
|
offbits offbits onbits add div FMsetgray |
337 |
|
|
/graymode false def |
338 |
|
|
} bind def |
339 |
|
|
/grayness { |
340 |
|
|
FMsetgray |
341 |
|
|
graymode not { |
342 |
|
|
/graymode true def |
343 |
|
|
orgxfer cvx settransfer |
344 |
|
|
orgfreq organgle orgproc cvx setscreen |
345 |
|
|
} if |
346 |
|
|
} bind def |
347 |
|
|
/HUE FMLOCAL |
348 |
|
|
/SAT FMLOCAL |
349 |
|
|
/BRIGHT FMLOCAL |
350 |
|
|
/Colors FMLOCAL |
351 |
|
|
FMPrintInColor |
352 |
|
|
|
353 |
|
|
{ |
354 |
|
|
/HUE 0 def |
355 |
|
|
/SAT 0 def |
356 |
|
|
/BRIGHT 0 def |
357 |
|
|
% array of arrays Hue and Sat values for the separations [HUE BRIGHT] |
358 |
|
|
/Colors |
359 |
|
|
[[0 0 ] % black |
360 |
|
|
[0 0 ] % white |
361 |
|
|
[0.00 1.0] % red |
362 |
|
|
[0.37 1.0] % green |
363 |
|
|
[0.60 1.0] % blue |
364 |
|
|
[0.50 1.0] % cyan |
365 |
|
|
[0.83 1.0] % magenta |
366 |
|
|
[0.16 1.0] % comment / yellow |
367 |
|
|
] def |
368 |
|
|
|
369 |
|
|
/BEGINBITMAPCOLOR { |
370 |
|
|
BITMAPCOLOR} def |
371 |
|
|
/BEGINBITMAPCOLORc { |
372 |
|
|
BITMAPCOLORc} def |
373 |
|
|
/BEGINBITMAPTRUECOLOR { |
374 |
|
|
BITMAPTRUECOLOR } def |
375 |
|
|
/BEGINBITMAPTRUECOLORc { |
376 |
|
|
BITMAPTRUECOLORc } def |
377 |
|
|
/K { |
378 |
|
|
Colors exch get dup |
379 |
|
|
0 get /HUE exch store |
380 |
|
|
1 get /BRIGHT exch store |
381 |
|
|
HUE 0 eq BRIGHT 0 eq and |
382 |
|
|
{1.0 SAT sub setgray} |
383 |
|
|
{HUE SAT BRIGHT sethsbcolor} |
384 |
|
|
ifelse |
385 |
|
|
} def |
386 |
|
|
/FMsetgray { |
387 |
|
|
/SAT exch 1.0 exch sub store |
388 |
|
|
HUE 0 eq BRIGHT 0 eq and |
389 |
|
|
{1.0 SAT sub setgray} |
390 |
|
|
{HUE SAT BRIGHT sethsbcolor} |
391 |
|
|
ifelse |
392 |
|
|
} bind def |
393 |
|
|
} |
394 |
|
|
|
395 |
|
|
{ |
396 |
|
|
/BEGINBITMAPCOLOR { |
397 |
|
|
BITMAPGRAY} def |
398 |
|
|
/BEGINBITMAPCOLORc { |
399 |
|
|
BITMAPGRAYc} def |
400 |
|
|
/BEGINBITMAPTRUECOLOR { |
401 |
|
|
BITMAPTRUEGRAY } def |
402 |
|
|
/BEGINBITMAPTRUECOLORc { |
403 |
|
|
BITMAPTRUEGRAYc } def |
404 |
|
|
/FMsetgray {setgray} bind def |
405 |
|
|
/K { |
406 |
|
|
pop |
407 |
|
|
} def |
408 |
|
|
} |
409 |
|
|
ifelse |
410 |
|
|
/normalize { |
411 |
|
|
transform round exch round exch itransform |
412 |
|
|
} bind def |
413 |
|
|
/dnormalize { |
414 |
|
|
dtransform round exch round exch idtransform |
415 |
|
|
} bind def |
416 |
|
|
/lnormalize { |
417 |
|
|
0 dtransform exch cvi 2 idiv 2 mul 1 add exch idtransform pop |
418 |
|
|
} bind def |
419 |
|
|
/H { |
420 |
|
|
lnormalize setlinewidth |
421 |
|
|
} bind def |
422 |
|
|
/Z { |
423 |
|
|
setlinecap |
424 |
|
|
} bind def |
425 |
|
|
/fillvals FMLOCAL |
426 |
|
|
/X { |
427 |
|
|
fillvals exch get |
428 |
|
|
dup type /stringtype eq |
429 |
|
|
{8 1 setpattern} |
430 |
|
|
{grayness} |
431 |
|
|
ifelse |
432 |
|
|
} bind def |
433 |
|
|
/V { |
434 |
|
|
gsave eofill grestore |
435 |
|
|
} bind def |
436 |
|
|
/N { |
437 |
|
|
stroke |
438 |
|
|
} bind def |
439 |
|
|
/M {newpath moveto} bind def |
440 |
|
|
/E {lineto} bind def |
441 |
|
|
/D {curveto} bind def |
442 |
|
|
/O {closepath} bind def |
443 |
|
|
/n FMLOCAL |
444 |
|
|
/L { |
445 |
|
|
/n exch def |
446 |
|
|
newpath |
447 |
|
|
normalize |
448 |
|
|
moveto |
449 |
|
|
2 1 n {pop normalize lineto} for |
450 |
|
|
} bind def |
451 |
|
|
/Y { |
452 |
|
|
L |
453 |
|
|
closepath |
454 |
|
|
} bind def |
455 |
|
|
/x1 FMLOCAL |
456 |
|
|
/x2 FMLOCAL |
457 |
|
|
/y1 FMLOCAL |
458 |
|
|
/y2 FMLOCAL |
459 |
|
|
/rad FMLOCAL |
460 |
|
|
/R { |
461 |
|
|
/y2 exch def |
462 |
|
|
/x2 exch def |
463 |
|
|
/y1 exch def |
464 |
|
|
/x1 exch def |
465 |
|
|
x1 y1 |
466 |
|
|
x2 y1 |
467 |
|
|
x2 y2 |
468 |
|
|
x1 y2 |
469 |
|
|
4 Y |
470 |
|
|
} bind def |
471 |
|
|
/RR { |
472 |
|
|
/rad exch def |
473 |
|
|
normalize |
474 |
|
|
/y2 exch def |
475 |
|
|
/x2 exch def |
476 |
|
|
normalize |
477 |
|
|
/y1 exch def |
478 |
|
|
/x1 exch def |
479 |
|
|
newpath |
480 |
|
|
x1 y1 rad add moveto |
481 |
|
|
x1 y2 x2 y2 rad arcto |
482 |
|
|
x2 y2 x2 y1 rad arcto |
483 |
|
|
x2 y1 x1 y1 rad arcto |
484 |
|
|
x1 y1 x1 y2 rad arcto |
485 |
|
|
closepath |
486 |
|
|
16 {pop} repeat |
487 |
|
|
} bind def |
488 |
|
|
/C { |
489 |
|
|
grestore |
490 |
|
|
gsave |
491 |
|
|
R |
492 |
|
|
clip |
493 |
|
|
} bind def |
494 |
|
|
/FMpointsize FMLOCAL |
495 |
|
|
/F { |
496 |
|
|
FMfonts exch get |
497 |
|
|
FMpointsize scalefont |
498 |
|
|
setfont |
499 |
|
|
} bind def |
500 |
|
|
/Q { |
501 |
|
|
/FMpointsize exch def |
502 |
|
|
F |
503 |
|
|
} bind def |
504 |
|
|
/T { |
505 |
|
|
moveto show |
506 |
|
|
} bind def |
507 |
|
|
/RF { |
508 |
|
|
rotate |
509 |
|
|
0 ne {-1 1 scale} if |
510 |
|
|
} bind def |
511 |
|
|
/TF { |
512 |
|
|
gsave |
513 |
|
|
moveto |
514 |
|
|
RF |
515 |
|
|
show |
516 |
|
|
grestore |
517 |
|
|
} bind def |
518 |
|
|
/P { |
519 |
|
|
moveto |
520 |
|
|
0 32 3 2 roll widthshow |
521 |
|
|
} bind def |
522 |
|
|
/PF { |
523 |
|
|
gsave |
524 |
|
|
moveto |
525 |
|
|
RF |
526 |
|
|
0 32 3 2 roll widthshow |
527 |
|
|
grestore |
528 |
|
|
} bind def |
529 |
|
|
/S { |
530 |
|
|
moveto |
531 |
|
|
0 exch ashow |
532 |
|
|
} bind def |
533 |
|
|
/SF { |
534 |
|
|
gsave |
535 |
|
|
moveto |
536 |
|
|
RF |
537 |
|
|
0 exch ashow |
538 |
|
|
grestore |
539 |
|
|
} bind def |
540 |
|
|
/B { |
541 |
|
|
moveto |
542 |
|
|
0 32 4 2 roll 0 exch awidthshow |
543 |
|
|
} bind def |
544 |
|
|
/BF { |
545 |
|
|
gsave |
546 |
|
|
moveto |
547 |
|
|
RF |
548 |
|
|
0 32 4 2 roll 0 exch awidthshow |
549 |
|
|
grestore |
550 |
|
|
} bind def |
551 |
|
|
/G { |
552 |
|
|
gsave |
553 |
|
|
newpath |
554 |
|
|
normalize translate 0.0 0.0 moveto |
555 |
|
|
dnormalize scale |
556 |
|
|
0.0 0.0 1.0 5 3 roll arc |
557 |
|
|
closepath fill |
558 |
|
|
grestore |
559 |
|
|
} bind def |
560 |
|
|
/A { |
561 |
|
|
gsave |
562 |
|
|
savematrix |
563 |
|
|
newpath |
564 |
|
|
2 index 2 div add exch 3 index 2 div sub exch |
565 |
|
|
normalize 2 index 2 div sub exch 3 index 2 div add exch |
566 |
|
|
translate |
567 |
|
|
scale |
568 |
|
|
0.0 0.0 1.0 5 3 roll arc |
569 |
|
|
restorematrix |
570 |
|
|
stroke |
571 |
|
|
grestore |
572 |
|
|
} bind def |
573 |
|
|
/x FMLOCAL |
574 |
|
|
/y FMLOCAL |
575 |
|
|
/w FMLOCAL |
576 |
|
|
/h FMLOCAL |
577 |
|
|
/xx FMLOCAL |
578 |
|
|
/yy FMLOCAL |
579 |
|
|
/ww FMLOCAL |
580 |
|
|
/hh FMLOCAL |
581 |
|
|
/FMsaveobject FMLOCAL |
582 |
|
|
/FMoptop FMLOCAL |
583 |
|
|
/FMdicttop FMLOCAL |
584 |
|
|
/BEGINPRINTCODE { |
585 |
|
|
/FMdicttop countdictstack 1 add def |
586 |
|
|
/FMoptop count 4 sub def |
587 |
|
|
/FMsaveobject save def |
588 |
|
|
userdict begin |
589 |
|
|
/showpage {} def |
590 |
|
|
FMNORMALIZEGRAPHICS |
591 |
|
|
3 index neg 3 index neg translate |
592 |
|
|
} bind def |
593 |
|
|
/ENDPRINTCODE { |
594 |
|
|
count -1 FMoptop {pop pop} for |
595 |
|
|
countdictstack -1 FMdicttop {pop end} for |
596 |
|
|
FMsaveobject restore |
597 |
|
|
} bind def |
598 |
|
|
/gn { |
599 |
|
|
0 |
600 |
|
|
{ 46 mul |
601 |
|
|
cf read pop |
602 |
|
|
32 sub |
603 |
|
|
dup 46 lt {exit} if |
604 |
|
|
46 sub add |
605 |
|
|
} loop |
606 |
|
|
add |
607 |
|
|
} bind def |
608 |
|
|
/str FMLOCAL |
609 |
|
|
/cfs { |
610 |
|
|
/str sl string def |
611 |
|
|
0 1 sl 1 sub {str exch val put} for |
612 |
|
|
str def |
613 |
|
|
} bind def |
614 |
|
|
/ic [ |
615 |
|
|
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0223 |
616 |
|
|
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0223 |
617 |
|
|
0 |
618 |
|
|
{0 hx} {1 hx} {2 hx} {3 hx} {4 hx} {5 hx} {6 hx} {7 hx} {8 hx} {9 hx} |
619 |
|
|
{10 hx} {11 hx} {12 hx} {13 hx} {14 hx} {15 hx} {16 hx} {17 hx} {18 hx} |
620 |
|
|
{19 hx} {gn hx} {0} {1} {2} {3} {4} {5} {6} {7} {8} {9} {10} {11} {12} |
621 |
|
|
{13} {14} {15} {16} {17} {18} {19} {gn} {0 wh} {1 wh} {2 wh} {3 wh} |
622 |
|
|
{4 wh} {5 wh} {6 wh} {7 wh} {8 wh} {9 wh} {10 wh} {11 wh} {12 wh} |
623 |
|
|
{13 wh} {14 wh} {gn wh} {0 bl} {1 bl} {2 bl} {3 bl} {4 bl} {5 bl} {6 bl} |
624 |
|
|
{7 bl} {8 bl} {9 bl} {10 bl} {11 bl} {12 bl} {13 bl} {14 bl} {gn bl} |
625 |
|
|
{0 fl} {1 fl} {2 fl} {3 fl} {4 fl} {5 fl} {6 fl} {7 fl} {8 fl} {9 fl} |
626 |
|
|
{10 fl} {11 fl} {12 fl} {13 fl} {14 fl} {gn fl} |
627 |
|
|
] def |
628 |
|
|
/sl FMLOCAL |
629 |
|
|
/val FMLOCAL |
630 |
|
|
/ws FMLOCAL |
631 |
|
|
/im FMLOCAL |
632 |
|
|
/bs FMLOCAL |
633 |
|
|
/cs FMLOCAL |
634 |
|
|
/len FMLOCAL |
635 |
|
|
/pos FMLOCAL |
636 |
|
|
/ms { |
637 |
|
|
/sl exch def |
638 |
|
|
/val 255 def |
639 |
|
|
/ws cfs |
640 |
|
|
/im cfs |
641 |
|
|
/val 0 def |
642 |
|
|
/bs cfs |
643 |
|
|
/cs cfs |
644 |
|
|
} bind def |
645 |
|
|
400 ms |
646 |
|
|
/ip { |
647 |
|
|
is |
648 |
|
|
0 |
649 |
|
|
cf cs readline pop |
650 |
|
|
{ ic exch get exec |
651 |
|
|
add |
652 |
|
|
} forall |
653 |
|
|
pop |
654 |
|
|
|
655 |
|
|
} bind def |
656 |
|
|
/wh { |
657 |
|
|
/len exch def |
658 |
|
|
/pos exch def |
659 |
|
|
ws 0 len getinterval im pos len getinterval copy pop |
660 |
|
|
pos len |
661 |
|
|
} bind def |
662 |
|
|
/bl { |
663 |
|
|
/len exch def |
664 |
|
|
/pos exch def |
665 |
|
|
bs 0 len getinterval im pos len getinterval copy pop |
666 |
|
|
pos len |
667 |
|
|
} bind def |
668 |
|
|
/s1 1 string def |
669 |
|
|
/fl { |
670 |
|
|
/len exch def |
671 |
|
|
/pos exch def |
672 |
|
|
/val cf s1 readhexstring pop 0 get def |
673 |
|
|
pos 1 pos len add 1 sub {im exch val put} for |
674 |
|
|
pos len |
675 |
|
|
} bind def |
676 |
|
|
/hx { |
677 |
|
|
3 copy getinterval |
678 |
|
|
cf exch readhexstring pop pop |
679 |
|
|
} bind def |
680 |
|
|
/h FMLOCAL |
681 |
|
|
/w FMLOCAL |
682 |
|
|
/d FMLOCAL |
683 |
|
|
/lb FMLOCAL |
684 |
|
|
/bitmapsave FMLOCAL |
685 |
|
|
/is FMLOCAL |
686 |
|
|
/cf FMLOCAL |
687 |
|
|
/wbytes { |
688 |
|
|
dup |
689 |
|
|
8 eq {pop} {1 eq {7 add 8 idiv} {3 add 4 idiv} ifelse} ifelse |
690 |
|
|
} bind def |
691 |
|
|
/BEGINBITMAPBWc { |
692 |
|
|
1 {} COMMONBITMAPc |
693 |
|
|
} bind def |
694 |
|
|
/BEGINBITMAPGRAYc { |
695 |
|
|
8 {} COMMONBITMAPc |
696 |
|
|
} bind def |
697 |
|
|
/BEGINBITMAP2BITc { |
698 |
|
|
2 {} COMMONBITMAPc |
699 |
|
|
} bind def |
700 |
|
|
/COMMONBITMAPc { |
701 |
|
|
/r exch def |
702 |
|
|
/d exch def |
703 |
|
|
gsave |
704 |
|
|
translate rotate scale /h exch def /w exch def |
705 |
|
|
/lb w d wbytes def |
706 |
|
|
sl lb lt {lb ms} if |
707 |
|
|
/bitmapsave save def |
708 |
|
|
r |
709 |
|
|
/is im 0 lb getinterval def |
710 |
|
|
ws 0 lb getinterval is copy pop |
711 |
|
|
/cf currentfile def |
712 |
|
|
w h d [w 0 0 h neg 0 h] |
713 |
|
|
{ip} image |
714 |
|
|
bitmapsave restore |
715 |
|
|
grestore |
716 |
|
|
} bind def |
717 |
|
|
/BEGINBITMAPBW { |
718 |
|
|
1 {} COMMONBITMAP |
719 |
|
|
} bind def |
720 |
|
|
/BEGINBITMAPGRAY { |
721 |
|
|
8 {} COMMONBITMAP |
722 |
|
|
} bind def |
723 |
|
|
/BEGINBITMAP2BIT { |
724 |
|
|
2 {} COMMONBITMAP |
725 |
|
|
} bind def |
726 |
|
|
/COMMONBITMAP { |
727 |
|
|
/r exch def |
728 |
|
|
/d exch def |
729 |
|
|
gsave |
730 |
|
|
translate rotate scale /h exch def /w exch def |
731 |
|
|
/bitmapsave save def |
732 |
|
|
r |
733 |
|
|
/is w d wbytes string def |
734 |
|
|
/cf currentfile def |
735 |
|
|
w h d [w 0 0 h neg 0 h] |
736 |
|
|
{cf is readhexstring pop} image |
737 |
|
|
bitmapsave restore |
738 |
|
|
grestore |
739 |
|
|
} bind def |
740 |
|
|
/proc1 FMLOCAL |
741 |
|
|
/proc2 FMLOCAL |
742 |
|
|
/newproc FMLOCAL |
743 |
|
|
/Fmcc { |
744 |
|
|
/proc2 exch cvlit def |
745 |
|
|
/proc1 exch cvlit def |
746 |
|
|
/newproc proc1 length proc2 length add array def |
747 |
|
|
newproc 0 proc1 putinterval |
748 |
|
|
newproc proc1 length proc2 putinterval |
749 |
|
|
newproc cvx |
750 |
|
|
} bind def |
751 |
|
|
/ngrayt 256 array def |
752 |
|
|
/nredt 256 array def |
753 |
|
|
/nbluet 256 array def |
754 |
|
|
/ngreent 256 array def |
755 |
|
|
/gryt FMLOCAL |
756 |
|
|
/blut FMLOCAL |
757 |
|
|
/grnt FMLOCAL |
758 |
|
|
/redt FMLOCAL |
759 |
|
|
/indx FMLOCAL |
760 |
|
|
/cynu FMLOCAL |
761 |
|
|
/magu FMLOCAL |
762 |
|
|
/yelu FMLOCAL |
763 |
|
|
/k FMLOCAL |
764 |
|
|
/u FMLOCAL |
765 |
|
|
/colorsetup { |
766 |
|
|
currentcolortransfer |
767 |
|
|
/gryt exch def |
768 |
|
|
/blut exch def |
769 |
|
|
/grnt exch def |
770 |
|
|
/redt exch def |
771 |
|
|
0 1 255 { |
772 |
|
|
/indx exch def |
773 |
|
|
/cynu 1 red indx get 255 div sub def |
774 |
|
|
/magu 1 green indx get 255 div sub def |
775 |
|
|
/yelu 1 blue indx get 255 div sub def |
776 |
|
|
/k cynu magu min yelu min def |
777 |
|
|
/u k currentundercolorremoval exec def |
778 |
|
|
nredt indx 1 0 cynu u sub max sub redt exec put |
779 |
|
|
ngreent indx 1 0 magu u sub max sub grnt exec put |
780 |
|
|
nbluet indx 1 0 yelu u sub max sub blut exec put |
781 |
|
|
ngrayt indx 1 k currentblackgeneration exec sub gryt exec put |
782 |
|
|
} for |
783 |
|
|
{255 mul cvi nredt exch get} |
784 |
|
|
{255 mul cvi ngreent exch get} |
785 |
|
|
{255 mul cvi nbluet exch get} |
786 |
|
|
{255 mul cvi ngrayt exch get} |
787 |
|
|
setcolortransfer |
788 |
|
|
{pop 0} setundercolorremoval |
789 |
|
|
{} setblackgeneration |
790 |
|
|
} bind def |
791 |
|
|
/tran FMLOCAL |
792 |
|
|
/fakecolorsetup { |
793 |
|
|
/tran 256 string def |
794 |
|
|
0 1 255 {/indx exch def |
795 |
|
|
tran indx |
796 |
|
|
red indx get 77 mul |
797 |
|
|
green indx get 151 mul |
798 |
|
|
blue indx get 28 mul |
799 |
|
|
add add 256 idiv put} for |
800 |
|
|
currenttransfer |
801 |
|
|
{255 mul cvi tran exch get 255.0 div} |
802 |
|
|
exch Fmcc settransfer |
803 |
|
|
} bind def |
804 |
|
|
/BITMAPCOLOR { |
805 |
|
|
/d 8 def |
806 |
|
|
gsave |
807 |
|
|
translate rotate scale /h exch def /w exch def |
808 |
|
|
/bitmapsave save def |
809 |
|
|
colorsetup |
810 |
|
|
/is w d wbytes string def |
811 |
|
|
/cf currentfile def |
812 |
|
|
w h d [w 0 0 h neg 0 h] |
813 |
|
|
{cf is readhexstring pop} {is} {is} true 3 colorimage |
814 |
|
|
bitmapsave restore |
815 |
|
|
grestore |
816 |
|
|
} bind def |
817 |
|
|
/BITMAPCOLORc { |
818 |
|
|
/d 8 def |
819 |
|
|
gsave |
820 |
|
|
translate rotate scale /h exch def /w exch def |
821 |
|
|
/lb w d wbytes def |
822 |
|
|
sl lb lt {lb ms} if |
823 |
|
|
/bitmapsave save def |
824 |
|
|
colorsetup |
825 |
|
|
/is im 0 lb getinterval def |
826 |
|
|
ws 0 lb getinterval is copy pop |
827 |
|
|
/cf currentfile def |
828 |
|
|
w h d [w 0 0 h neg 0 h] |
829 |
|
|
{ip} {is} {is} true 3 colorimage |
830 |
|
|
bitmapsave restore |
831 |
|
|
grestore |
832 |
|
|
} bind def |
833 |
|
|
/BITMAPTRUECOLORc { |
834 |
|
|
gsave |
835 |
|
|
translate rotate scale /h exch def /w exch def |
836 |
|
|
/bitmapsave save def |
837 |
|
|
|
838 |
|
|
/is w string def |
839 |
|
|
|
840 |
|
|
ws 0 w getinterval is copy pop |
841 |
|
|
/cf currentfile def |
842 |
|
|
w h 8 [w 0 0 h neg 0 h] |
843 |
|
|
{ip} {gip} {bip} true 3 colorimage |
844 |
|
|
bitmapsave restore |
845 |
|
|
grestore |
846 |
|
|
} bind def |
847 |
|
|
/BITMAPTRUECOLOR { |
848 |
|
|
gsave |
849 |
|
|
translate rotate scale /h exch def /w exch def |
850 |
|
|
/bitmapsave save def |
851 |
|
|
/is w string def |
852 |
|
|
/gis w string def |
853 |
|
|
/bis w string def |
854 |
|
|
/cf currentfile def |
855 |
|
|
w h 8 [w 0 0 h neg 0 h] |
856 |
|
|
{ cf is readhexstring pop } |
857 |
|
|
{ cf gis readhexstring pop } |
858 |
|
|
{ cf bis readhexstring pop } |
859 |
|
|
true 3 colorimage |
860 |
|
|
bitmapsave restore |
861 |
|
|
grestore |
862 |
|
|
} bind def |
863 |
|
|
/BITMAPTRUEGRAYc { |
864 |
|
|
gsave |
865 |
|
|
translate rotate scale /h exch def /w exch def |
866 |
|
|
/bitmapsave save def |
867 |
|
|
|
868 |
|
|
/is w string def |
869 |
|
|
|
870 |
|
|
ws 0 w getinterval is copy pop |
871 |
|
|
/cf currentfile def |
872 |
|
|
w h 8 [w 0 0 h neg 0 h] |
873 |
|
|
{ip gip bip w gray} image |
874 |
|
|
bitmapsave restore |
875 |
|
|
grestore |
876 |
|
|
} bind def |
877 |
|
|
/ww FMLOCAL |
878 |
|
|
/r FMLOCAL |
879 |
|
|
/g FMLOCAL |
880 |
|
|
/b FMLOCAL |
881 |
|
|
/i FMLOCAL |
882 |
|
|
/gray { |
883 |
|
|
/ww exch def |
884 |
|
|
/b exch def |
885 |
|
|
/g exch def |
886 |
|
|
/r exch def |
887 |
|
|
0 1 ww 1 sub { /i exch def r i get .299 mul g i get .587 mul |
888 |
|
|
b i get .114 mul add add r i 3 -1 roll floor cvi put } for |
889 |
|
|
r |
890 |
|
|
} bind def |
891 |
|
|
/BITMAPTRUEGRAY { |
892 |
|
|
gsave |
893 |
|
|
translate rotate scale /h exch def /w exch def |
894 |
|
|
/bitmapsave save def |
895 |
|
|
/is w string def |
896 |
|
|
/gis w string def |
897 |
|
|
/bis w string def |
898 |
|
|
/cf currentfile def |
899 |
|
|
w h 8 [w 0 0 h neg 0 h] |
900 |
|
|
{ cf is readhexstring pop |
901 |
|
|
cf gis readhexstring pop |
902 |
|
|
cf bis readhexstring pop w gray} image |
903 |
|
|
bitmapsave restore |
904 |
|
|
grestore |
905 |
|
|
} bind def |
906 |
|
|
/BITMAPGRAY { |
907 |
|
|
8 {fakecolorsetup} COMMONBITMAP |
908 |
|
|
} bind def |
909 |
|
|
/BITMAPGRAYc { |
910 |
|
|
8 {fakecolorsetup} COMMONBITMAPc |
911 |
|
|
} bind def |
912 |
|
|
/ENDBITMAP { |
913 |
|
|
} bind def |
914 |
|
|
end |
915 |
|
|
/ALDsave FMLOCAL |
916 |
|
|
/ALDmatrix matrix def ALDmatrix currentmatrix pop |
917 |
|
|
/StartALD { |
918 |
|
|
/ALDsave save def |
919 |
|
|
savematrix |
920 |
|
|
ALDmatrix setmatrix |
921 |
|
|
} bind def |
922 |
|
|
/InALD { |
923 |
|
|
restorematrix |
924 |
|
|
} bind def |
925 |
|
|
/DoneALD { |
926 |
|
|
ALDsave restore |
927 |
|
|
} bind def |
928 |
|
|
%%EndProlog |
929 |
|
|
%%BeginSetup |
930 |
|
|
(3.0) FMVERSION |
931 |
|
|
1 1 595.3 841.9 0 1 27 FMDOCUMENT |
932 |
|
|
0 0 /Times-Roman FMFONTDEFINE |
933 |
|
|
1 0 /Helvetica-Bold FMFONTDEFINE |
934 |
|
|
2 0 /Courier FMFONTDEFINE |
935 |
|
|
3 0 /Helvetica FMFONTDEFINE |
936 |
|
|
4 0 /Times-Italic FMFONTDEFINE |
937 |
|
|
5 0 /Times-Bold FMFONTDEFINE |
938 |
|
|
6 0 /Courier-Oblique FMFONTDEFINE |
939 |
|
|
7 0 /Courier-BoldOblique FMFONTDEFINE |
940 |
|
|
8 0 /Courier-Bold FMFONTDEFINE |
941 |
|
|
9 1 /Symbol FMFONTDEFINE |
942 |
|
|
32 FMFILLS |
943 |
|
|
0 0 FMFILL |
944 |
|
|
1 0.1 FMFILL |
945 |
|
|
2 0.3 FMFILL |
946 |
|
|
3 0.5 FMFILL |
947 |
|
|
4 0.7 FMFILL |
948 |
|
|
5 0.9 FMFILL |
949 |
|
|
6 0.97 FMFILL |
950 |
|
|
7 1 FMFILL |
951 |
|
|
8 <0f1e3c78f0e1c387> FMFILL |
952 |
|
|
9 <0f87c3e1f0783c1e> FMFILL |
953 |
|
|
10 <cccccccccccccccc> FMFILL |
954 |
|
|
11 <ffff0000ffff0000> FMFILL |
955 |
|
|
12 <8142241818244281> FMFILL |
956 |
|
|
13 <03060c183060c081> FMFILL |
957 |
|
|
14 <8040201008040201> FMFILL |
958 |
|
|
16 1 FMFILL |
959 |
|
|
17 0.9 FMFILL |
960 |
|
|
18 0.7 FMFILL |
961 |
|
|
19 0.5 FMFILL |
962 |
|
|
20 0.3 FMFILL |
963 |
|
|
21 0.1 FMFILL |
964 |
|
|
22 0.03 FMFILL |
965 |
|
|
23 0 FMFILL |
966 |
|
|
24 <f0e1c3870f1e3c78> FMFILL |
967 |
|
|
25 <f0783c1e0f87c3e1> FMFILL |
968 |
|
|
26 <3333333333333333> FMFILL |
969 |
|
|
27 <0000ffff0000ffff> FMFILL |
970 |
|
|
28 <7ebddbe7e7dbbd7e> FMFILL |
971 |
|
|
29 <fcf9f3e7cf9f3f7e> FMFILL |
972 |
|
|
30 <7fbfdfeff7fbfdfe> FMFILL |
973 |
|
|
%%EndSetup |
974 |
|
|
%%Page: "i" 1 |
975 |
|
|
%%BeginPaperSize: A4 |
976 |
|
|
%%EndPaperSize |
977 |
|
|
595.3 841.9 0 FMBEGINPAGE |
978 |
|
|
0 10 Q |
979 |
|
|
0 X |
980 |
|
|
0 K |
981 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
982 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
983 |
|
|
(INTERNET-DRAFT) 72 70.23 T |
984 |
|
|
(i) 296.26 70.23 T |
985 |
|
|
1 18 Q |
986 |
|
|
(HTML+ \050Hypertext markup format\051) 151.96 757.9 T |
987 |
|
|
1 14 Q |
988 |
|
|
(Status of this memo) 72 722.57 T |
989 |
|
|
0 12 Q |
990 |
|
|
(This document is an Internet-Draft. Internet-Drafts are working documents of the Internet) 72 702.9 T |
991 |
|
|
-0.06 (Engineering T) 72 688.9 P |
992 |
|
|
-0.06 (ask Force \050IETF\051, its areas, and its working groups. Note that other groups may) 140.05 688.9 P |
993 |
|
|
(also distribute working documents as Internet-Drafts.) 72 674.9 T |
994 |
|
|
(Internet-Drafts are draft documents valid for a maximum of six months. Internet-Drafts may) 72 655.9 T |
995 |
|
|
-0.06 (be updated, replaced, or obsoleted by other documents at any time. It is not appropriate to use) 72 641.9 P |
996 |
|
|
(Internet-Drafts as reference material or to cite them other than as a \322working draft\323 or \322work) 72 627.9 T |
997 |
|
|
(in progress\323.) 72 613.9 T |
998 |
|
|
-0.12 (T) 72 594.9 P |
999 |
|
|
-0.12 (o learn the current status of any Internet-Draft, please check the) 78.49 594.9 P |
1000 |
|
|
2 10 Q |
1001 |
|
|
-0.23 (1id-abstracts.txt) 385.6 594.9 P |
1002 |
|
|
0 12 Q |
1003 |
|
|
-0.12 ( listing) 487.54 594.9 P |
1004 |
|
|
(contained in the Internet-Drafts Shadow directories on) 72 580.9 T |
1005 |
|
|
2 10 Q |
1006 |
|
|
(ds.internic.txt) 336.13 580.9 T |
1007 |
|
|
0 12 Q |
1008 |
|
|
(,) 426.08 580.9 T |
1009 |
|
|
2 10 Q |
1010 |
|
|
(nic.nordu.net) 432.08 580.9 T |
1011 |
|
|
0 12 Q |
1012 |
|
|
(,) 510.04 580.9 T |
1013 |
|
|
2 10 Q |
1014 |
|
|
(ftp.nisc.sri.com) 72 566.9 T |
1015 |
|
|
0 12 Q |
1016 |
|
|
( or) 167.95 566.9 T |
1017 |
|
|
2 10 Q |
1018 |
|
|
(munnari.oz.au) 183.93 566.9 T |
1019 |
|
|
0 12 Q |
1020 |
|
|
(. Distribution of this document is unlimited. Please) 261.89 566.9 T |
1021 |
|
|
(mail comments to the author at) 72 552.9 T |
1022 |
|
|
2 10 Q |
1023 |
|
|
(dsr@hplb.hpl.hp.com) 72 538.9 T |
1024 |
|
|
0 12 Q |
1025 |
|
|
( or to the discussion list:) 185.94 538.9 T |
1026 |
|
|
2 10 Q |
1027 |
|
|
(www-talk@nxoc01.cern.ch) 305.88 538.9 T |
1028 |
|
|
0 12 Q |
1029 |
|
|
( This draft is valid until May 1st, 1994. It is available in the \336le) 72 519.9 T |
1030 |
|
|
2 10 Q |
1031 |
|
|
(draft-raggett-www-html-) 378.83 519.9 T |
1032 |
|
|
(00.ps) 72 505.9 T |
1033 |
|
|
0 12 Q |
1034 |
|
|
( and) 101.98 505.9 T |
1035 |
|
|
2 10 Q |
1036 |
|
|
(draft-raggett-www-html-00.txt.) 125.3 505.9 T |
1037 |
|
|
0 12 Q |
1038 |
|
|
(The Postscript \336le contains \336gures and for-) 305.2 505.9 T |
1039 |
|
|
(matting examples which are missing from the plain text version.) 72 491.9 T |
1040 |
|
|
1 14 Q |
1041 |
|
|
(Abstract) 72 462.57 T |
1042 |
|
|
0 12 Q |
1043 |
|
|
(This draft presents a proposal for a light weight delivery format for browsing and querying) 72 442.9 T |
1044 |
|
|
(information in a web of globally distributed hypertext, accessible over the Internet. HTML+) 72 428.9 T |
1045 |
|
|
(embodies a pageless model making it suitable for ef) 72 414.9 T |
1046 |
|
|
(\336cient rendering on a wide range of dis-) 320.95 414.9 T |
1047 |
|
|
(play types, for example, VT100 terminals, X1) 72 400.9 T |
1048 |
|
|
(1 W) 292.4 400.9 T |
1049 |
|
|
(orkstations, W) 311.76 400.9 T |
1050 |
|
|
(indows 3.x and the Macin-) 381.24 400.9 T |
1051 |
|
|
(tosh. HTML+ is based upon SGML, and represents document elements at a logical level, e.g.) 72 386.9 T |
1052 |
|
|
(headers, paragraphs, lists, tables, and \336gures. Authors can choose to create HTML+ docu-) 72 372.9 T |
1053 |
|
|
-0.33 (ments directly) 72 358.9 P |
1054 |
|
|
-0.33 (, or to use \336lters to convert from other formats such as LaT) 139.18 358.9 P |
1055 |
|
|
-0.33 (eX, Framemaker) 417.85 358.9 P |
1056 |
|
|
-0.33 (, and) 497.64 358.9 P |
1057 |
|
|
(W) 72 344.9 T |
1058 |
|
|
(ord for W) 82.36 344.9 T |
1059 |
|
|
(indows.) 129.17 344.9 T |
1060 |
|
|
(HTML+ has grown out of several years experience with the HTML document format in the) 72 325.9 T |
1061 |
|
|
(W) 72 311.9 T |
1062 |
|
|
(orld W) 82.36 311.9 T |
1063 |
|
|
(ide W) 115.52 311.9 T |
1064 |
|
|
(eb community) 143.54 311.9 T |
1065 |
|
|
(. Browser writers are experimenting with extensions to HTML) 211.72 311.9 T |
1066 |
|
|
(and it is now appropriate to draw these ideas together into a revised document format.. The) 72 297.9 T |
1067 |
|
|
(new format is designed to allow a gradual roll over from HTML, adding features like tables,) 72 283.9 T |
1068 |
|
|
(captioned \336gures and \336ll-out forms for querying remote databases or mailing questionnaires.) 72 269.9 T |
1069 |
|
|
-0.31 (Lar) 72 255.9 P |
1070 |
|
|
-0.31 (ge documents can be split into a number of smaller nodes for reduced latency) 88.43 255.9 P |
1071 |
|
|
-0.31 (, with explicit) 454.94 255.9 P |
1072 |
|
|
(or implicit navigation links. This draft also includes a proposal to add direct support for math-) 72 241.9 T |
1073 |
|
|
(ematical formulae. Authors can include limited presentation hints, and further control may) 72 227.9 T |
1074 |
|
|
(eventually be possible via associated style sheets.) 72 213.9 T |
1075 |
|
|
FMENDPAGE |
1076 |
|
|
%%EndPage: "i" 2 |
1077 |
|
|
%%Page: "ii" 2 |
1078 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1079 |
|
|
0 10 Q |
1080 |
|
|
0 X |
1081 |
|
|
0 K |
1082 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1083 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1084 |
|
|
(INTERNET-DRAFT) 72 70.23 T |
1085 |
|
|
(ii) 294.87 70.23 T |
1086 |
|
|
FMENDPAGE |
1087 |
|
|
%%EndPage: "ii" 3 |
1088 |
|
|
%%Page: "iii" 3 |
1089 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1090 |
|
|
0 10 Q |
1091 |
|
|
0 X |
1092 |
|
|
0 K |
1093 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1094 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1095 |
|
|
(INTERNET-DRAFT) 72 70.23 T |
1096 |
|
|
(iii) 293.48 70.23 T |
1097 |
|
|
1 20 Q |
1098 |
|
|
(T) 72 756.57 T |
1099 |
|
|
(able of Contents) 82.73 756.57 T |
1100 |
|
|
1 12 Q |
1101 |
|
|
(HTML+ Discussion Document 1) 72 734.9 T |
1102 |
|
|
3 F |
1103 |
|
|
(Introduction 1) 90 720.9 T |
1104 |
|
|
(Positioning of HTML+ 1) 90 706.9 T |
1105 |
|
|
(HTML+ and HTML 1) 90 692.9 T |
1106 |
|
|
(HTML+ and SGML 2) 90 678.9 T |
1107 |
|
|
1 F |
1108 |
|
|
(An Overview of HTML+ 2) 72 664.9 T |
1109 |
|
|
3 F |
1110 |
|
|
(Document Structure 3) 90 650.9 T |
1111 |
|
|
(Large Documents 3) 90 636.9 T |
1112 |
|
|
1 F |
1113 |
|
|
(Headers 4) 72 622.9 T |
1114 |
|
|
(Paragraphs and <P> 4) 72 608.9 T |
1115 |
|
|
(Normal Text 5) 72 594.9 T |
1116 |
|
|
3 F |
1117 |
|
|
(Character Sets and Entity Definitions 6) 90 580.9 T |
1118 |
|
|
(Hypertext Links 7) 90 566.9 T |
1119 |
|
|
(Character Emphasis 8) 90 552.9 T |
1120 |
|
|
(Presentation Only Tags 8) 90 538.9 T |
1121 |
|
|
(Generic Emphasis 9) 90 524.9 T |
1122 |
|
|
(Logical Emphasis 9) 90 510.9 T |
1123 |
|
|
(Extending the Set of Logical Roles 9) 90 496.9 T |
1124 |
|
|
(Annotations 10) 90 482.9 T |
1125 |
|
|
(Images 10) 90 468.9 T |
1126 |
|
|
(Change Bars and Document Amendments 11) 90 454.9 T |
1127 |
|
|
(Conditional Text 12) 90 440.9 T |
1128 |
|
|
(Explicit Line Breaks 12) 90 426.9 T |
1129 |
|
|
1 F |
1130 |
|
|
(Different Paragraph Styles 13) 72 412.9 T |
1131 |
|
|
3 F |
1132 |
|
|
(Longer Quotations 13) 90 398.9 T |
1133 |
|
|
2 10 Q |
1134 |
|
|
(Abstracts 13) 90 384.9 T |
1135 |
|
|
(Bylines 13) 90 370.9 T |
1136 |
|
|
3 12 Q |
1137 |
|
|
(Notes and admonishments 14) 90 356.9 T |
1138 |
|
|
1 F |
1139 |
|
|
(Lists 14) 72 342.9 T |
1140 |
|
|
3 F |
1141 |
|
|
(Ordered Lists 14) 90 328.9 T |
1142 |
|
|
(Bulleted Lists 15) 90 314.9 T |
1143 |
|
|
(Plain Lists 15) 90 300.9 T |
1144 |
|
|
(Definition Lists 16) 90 286.9 T |
1145 |
|
|
1 F |
1146 |
|
|
(Figures 17) 72 272.9 T |
1147 |
|
|
3 F |
1148 |
|
|
(Active Areas 18) 90 258.9 T |
1149 |
|
|
(Placing Hypertext Buttons on Images 18) 90 244.9 T |
1150 |
|
|
(Possible extensions 19) 90 230.9 T |
1151 |
|
|
1 F |
1152 |
|
|
(Tables 19) 72 216.9 T |
1153 |
|
|
3 F |
1154 |
|
|
(Implementation Issues for Tables 21) 90 202.9 T |
1155 |
|
|
1 F |
1156 |
|
|
(Fill-out Forms and Input fields 21) 72 188.9 T |
1157 |
|
|
3 F |
1158 |
|
|
(Sending form data to an HTTP server 25) 90 174.9 T |
1159 |
|
|
(Sending a form via Electronic Mail 26) 90 160.9 T |
1160 |
|
|
1 F |
1161 |
|
|
(Literal and Preformatted Text 26) 72 146.9 T |
1162 |
|
|
(Mathematical Equations 28) 72 132.9 T |
1163 |
|
|
(Indexing 30) 72 118.9 T |
1164 |
|
|
FMENDPAGE |
1165 |
|
|
%%EndPage: "iii" 4 |
1166 |
|
|
%%Page: "iv" 4 |
1167 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1168 |
|
|
0 10 Q |
1169 |
|
|
0 X |
1170 |
|
|
0 K |
1171 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1172 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1173 |
|
|
(INTERNET-DRAFT) 72 70.23 T |
1174 |
|
|
(iv) 293.76 70.23 T |
1175 |
|
|
1 12 Q |
1176 |
|
|
(Document declarations 30) 72 761.9 T |
1177 |
|
|
3 F |
1178 |
|
|
(HTMLPLUS 31) 90 747.9 T |
1179 |
|
|
(The HEAD and BODY elements 31) 90 733.9 T |
1180 |
|
|
(TITLE 31) 90 719.9 T |
1181 |
|
|
(ISINDEX 31) 90 705.9 T |
1182 |
|
|
(NEXTID 32) 90 691.9 T |
1183 |
|
|
(BASE 32) 90 677.9 T |
1184 |
|
|
(LINK 32) 90 663.9 T |
1185 |
|
|
1 F |
1186 |
|
|
(Dealing with Large Documents 33) 72 649.9 T |
1187 |
|
|
(Acknowledgements 35) 72 635.9 T |
1188 |
|
|
(References 35) 72 621.9 T |
1189 |
|
|
(Appendix I - HTML+ DTD 37) 72 602.9 T |
1190 |
|
|
(Appendix II - character entities 47) 72 588.9 T |
1191 |
|
|
(Appendix III - C code for Point in Polygon testing 57) 72 574.9 T |
1192 |
|
|
(Appendix IV - Sorted list of tags and their attributes 59) 72 560.9 T |
1193 |
|
|
FMENDPAGE |
1194 |
|
|
%%EndPage: "iv" 5 |
1195 |
|
|
%%Page: "1" 5 |
1196 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1197 |
|
|
0 10 Q |
1198 |
|
|
0 X |
1199 |
|
|
0 K |
1200 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1201 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1202 |
|
|
(1) 295.15 70.23 T |
1203 |
|
|
1 18 Q |
1204 |
|
|
(HTML+ \050Hypertext markup format\051) 151.96 757.9 T |
1205 |
|
|
1 14 Q |
1206 |
|
|
(1) 72 722.57 T |
1207 |
|
|
(HTML+ Discussion Document) 90 722.57 T |
1208 |
|
|
0 12 Q |
1209 |
|
|
(Following the WWW workshop in July 1993 and subsequent discussions on www-talk, it) 72 702.9 T |
1210 |
|
|
(seems an opportune moment to try and reach a consensus before writing a more formal draft) 72 688.9 T |
1211 |
|
|
(as an informational RFC.) 72 674.9 T |
1212 |
|
|
1 F |
1213 |
|
|
(1.1) 72 646.9 T |
1214 |
|
|
(Introduction) 99 646.9 T |
1215 |
|
|
0 F |
1216 |
|
|
-0.16 (The W) 72 627.9 P |
1217 |
|
|
-0.16 (orld W) 103.85 627.9 P |
1218 |
|
|
-0.16 (ide W) 136.86 627.9 P |
1219 |
|
|
-0.16 (eb is a wide-area client-server architecture for retrieving hypermedia docu-) 164.71 627.9 P |
1220 |
|
|
-0.05 (ments over the Internet. It also supports a means of searching remote information sources, for) 72 613.9 P |
1221 |
|
|
(example bibliographies, phone directories and instruction manuals. There are three main) 72 599.9 T |
1222 |
|
|
(ingredients: naming schemes for retrievable objects, protocols and interchange formats.) 72 585.9 T |
1223 |
|
|
(\245) 90 566.9 T |
1224 |
|
|
(Universal naming scheme for documents. The Universal Resource Location \050URL\051) 108 566.9 T |
1225 |
|
|
(syntax speci\336es documents in terms of the protocol to be used to retrieve them, their) 108 552.9 T |
1226 |
|
|
(Internet Host and path name. A format for location independent lifetime identi\336ers is) 108 538.9 T |
1227 |
|
|
-0.36 (currently being de\336ned by a working group of the IETF) 108 524.9 P |
1228 |
|
|
-0.36 (. A network protocol will allow) 371.24 524.9 P |
1229 |
|
|
-0.11 (Universal Resource Numbers \050URNs\051 to be resolved to the URL for the nearest availa-) 108 510.9 P |
1230 |
|
|
(ble copy) 108 496.9 T |
1231 |
|
|
(. A URN may specify a number of variants of a document, but the URL will) 148.19 496.9 T |
1232 |
|
|
(always specify a single copy) 108 482.9 T |
1233 |
|
|
(.) 244.45 482.9 T |
1234 |
|
|
(\245) 90 463.9 T |
1235 |
|
|
(Use of) 108 463.9 T |
1236 |
|
|
4 F |
1237 |
|
|
(de facto) 142.64 463.9 T |
1238 |
|
|
0 F |
1239 |
|
|
( protocols for retrieving documents over the Internet including FTP) 180.94 463.9 T |
1240 |
|
|
(,) 503.06 463.9 T |
1241 |
|
|
(NNTP) 108 449.9 T |
1242 |
|
|
(, W) 137.98 449.9 T |
1243 |
|
|
(AIS, Gopher and HTTP) 153.97 449.9 T |
1244 |
|
|
(. The latter being designed speci\336cally for the W) 267.22 449.9 T |
1245 |
|
|
(orld) 500.42 449.9 T |
1246 |
|
|
(W) 108 435.9 T |
1247 |
|
|
(ide W) 118.84 435.9 T |
1248 |
|
|
(eb, and uses the MIME message format for document exchange.) 146.86 435.9 T |
1249 |
|
|
(\245) 90 416.9 T |
1250 |
|
|
(A document format supporting hypertext links based on URLs and URNs which can) 108 416.9 T |
1251 |
|
|
(be rendered on a wide variety of display types. HTML+ is intended in this role as a) 108 402.9 T |
1252 |
|
|
(successor to the existing HTML format.) 108 388.9 T |
1253 |
|
|
(HTML+ documents of) 72 369.9 T |
1254 |
|
|
(fer a means for providing hypertext links to a variety of media includ-) 180.48 369.9 T |
1255 |
|
|
(ing images, sound sequences, MPEG movies, Postscript \336les and other formats. These links) 72 355.9 T |
1256 |
|
|
(allow a global web of information sources to be established as new servers and document) 72 341.9 T |
1257 |
|
|
(names are announced. Registers of information sources can also be made available via the) 72 327.9 T |
1258 |
|
|
-0.32 (web, using its ability to let users search for information via keywords. It is hoped that HTML+) 72 313.9 P |
1259 |
|
|
(will be useful for information exchange via email and network news as well as HTTP) 72 299.9 T |
1260 |
|
|
(.) 481.04 299.9 T |
1261 |
|
|
1 F |
1262 |
|
|
(1.2) 72 271.9 T |
1263 |
|
|
(Positioning of HTML+) 99 271.9 T |
1264 |
|
|
0 F |
1265 |
|
|
(HTML+ is designed for use in the W) 72 252.9 T |
1266 |
|
|
(orld W) 248.69 252.9 T |
1267 |
|
|
(ide W) 281.85 252.9 T |
1268 |
|
|
(eb as a non-proprietary delivery format for) 309.86 252.9 T |
1269 |
|
|
-0.46 (wide-area hypertext. It embodies a pageless model making it suitable for ef) 72 238.9 P |
1270 |
|
|
-0.46 (\336cient rendering on) 427.75 238.9 P |
1271 |
|
|
(a wide range of display types including VT100 terminals, X1) 72 224.9 T |
1272 |
|
|
(1, W) 365.36 224.9 T |
1273 |
|
|
(indows 3.1 and the Macin-) 388.19 224.9 T |
1274 |
|
|
(tosh. HTML+ is based upon SGML and represents document elements at a logical level.) 72 210.9 T |
1275 |
|
|
(Authors may choose to create HTML+ documents directly or to use \336lters to convert from) 72 196.9 T |
1276 |
|
|
(other formats such as LaT) 72 182.9 T |
1277 |
|
|
(eX, Framemaker) 196.4 182.9 T |
1278 |
|
|
(, and W) 276.51 182.9 T |
1279 |
|
|
(ord for W) 313.19 182.9 T |
1280 |
|
|
(indows.) 360 182.9 T |
1281 |
|
|
1 F |
1282 |
|
|
(1.3) 72 154.9 T |
1283 |
|
|
(HTML+ and HTML) 99 154.9 T |
1284 |
|
|
0 F |
1285 |
|
|
(HTML+ is a superset of HTML and designed to allow a gradual roll over from the earlier for-) 72 135.9 T |
1286 |
|
|
(mat, with features like tables, captioned \336gures and \336ll-out forms for querying remote data-) 72 121.9 T |
1287 |
|
|
FMENDPAGE |
1288 |
|
|
%%EndPage: "1" 6 |
1289 |
|
|
%%Page: "2" 6 |
1290 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1291 |
|
|
0 10 Q |
1292 |
|
|
0 X |
1293 |
|
|
0 K |
1294 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1295 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1296 |
|
|
(2) 295.15 70.23 T |
1297 |
|
|
0 12 Q |
1298 |
|
|
-0.06 (bases or mailing questionnaires. Lar) 72 761.9 P |
1299 |
|
|
-0.06 (ge documents can be split into a number of smaller nodes) 245.1 761.9 P |
1300 |
|
|
(for reduced latency) 72 747.9 T |
1301 |
|
|
(, with explicit or implicit navigation links. This draft also includes a pro-) 163.8 747.9 T |
1302 |
|
|
(posal to add support for mathematical formulae. Authors can include limited presentation) 72 733.9 T |
1303 |
|
|
(hints, and further control may eventually be possible via associated style sheets.) 72 719.9 T |
1304 |
|
|
1 F |
1305 |
|
|
(1.4) 72 691.9 T |
1306 |
|
|
(HTML+ and SGML) 99 691.9 T |
1307 |
|
|
0 F |
1308 |
|
|
(HTML+ is based on the Standard Generalized Markup Language which is an international) 72 672.9 T |
1309 |
|
|
(standard for document markup that is becoming increasingly important. The term markup) 72 658.9 T |
1310 |
|
|
(derives from the way proof-readers have traditionally pencilled in marks that indicate how a) 72 644.9 T |
1311 |
|
|
(document is to be revised.) 72 630.9 T |
1312 |
|
|
-0.2 (SGML grew out of a decade of work addressing the need for capturing the logical elements of) 72 611.9 P |
1313 |
|
|
(documents as opposed to the processing functions to be performed on those elements. SGML) 72 597.9 T |
1314 |
|
|
-0.34 (is essentially an extensible document description language, based on a notation for embedding) 72 583.9 P |
1315 |
|
|
(tags into the body of a document\325 s text. It is de\336ned by the international standard ISO 8879.) 72 569.9 T |
1316 |
|
|
(The markup structure permitted for each class of documents is de\336ned by an SGML Docu-) 72 555.9 T |
1317 |
|
|
(ment T) 72 541.9 T |
1318 |
|
|
(ype De\336nition, usually abbreviated to DTD.) 105.47 541.9 T |
1319 |
|
|
-0.34 (A lot of work is underway to produce DTDs for a range of purposes. These include ISO 12083) 72 522.9 P |
1320 |
|
|
(for books and ISO 10744 which de\336nes the HyT) 72 508.9 T |
1321 |
|
|
(ime architectural forms for hypermedia/time-) 304.76 508.9 T |
1322 |
|
|
(based documents. The T) 72 494.9 T |
1323 |
|
|
(ext Encoding Initiative \050TEI\051 is an international research project for) 188.41 494.9 T |
1324 |
|
|
(SGML-based document exchange in the humanities. Publishers are cooperating to produce) 72 480.9 T |
1325 |
|
|
(common DTDs for computer manuals, e.g. the DocBook DTD. The CALS programme of the) 72 466.9 T |
1326 |
|
|
-0.03 (US Department of Defence de\336nes SGML DTDs for documentation for defence procurement) 72 452.9 P |
1327 |
|
|
(contracts.) 72 438.9 T |
1328 |
|
|
(So what sets HTML+ apart from these ef) 72 419.9 T |
1329 |
|
|
(forts? It is impractical to design a DTD to meet the) 268.74 419.9 T |
1330 |
|
|
(needs of all possible users. Instead, the markup has to be tailored to the needs of a speci\336c) 72 405.9 T |
1331 |
|
|
-0.16 (community) 72 391.9 P |
1332 |
|
|
-0.16 (. HTML+ is aimed at ful\336lling the dream of a web of information freely accessible) 125.86 391.9 P |
1333 |
|
|
(over the Internet with links between documents spanning continents. The need to support a) 72 377.9 T |
1334 |
|
|
-0.2 (very wide range of display types and to keep browser software as simple as possible limits the) 72 363.9 P |
1335 |
|
|
(complexity that can be handled. Similarly the disparate needs of authors has led to the inclu-) 72 349.9 T |
1336 |
|
|
(sion of limited rendering hints. The features supported arise from several years experience) 72 335.9 T |
1337 |
|
|
(with the W) 72 321.9 T |
1338 |
|
|
(orld W) 124.34 321.9 T |
1339 |
|
|
(eb and the existing HTML format.) 157.02 321.9 T |
1340 |
|
|
1 14 Q |
1341 |
|
|
(2) 72 292.57 T |
1342 |
|
|
(An Overview of HTML+) 90 292.57 T |
1343 |
|
|
0 12 Q |
1344 |
|
|
(HTML+ documents consists of headers, paragraphs, lists, tables and \336gures. A simple exam-) 72 272.9 T |
1345 |
|
|
(ple of an HTML+ document is:) 72 258.9 T |
1346 |
|
|
2 10 Q |
1347 |
|
|
(<title>A simple HTML+ Document</title>) 90 241.23 T |
1348 |
|
|
(<h1 id=\323a1\323>This is a level one header</h1>) 90 224.23 T |
1349 |
|
|
(<p>This is some normal text which will wrap at the window margin.) 90 207.23 T |
1350 |
|
|
(You can emphasise <em>parts of the text</em> if you wish.) 90 195.23 T |
1351 |
|
|
(<p>This is a new paragraph. Note that unlike title and header tags) 90 178.23 T |
1352 |
|
|
(the matching end tag is not needed.) 90 166.23 T |
1353 |
|
|
0 12 Q |
1354 |
|
|
(The text of the document includes tags which are enclosed in <angle brackets>. Many tags) 72 147.9 T |
1355 |
|
|
-0.41 (require matching end tags for which the tag name is preceded by the \322/\323 character) 72 133.9 P |
1356 |
|
|
-0.41 (. The tags are) 457.32 133.9 P |
1357 |
|
|
(used to markup the document\325) 72 119.9 T |
1358 |
|
|
(s logical elements, for example the title, headers and para-) 217.24 119.9 T |
1359 |
|
|
FMENDPAGE |
1360 |
|
|
%%EndPage: "2" 7 |
1361 |
|
|
%%Page: "3" 7 |
1362 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1363 |
|
|
0 10 Q |
1364 |
|
|
0 X |
1365 |
|
|
0 K |
1366 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1367 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1368 |
|
|
(3) 295.15 70.23 T |
1369 |
|
|
0 12 Q |
1370 |
|
|
(graphs. T) 72 761.9 T |
1371 |
|
|
(ags may also be accompanied by attributes, e.g. the) 116.46 761.9 T |
1372 |
|
|
4 F |
1373 |
|
|
(id) 365.61 761.9 T |
1374 |
|
|
0 F |
1375 |
|
|
( attribute in the header tag) 374.94 761.9 T |
1376 |
|
|
(which can be used to name destinations for hypertext links.) 72 747.9 T |
1377 |
|
|
-0.13 (Unlike most document formats, HTML+ leaves out the processing instructions that determine) 72 728.9 P |
1378 |
|
|
(the precise appearance, for instance the font names and point size, the mar) 72 714.9 T |
1379 |
|
|
(gins, tab settings) 428.16 714.9 T |
1380 |
|
|
(and how much white space to leave before and after dif) 72 700.9 T |
1381 |
|
|
(ferent elements. The rendering soft-) 337.56 700.9 T |
1382 |
|
|
(ware makes these choices for itself \050perhaps guided by user preferences\051. This ensures that) 72 686.9 T |
1383 |
|
|
(browsers can avoid problems with dif) 72 672.9 T |
1384 |
|
|
(ferent page sizes or missing fonts. Logical markup also) 252.66 672.9 T |
1385 |
|
|
-0.24 (preserves essential distinctions that are often lost by lower level procedural formats, making it) 72 658.9 P |
1386 |
|
|
(easier to carry out operations like indexing and conversion into other document formats.) 72 644.9 T |
1387 |
|
|
(Note that the tag and attribute names are case insensitive. HTML+ parsers are expected to) 72 625.9 T |
1388 |
|
|
(ignore unrecognised tags and attributes, and to process their contents as if the start/end tags) 72 611.9 T |
1389 |
|
|
(weren\325) 72 597.9 T |
1390 |
|
|
(t present. SGML minimisation is not supported - this avoids any possibility of confu-) 105.08 597.9 T |
1391 |
|
|
(sion with unrecognised tags.) 72 583.9 T |
1392 |
|
|
1 F |
1393 |
|
|
(2.1) 72 555.9 T |
1394 |
|
|
(Document Structure) 99 555.9 T |
1395 |
|
|
0 F |
1396 |
|
|
(An HTML+ document consists of some optional declarations followed by one or more ele-) 72 536.9 T |
1397 |
|
|
(ments from the following:) 72 522.9 T |
1398 |
|
|
(\245) 90 503.9 T |
1399 |
|
|
(Headers) 108 503.9 T |
1400 |
|
|
(\245) 90 484.9 T |
1401 |
|
|
(Paragraphs) 108 484.9 T |
1402 |
|
|
(\245) 90 465.9 T |
1403 |
|
|
(Lists) 108 465.9 T |
1404 |
|
|
(\245) 90 446.9 T |
1405 |
|
|
(Figures) 108 446.9 T |
1406 |
|
|
(\245) 90 427.9 T |
1407 |
|
|
(T) 108 427.9 T |
1408 |
|
|
(ables) 114.49 427.9 T |
1409 |
|
|
(\245) 90 408.9 T |
1410 |
|
|
(Forms) 108 408.9 T |
1411 |
|
|
(\245) 90 389.9 T |
1412 |
|
|
(Literal or Preformatted text) 108 389.9 T |
1413 |
|
|
(\245) 90 370.9 T |
1414 |
|
|
(Mathematical formulae) 108 370.9 T |
1415 |
|
|
1 F |
1416 |
|
|
(2.2) 72 342.9 T |
1417 |
|
|
(Large Documents) 99 342.9 T |
1418 |
|
|
0 F |
1419 |
|
|
-0.27 (Keeping a lar) 72 323.9 P |
1420 |
|
|
-0.27 (ge document such as a book in one node will increase the time it takes to retrieve) 135.85 323.9 P |
1421 |
|
|
(the node over the network. It is generally better to split lar) 72 309.9 T |
1422 |
|
|
(ge documents into a number of) 350.92 309.9 T |
1423 |
|
|
(smaller nodes. Many documents are written with the expectation that the reader will start at) 72 295.9 T |
1424 |
|
|
(the beginning and read through until the end. If the document is split into a number of nodes,) 72 281.9 T |
1425 |
|
|
(the intended sequence is known as a) 72 267.9 T |
1426 |
|
|
4 F |
1427 |
|
|
(path) 248.87 267.9 T |
1428 |
|
|
0 F |
1429 |
|
|
(. HTML+ provides a means for authors to specify) 270.19 267.9 T |
1430 |
|
|
(such paths either explicitly via declarations at the beginning of the node or implicitly accord-) 72 253.9 T |
1431 |
|
|
(ing to the context in which a given node is reached. Another possibility is for servers to send) 72 239.9 T |
1432 |
|
|
(such information independently) 72 225.9 T |
1433 |
|
|
(, e.g. as MIME message headers.) 223.79 225.9 T |
1434 |
|
|
-0.28 (Y) 72 206.9 P |
1435 |
|
|
-0.28 (ou can provide navigation links for readers which appear as buttons on a toolbar or as entries) 79.46 206.9 P |
1436 |
|
|
-0.06 (in a navigation menu. For works using a lot of technical terms or perhaps in an unfamiliar lan-) 72 192.9 P |
1437 |
|
|
(guage, you can provide glossaries of) 72 178.9 T |
1438 |
|
|
(fering further explanation. Readers can invoke this by) 246.98 178.9 T |
1439 |
|
|
(double clicking on words, or by drag selection and clicking the Glossary menu item. Y) 72 164.9 T |
1440 |
|
|
(ou can) 487.19 164.9 T |
1441 |
|
|
-0.4 (also provide a search \336eld that is always present \050and can\325) 72 150.9 P |
1442 |
|
|
-0.4 (t be scrolled away\051, in which readers) 346.91 150.9 P |
1443 |
|
|
-0.17 (can enter one or more keywords to search an index. These facilities can be speci\336ed explicitly) 72 136.9 P |
1444 |
|
|
(using the) 72 122.9 T |
1445 |
|
|
2 10 Q |
1446 |
|
|
(LINK) 118.64 122.9 T |
1447 |
|
|
0 12 Q |
1448 |
|
|
( element. Implicit links allow you to de\336ne the table of contents \050toc\051 as an) 142.63 122.9 T |
1449 |
|
|
FMENDPAGE |
1450 |
|
|
%%EndPage: "3" 8 |
1451 |
|
|
%%Page: "4" 8 |
1452 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1453 |
|
|
0 10 Q |
1454 |
|
|
0 X |
1455 |
|
|
0 K |
1456 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1457 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1458 |
|
|
(4) 295.15 70.23 T |
1459 |
|
|
0 12 Q |
1460 |
|
|
(HTML+ document without needing to place links to the toc in every subdocument. The link) 72 761.9 T |
1461 |
|
|
(back to the toc is implied when you follow hypertext link from the toc to its subdocuments.) 72 747.9 T |
1462 |
|
|
1 14 Q |
1463 |
|
|
(3) 72 718.57 T |
1464 |
|
|
(Headers) 90 718.57 T |
1465 |
|
|
0 12 Q |
1466 |
|
|
-0.04 (The tags) 72 698.9 P |
1467 |
|
|
2 10 Q |
1468 |
|
|
-0.08 (H1) 115.89 698.9 P |
1469 |
|
|
0 12 Q |
1470 |
|
|
-0.04 (,) 127.89 698.9 P |
1471 |
|
|
2 10 Q |
1472 |
|
|
-0.08 (H2) 133.85 698.9 P |
1473 |
|
|
0 12 Q |
1474 |
|
|
-0.04 (, ...) 145.84 698.9 P |
1475 |
|
|
2 10 Q |
1476 |
|
|
-0.08 (H6) 163.75 698.9 P |
1477 |
|
|
0 12 Q |
1478 |
|
|
-0.04 ( are used to represent headers.) 175.75 698.9 P |
1479 |
|
|
2 10 Q |
1480 |
|
|
-0.08 (H1) 323.05 698.9 P |
1481 |
|
|
0 12 Q |
1482 |
|
|
-0.04 ( is the most signi\336cant and rendered in) 335.05 698.9 P |
1483 |
|
|
(a lar) 72 684.9 T |
1484 |
|
|
(ge font) 92.76 684.9 T |
1485 |
|
|
0 10 Q |
1486 |
|
|
(1) 126.4 689.7 T |
1487 |
|
|
0 12 Q |
1488 |
|
|
( \050preferably centered\051.) 131.4 684.9 T |
1489 |
|
|
2 10 Q |
1490 |
|
|
(H2) 241.28 684.9 T |
1491 |
|
|
0 12 Q |
1492 |
|
|
( to) 253.28 684.9 T |
1493 |
|
|
2 10 Q |
1494 |
|
|
(H6) 268.6 684.9 T |
1495 |
|
|
0 12 Q |
1496 |
|
|
( are progressively less signi\336cant and usually ren-) 280.6 684.9 T |
1497 |
|
|
(dered \337ush left in smaller fonts. A common convention is to begin the body of a document) 72 670.9 T |
1498 |
|
|
(with an) 72 656.9 T |
1499 |
|
|
2 10 Q |
1500 |
|
|
(H1) 110.64 656.9 T |
1501 |
|
|
0 12 Q |
1502 |
|
|
( header) 122.64 656.9 T |
1503 |
|
|
(, e.g.) 157.12 656.9 T |
1504 |
|
|
2 10 Q |
1505 |
|
|
(<h1>Introduction to HTML+</h1>) 90 639.23 T |
1506 |
|
|
0 12 Q |
1507 |
|
|
(Header names should be appropriate to the following section of the document, while the title) 72 620.9 T |
1508 |
|
|
(should cover the document as a whole. There are no restrictions on the sequence of headers,) 72 606.9 T |
1509 |
|
|
(e.g. you could use a level three header following a level one header) 72 592.9 T |
1510 |
|
|
(.Header and section ele-) 394.41 592.9 T |
1511 |
|
|
(ments can take an identi\336er) 72 578.9 T |
1512 |
|
|
(, unique to the current document, for use as named destinations of) 203.42 578.9 T |
1513 |
|
|
(hypertext links. This is speci\336ed with the) 72 564.9 T |
1514 |
|
|
2 10 Q |
1515 |
|
|
(ID) 272.55 564.9 T |
1516 |
|
|
0 12 Q |
1517 |
|
|
( attribute, e.g.) 284.55 564.9 T |
1518 |
|
|
2 10 Q |
1519 |
|
|
(<h1 id=\323intro\323>Introduction to HTML+</h1>) 90 547.23 T |
1520 |
|
|
0 12 Q |
1521 |
|
|
(This allows authors to create hypertext links to particular sections of documents. It is a good) 72 528.9 T |
1522 |
|
|
(idea to use something obvious when creating an identi\336er) 72 514.9 T |
1523 |
|
|
(, to help jog your memory at a later) 348 514.9 T |
1524 |
|
|
(date. WYSIWYG editors should automatically generate identi\336ers. In this case, they should) 72 500.9 T |
1525 |
|
|
(provide a point and click mechanism for de\336ning links so that authors don\325) 72 486.9 T |
1526 |
|
|
(t need to deal) 432.22 486.9 T |
1527 |
|
|
(explicitly with identi\336er names. Automatic generation of) 72 472.9 T |
1528 |
|
|
2 10 Q |
1529 |
|
|
(ID) 347.82 472.9 T |
1530 |
|
|
0 12 Q |
1531 |
|
|
(s for headers, paragraphs and) 359.82 472.9 T |
1532 |
|
|
(other major elements is important as it makes it easier for other people to create links to your) 72 458.9 T |
1533 |
|
|
(document, by ensuring that there are plenty of) 72 444.9 T |
1534 |
|
|
2 10 Q |
1535 |
|
|
(ID) 296.17 444.9 T |
1536 |
|
|
0 12 Q |
1537 |
|
|
( attributes present as potential destinations.) 308.16 444.9 T |
1538 |
|
|
(Should we support headers for which the level is implicitly de\336ned by nestable section ele-) 72 425.9 T |
1539 |
|
|
-0.18 (ments?) 72 411.9 P |
1540 |
|
|
0 10 Q |
1541 |
|
|
-0.15 (2) 105.98 416.7 P |
1542 |
|
|
0 12 Q |
1543 |
|
|
-0.18 ( W) 110.97 411.9 P |
1544 |
|
|
-0.18 (e could also support autonumbering of headers. Unfortunately) 124.16 411.9 P |
1545 |
|
|
-0.18 (, on further investiga-) 419.91 411.9 P |
1546 |
|
|
(tion these ideas proved trickier than thought at \336rst, and so have been dropped from this draft.) 72 397.9 T |
1547 |
|
|
1 14 Q |
1548 |
|
|
(4) 72 368.57 T |
1549 |
|
|
(Paragraphs and <P>) 90 368.57 T |
1550 |
|
|
0 12 Q |
1551 |
|
|
-0.39 (Normal text is automatically wrapped by the browser at the current window mar) 72 348.9 P |
1552 |
|
|
-0.39 (gin and adapts) 452.18 348.9 P |
1553 |
|
|
(to changes in window size. The text is generally shown in a proportional font:) 72 334.9 T |
1554 |
|
|
2 10 Q |
1555 |
|
|
-0.9 (<P ID=\323p1\323>The P element acts as container for the text between the start) 90 317.23 P |
1556 |
|
|
-0.75 (tag <P>) 90 305.23 P |
1557 |
|
|
2 8 Q |
1558 |
|
|
-0.6 (3) 167.2 309.23 P |
1559 |
|
|
2 10 Q |
1560 |
|
|
-0.75 ( and end tag </P>. You don\325t need to give the end tag) 172 305.23 P |
1561 |
|
|
(as it is implied by the context, e.g. the following <P> tag.) 90 293.23 T |
1562 |
|
|
-0.84 (<P ID=\323p2\323>If you wish, you may think of the <P> tag as a paragraph) 90 281.23 P |
1563 |
|
|
(separator. This works since HTML+ formally doesn\325t require you to wrap) 90 269.23 T |
1564 |
|
|
(text up as paragraphs.) 90 257.23 T |
1565 |
|
|
0 12 Q |
1566 |
|
|
(This would be rendered as:) 72 238.9 T |
1567 |
|
|
-0.33 (The P element acts as a container for the text between the start tag <P> and the end) 90 219.9 P |
1568 |
|
|
-0.22 (tag </P>. Y) 90 205.9 P |
1569 |
|
|
-0.22 (ou don\325) 144.2 205.9 P |
1570 |
|
|
-0.22 (t need to give the end tag as it is implied by the context, e.g. the) 180.74 205.9 P |
1571 |
|
|
(following <P> tag.) 90 191.9 T |
1572 |
|
|
72 144 523.3 158.98 C |
1573 |
|
|
81 156.96 225 156.96 2 L |
1574 |
|
|
0.5 H |
1575 |
|
|
2 Z |
1576 |
|
|
0 X |
1577 |
|
|
0 K |
1578 |
|
|
N |
1579 |
|
|
0 0 595.3 841.9 C |
1580 |
|
|
0 10 Q |
1581 |
|
|
0 X |
1582 |
|
|
0 K |
1583 |
|
|
(1. Headers are often rendered in a sans serif font with paragraph text in a serif font.) 90 137.34 T |
1584 |
|
|
(2. For example with) 90 125.34 T |
1585 |
|
|
2 F |
1586 |
|
|
(<H>) 173 125.34 T |
1587 |
|
|
0 F |
1588 |
|
|
( for headers and) 190.99 125.34 T |
1589 |
|
|
2 F |
1590 |
|
|
(<SECTION>) 257.6 125.34 T |
1591 |
|
|
0 F |
1592 |
|
|
( for nestable sections.) 311.57 125.34 T |
1593 |
|
|
(3. < and > are SGML entity de\336nitions for the < and > characters, see section 5.1.) 90 113.34 T |
1594 |
|
|
FMENDPAGE |
1595 |
|
|
%%EndPage: "4" 9 |
1596 |
|
|
%%Page: "5" 9 |
1597 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1598 |
|
|
0 10 Q |
1599 |
|
|
0 X |
1600 |
|
|
0 K |
1601 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1602 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1603 |
|
|
(5) 295.15 70.23 T |
1604 |
|
|
0 12 Q |
1605 |
|
|
(If you wish, you may think of the <P> tag as a paragraph separator) 90 761.9 T |
1606 |
|
|
(. This works) 409.97 761.9 T |
1607 |
|
|
(since HTML+ formally doesn\325) 90 747.9 T |
1608 |
|
|
(t require you to wrap text up as paragraphs.) 237.45 747.9 T |
1609 |
|
|
(The following samples of HTML+ all produce exactly the same results when displayed:) 72 728.9 T |
1610 |
|
|
2 10 Q |
1611 |
|
|
(<H1>Different ways of using the P element</H1>) 90 711.23 T |
1612 |
|
|
(<P>The f) 90 699.23 T |
1613 |
|
|
(irst piece of text</P><P>The second piece</P>) 137.97 699.23 T |
1614 |
|
|
(<H1>Different ways of using the P element</H1>) 90 682.23 T |
1615 |
|
|
(<P>The f) 90 670.23 T |
1616 |
|
|
(irst piece of text<P>The second piece) 137.97 670.23 T |
1617 |
|
|
(<H1>Different ways of using the P element</H1>) 90 653.23 T |
1618 |
|
|
(The f) 90 641.23 T |
1619 |
|
|
(irst piece of text<P>The second piece) 119.98 641.23 T |
1620 |
|
|
0 12 Q |
1621 |
|
|
(They all produce:) 72 622.9 T |
1622 |
|
|
1 F |
1623 |
|
|
(Different ways of using the P element) 126 603.9 T |
1624 |
|
|
0 F |
1625 |
|
|
(The \336rst piece of text) 126 584.9 T |
1626 |
|
|
(The second piece) 126 565.9 T |
1627 |
|
|
(In some situations you will want to preserve the original line breaks and spacing, for this you) 72 546.9 T |
1628 |
|
|
(should use the) 72 532.9 T |
1629 |
|
|
2 10 Q |
1630 |
|
|
(LIT) 143.62 532.9 T |
1631 |
|
|
0 12 Q |
1632 |
|
|
( or) 161.62 532.9 T |
1633 |
|
|
2 10 Q |
1634 |
|
|
(PRE) 177.6 532.9 T |
1635 |
|
|
0 12 Q |
1636 |
|
|
( elements, these are described in a later section. Y) 195.59 532.9 T |
1637 |
|
|
(ou can force line) 433.86 532.9 T |
1638 |
|
|
(breaks in normal paragraph text with the) 72 518.9 T |
1639 |
|
|
2 10 Q |
1640 |
|
|
(<BR>) 269.52 518.9 T |
1641 |
|
|
0 12 Q |
1642 |
|
|
( element, but the browser may wrap lines arbi-) 293.51 518.9 T |
1643 |
|
|
(trarily at window mar) 72 504.9 T |
1644 |
|
|
(gins prior to reaching the) 176.04 504.9 T |
1645 |
|
|
2 10 Q |
1646 |
|
|
(<BR>) 299.62 504.9 T |
1647 |
|
|
0 12 Q |
1648 |
|
|
( element.) 323.61 504.9 T |
1649 |
|
|
(The) 72 485.9 T |
1650 |
|
|
2 10 Q |
1651 |
|
|
(ALIGN) 93.65 485.9 T |
1652 |
|
|
0 12 Q |
1653 |
|
|
( attribute can be used to center a paragraph, e.g.) 123.63 485.9 T |
1654 |
|
|
2 10 Q |
1655 |
|
|
(<P ALIGN=center>) 355.76 485.9 T |
1656 |
|
|
0 12 Q |
1657 |
|
|
(. Other possi-) 451.71 485.9 T |
1658 |
|
|
-0.54 (bilities are) 72 471.9 P |
1659 |
|
|
2 10 Q |
1660 |
|
|
-1.09 (ALIGN=left) 124.21 471.9 P |
1661 |
|
|
0 12 Q |
1662 |
|
|
-0.54 ( \050the default\051,) 184.18 471.9 P |
1663 |
|
|
2 10 Q |
1664 |
|
|
-1.09 (ALIGN=right) 250.5 471.9 P |
1665 |
|
|
0 12 Q |
1666 |
|
|
-0.54 (,) 316.46 471.9 P |
1667 |
|
|
2 10 Q |
1668 |
|
|
-1.09 (ALIGN=justify) 321.91 471.9 P |
1669 |
|
|
0 12 Q |
1670 |
|
|
-0.54 ( and) 399.87 471.9 P |
1671 |
|
|
2 10 Q |
1672 |
|
|
-1.09 (ALIGN=indent) 422.1 471.9 P |
1673 |
|
|
0 12 Q |
1674 |
|
|
-0.54 (. This) 494.06 471.9 P |
1675 |
|
|
(attribute is a hint and may be ignored by some browsers. Note that when using explicit line) 72 457.9 T |
1676 |
|
|
(breaks \050see section 5.12\051 you may wish to switch of) 72 443.9 T |
1677 |
|
|
(f word wrap with) 320.28 443.9 T |
1678 |
|
|
2 10 Q |
1679 |
|
|
(WRAP=OFF) 406.21 443.9 T |
1680 |
|
|
0 12 Q |
1681 |
|
|
(.) 453.22 443.9 T |
1682 |
|
|
-0.09 (Browsers, when parsing paragraphs, can choose to simply treat the) 72 424.9 P |
1683 |
|
|
2 10 Q |
1684 |
|
|
-0.18 (<P>) 394.18 424.9 P |
1685 |
|
|
0 12 Q |
1686 |
|
|
-0.09 ( tag as denoting a para-) 412.17 424.9 P |
1687 |
|
|
(graph break. If the paragraph style includes a blank line between paragraphs, then additional) 72 410.9 T |
1688 |
|
|
(care is needed after headers and other major elements) 72 396.9 T |
1689 |
|
|
0 10 Q |
1690 |
|
|
(1) 329.1 401.7 T |
1691 |
|
|
0 12 Q |
1692 |
|
|
( to avoid inserting an unwanted blank) 334.1 396.9 T |
1693 |
|
|
-0.02 (line, e.g. when a) 72 382.9 P |
1694 |
|
|
2 10 Q |
1695 |
|
|
-0.04 (<P>) 153.52 382.9 P |
1696 |
|
|
0 12 Q |
1697 |
|
|
-0.02 ( tag directly follows a header) 171.51 382.9 P |
1698 |
|
|
-0.02 (. This ability to perceive) 310.31 382.9 P |
1699 |
|
|
2 10 Q |
1700 |
|
|
-0.04 (<P>) 430.13 382.9 P |
1701 |
|
|
0 12 Q |
1702 |
|
|
-0.02 ( as a paragraph) 448.12 382.9 P |
1703 |
|
|
(break provides for continuity with HTML, and allows authors to graduate to treating it as a) 72 368.9 T |
1704 |
|
|
(container in their own time.) 72 354.9 T |
1705 |
|
|
1 14 Q |
1706 |
|
|
(5) 72 325.57 T |
1707 |
|
|
(Normal T) 90 325.57 T |
1708 |
|
|
(ext) 149.61 325.57 T |
1709 |
|
|
0 12 Q |
1710 |
|
|
( Paragraphs can include the following:) 72 305.9 T |
1711 |
|
|
(\245) 90 286.9 T |
1712 |
|
|
(Character entity names for unusual characters such as) 108 286.9 T |
1713 |
|
|
0 14 Q |
1714 |
|
|
(\227) 368.45 286.9 T |
1715 |
|
|
0 12 Q |
1716 |
|
|
( which are included using) 375.45 286.9 T |
1717 |
|
|
(SGML entity de\336nitions: &) 108 272.9 T |
1718 |
|
|
4 F |
1719 |
|
|
(name) 240.95 272.9 T |
1720 |
|
|
0 F |
1721 |
|
|
(; as in \322the dream of óengus\323 which is dis-) 266.92 272.9 T |
1722 |
|
|
-0.05 (played as: \322the dream of) 108 258.9 P |
1723 |
|
|
0 14 Q |
1724 |
|
|
-0.06 (\227) 227.99 258.9 P |
1725 |
|
|
0 12 Q |
1726 |
|
|
-0.05 (engus\323. The full list of standard entity names recognised by) 234.99 258.9 P |
1727 |
|
|
(most browsers is given in Appendix II) 108 244.9 T |
1728 |
|
|
(\245) 90 225.9 T |
1729 |
|
|
-0.16 (Character emphasis using logical and presentational markup. The set of logical charac-) 108 225.9 P |
1730 |
|
|
(ter emphasis can be extended, and HTML+ provides the means for browsers to deter-) 108 211.9 T |
1731 |
|
|
(mine how to render such extensions) 108 197.9 T |
1732 |
|
|
(\245) 90 178.9 T |
1733 |
|
|
(Simple footnotes or mar) 108 178.9 T |
1734 |
|
|
(gin notes, which can be rendered as pop-up overlays) 224.05 178.9 T |
1735 |
|
|
(\245) 90 159.9 T |
1736 |
|
|
(Images which act as single characters and which can be vertically aligned relative to) 108 159.9 T |
1737 |
|
|
(the text line in which they are embedded) 108 145.9 T |
1738 |
|
|
72 120 523.3 134.98 C |
1739 |
|
|
81 132.96 225 132.96 2 L |
1740 |
|
|
0.5 H |
1741 |
|
|
2 Z |
1742 |
|
|
0 X |
1743 |
|
|
0 K |
1744 |
|
|
N |
1745 |
|
|
0 0 595.3 841.9 C |
1746 |
|
|
0 10 Q |
1747 |
|
|
0 X |
1748 |
|
|
0 K |
1749 |
|
|
(1. These are: H, H1 to H6, NOTE, DL, UL, OL, LIST) 90 113.34 T |
1750 |
|
|
(, FIG, T) 305.21 113.34 T |
1751 |
|
|
(ABLE, FORM and MA) 336.61 113.34 T |
1752 |
|
|
(TH) 430.45 113.34 T |
1753 |
|
|
FMENDPAGE |
1754 |
|
|
%%EndPage: "5" 10 |
1755 |
|
|
%%Page: "6" 10 |
1756 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1757 |
|
|
0 10 Q |
1758 |
|
|
0 X |
1759 |
|
|
0 K |
1760 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1761 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1762 |
|
|
(6) 295.15 70.23 T |
1763 |
|
|
0 12 Q |
1764 |
|
|
(\245) 90 761.9 T |
1765 |
|
|
(Hypertext Links based on the URL or URN notations) 108 761.9 T |
1766 |
|
|
(\245) 90 742.9 T |
1767 |
|
|
(Markup signifying the start and end of change bars. Y) 108 742.9 T |
1768 |
|
|
(ou can also mark text as being) 365.94 742.9 T |
1769 |
|
|
(removed or added, as is common in legal documents) 108 728.9 T |
1770 |
|
|
(\245) 90 709.9 T |
1771 |
|
|
(Conditional text which appears only on-line or only when printed) 108 709.9 T |
1772 |
|
|
(\245) 90 690.9 T |
1773 |
|
|
(Input \336elds when the paragraph is part of a form) 108 690.9 T |
1774 |
|
|
(\245) 90 671.9 T |
1775 |
|
|
(Explicit line breaks) 108 671.9 T |
1776 |
|
|
1 F |
1777 |
|
|
(5.1) 72 643.9 T |
1778 |
|
|
(Character Sets and Entity De\336nitions) 99 643.9 T |
1779 |
|
|
0 F |
1780 |
|
|
(By default, HTML+ documents are made up of 8-bit characters from the ISO 8859 Latin-1) 72 624.9 T |
1781 |
|
|
-0.14 (character set. The network protocol used to retrieve documents may translate the character set) 72 610.9 P |
1782 |
|
|
(into a locally acceptable form, e.g. EBCDIC. The HTTP protocol uses the MIME standard) 72 596.9 T |
1783 |
|
|
(\050RFC 1341\051 to specify the document type and character set. ISO SGML entity de\336nitions are) 72 582.9 T |
1784 |
|
|
-0.09 (used to include characters which are missing from the character set or which would otherwise) 72 568.9 P |
1785 |
|
|
(be confused with markup elements, e.g:) 72 554.9 T |
1786 |
|
|
2 10 Q |
1787 |
|
|
(&) 108 535.9 T |
1788 |
|
|
0 12 Q |
1789 |
|
|
(ampersand &) 180 535.9 T |
1790 |
|
|
2 10 Q |
1791 |
|
|
(<) 108 521.9 T |
1792 |
|
|
0 12 Q |
1793 |
|
|
(less than sign <) 180 521.9 T |
1794 |
|
|
2 10 Q |
1795 |
|
|
(>) 108 507.9 T |
1796 |
|
|
0 12 Q |
1797 |
|
|
(greater than sign >) 180 507.9 T |
1798 |
|
|
2 10 Q |
1799 |
|
|
(") 108 493.9 T |
1800 |
|
|
0 12 Q |
1801 |
|
|
(the double quote sign \322) 180 493.9 T |
1802 |
|
|
-0.09 (Appendix II lists a broad range of characters and symbols, relating their ISO names to the cor-) 72 474.9 P |
1803 |
|
|
-0.13 (responding character codes in common character sets. They allow authors to include accented) 72 460.9 P |
1804 |
|
|
(characters in 7-bit ASCII documents. Some other useful entity de\336nitions are:) 72 446.9 T |
1805 |
|
|
2 10 Q |
1806 |
|
|
(–) 108 427.9 T |
1807 |
|
|
0 12 Q |
1808 |
|
|
(en dash \050half the width of an em unit\051) 180 427.9 T |
1809 |
|
|
2 10 Q |
1810 |
|
|
(—) 108 413.9 T |
1811 |
|
|
0 12 Q |
1812 |
|
|
(em dash \050equal to width of an \322m\323 character\051) 180 413.9 T |
1813 |
|
|
2 10 Q |
1814 |
|
|
( ) 108 399.9 T |
1815 |
|
|
0 12 Q |
1816 |
|
|
(en space) 180 399.9 T |
1817 |
|
|
2 10 Q |
1818 |
|
|
( ) 108 385.9 T |
1819 |
|
|
0 12 Q |
1820 |
|
|
(em space) 180 385.9 T |
1821 |
|
|
2 10 Q |
1822 |
|
|
( ) 108 371.9 T |
1823 |
|
|
0 12 Q |
1824 |
|
|
(non breaking space) 180 371.9 T |
1825 |
|
|
2 10 Q |
1826 |
|
|
(­) 108 357.9 T |
1827 |
|
|
0 12 Q |
1828 |
|
|
(soft hyphen \050normally invisible\051) 180 357.9 T |
1829 |
|
|
2 10 Q |
1830 |
|
|
(©) 108 343.9 T |
1831 |
|
|
0 12 Q |
1832 |
|
|
(copyright sign) 180 343.9 T |
1833 |
|
|
0 14 Q |
1834 |
|
|
(\251) 251.96 343.9 T |
1835 |
|
|
2 10 Q |
1836 |
|
|
(™) 108 329.9 T |
1837 |
|
|
0 12 Q |
1838 |
|
|
(trade mark sign) 180 329.9 T |
1839 |
|
|
0 14 Q |
1840 |
|
|
(\252) 257.61 329.9 T |
1841 |
|
|
2 10 Q |
1842 |
|
|
(®) 108 315.9 T |
1843 |
|
|
0 12 Q |
1844 |
|
|
(registered sign) 180 315.9 T |
1845 |
|
|
0 14 Q |
1846 |
|
|
(\250) 253.28 315.9 T |
1847 |
|
|
0 12 Q |
1848 |
|
|
-0.28 (There are a lar) 72 296.9 P |
1849 |
|
|
-0.28 (ge number of entities de\336ned by the ISO, covering most languages and symbols) 140.53 296.9 P |
1850 |
|
|
-0.37 (for publishing and mathematics. Requiring all browsers to support these would be impractical,) 72 282.9 P |
1851 |
|
|
(e.g. how should a dumb terminal show such symbols. In some cases there will be accepted) 72 268.9 T |
1852 |
|
|
-0.15 (ways of mapping them to normal characters, e.g.) 72 254.9 P |
1853 |
|
|
5 14 Q |
1854 |
|
|
-0.17 (\276) 307.64 254.9 P |
1855 |
|
|
0 12 Q |
1856 |
|
|
-0.15 ( as) 317.74 254.9 P |
1857 |
|
|
5 F |
1858 |
|
|
-0.15 (ae) 333.43 254.9 P |
1859 |
|
|
0 F |
1860 |
|
|
-0.15 (and) 347.6 254.9 P |
1861 |
|
|
5 14 Q |
1862 |
|
|
-0.17 (\217) 367.77 254.9 P |
1863 |
|
|
0 12 Q |
1864 |
|
|
-0.15 (as) 376.83 254.9 P |
1865 |
|
|
5 F |
1866 |
|
|
-0.15 ( e) 386.82 254.9 P |
1867 |
|
|
0 F |
1868 |
|
|
-0.15 (. Perhaps the safest recom-) 395 254.9 P |
1869 |
|
|
-0.29 (mendation is that where authors need to use a specialised character or symbol, they should use) 72 240.9 P |
1870 |
|
|
(ISO entity names rather than inventing their own. Browsers should leave unrecognised entity) 72 226.9 T |
1871 |
|
|
(names untranslated.) 72 212.9 T |
1872 |
|
|
(In some cases it is useful to specify the language used in a given element, with the) 72 193.9 T |
1873 |
|
|
2 10 Q |
1874 |
|
|
(LANG) 469.73 193.9 T |
1875 |
|
|
0 12 Q |
1876 |
|
|
(attribute. The ISO de\336nes abbreviations for most languages, e.g. FR for french as in:) 72 179.9 T |
1877 |
|
|
2 10 Q |
1878 |
|
|
(<Q LANG=\323FR\323>Je m\325aveugle.</Q>) 72 165.9 T |
1879 |
|
|
0 12 Q |
1880 |
|
|
(. This attribute permits language dependent layout and) 251.9 165.9 T |
1881 |
|
|
(hyphenation decisions, e.g. Hebrew uses right to left word order) 72 151.9 T |
1882 |
|
|
(.) 379.11 151.9 T |
1883 |
|
|
-0.39 (T) 72 132.9 P |
1884 |
|
|
-0.39 (o allow SGML parsers to recognise entity names, authors should declare them before use, for) 78.49 132.9 P |
1885 |
|
|
(example:) 72 118.9 T |
1886 |
|
|
FMENDPAGE |
1887 |
|
|
%%EndPage: "6" 11 |
1888 |
|
|
%%Page: "7" 11 |
1889 |
|
|
595.3 841.9 0 FMBEGINPAGE |
1890 |
|
|
0 10 Q |
1891 |
|
|
0 X |
1892 |
|
|
0 K |
1893 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
1894 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
1895 |
|
|
(7) 295.15 70.23 T |
1896 |
|
|
2 F |
1897 |
|
|
(<!ENTITY % ISOcyr1 PUBLIC \323ISO 8879-1986//ENTITIES Russian Cyrillic/EN\323>) 90 763.23 T |
1898 |
|
|
(%ISOcyr1;) 90 751.23 T |
1899 |
|
|
0 12 Q |
1900 |
|
|
(This introduces ISOcyr1 as a local name for the ISO public identi\336er for the cyrillic alphabet) 72 732.9 T |
1901 |
|
|
(and then includes the associated set of entity de\336nitions as part of the current document. This) 72 718.9 T |
1902 |
|
|
(declaration is unnecessary for entities de\336ned within the HTML+ DTD.) 72 704.9 T |
1903 |
|
|
1 F |
1904 |
|
|
(5.2) 72 676.9 T |
1905 |
|
|
(Hypertext Links) 99 676.9 T |
1906 |
|
|
0 F |
1907 |
|
|
(HTML+ allows authors to embed hypertext links into the document text. In a browser this) 72 657.9 T |
1908 |
|
|
(might look to the reader like:) 72 643.9 T |
1909 |
|
|
2 10 Q |
1910 |
|
|
(Links are def) 90 626.23 T |
1911 |
|
|
(ined with the) 167.96 626.23 T |
1912 |
|
|
281.89 625.41 251.91 625.41 2 L |
1913 |
|
|
4 K |
1914 |
|
|
V |
1915 |
|
|
0.4 H |
1916 |
|
|
0 Z |
1917 |
|
|
N |
1918 |
|
|
6 F |
1919 |
|
|
(A tag) 251.91 626.23 T |
1920 |
|
|
2 F |
1921 |
|
|
0 K |
1922 |
|
|
(. HTML+ supports a number of) 281.89 626.23 T |
1923 |
|
|
515.77 625.41 455.8 625.41 2 L |
1924 |
|
|
4 K |
1925 |
|
|
V |
1926 |
|
|
N |
1927 |
|
|
6 F |
1928 |
|
|
(different) 455.8 626.23 T |
1929 |
|
|
149.97 613.41 90 613.41 2 L |
1930 |
|
|
V |
1931 |
|
|
N |
1932 |
|
|
(link types) 90 614.23 T |
1933 |
|
|
2 F |
1934 |
|
|
0 K |
1935 |
|
|
(.) 149.97 614.23 T |
1936 |
|
|
0 12 Q |
1937 |
|
|
-0.36 (Clicking on a link will normally cause the browser to retrieve the linked document and display) 72 595.9 P |
1938 |
|
|
(it in place of the current one. This example is represented by the following piece of HTML+) 72 581.9 T |
1939 |
|
|
2 10 Q |
1940 |
|
|
(Links are def) 90 564.23 T |
1941 |
|
|
(ined with the <a href=\323#z1\323>A tag</a>. HTML+ supports a) 167.96 564.23 T |
1942 |
|
|
(number of <a href=\323links.html\323>different link types.) 90 552.23 T |
1943 |
|
|
0 12 Q |
1944 |
|
|
(The \336rst link is to an anchor named \322z1\323 in the current document \050using an) 72 533.9 T |
1945 |
|
|
2 10 Q |
1946 |
|
|
(ID) 434.74 533.9 T |
1947 |
|
|
0 12 Q |
1948 |
|
|
( attribute on) 446.73 533.9 T |
1949 |
|
|
-0.08 (some element\051. The second is to a \336le named \322links.html\323 in the same directory as the current) 72 519.9 P |
1950 |
|
|
(document. The link caption is the text between the start and end tags. The) 72 505.9 T |
1951 |
|
|
2 10 Q |
1952 |
|
|
(HREF) 428.42 505.9 T |
1953 |
|
|
0 12 Q |
1954 |
|
|
( attribute) 452.41 505.9 T |
1955 |
|
|
(de\336nes the link destination using the URL or URN notations. This may be abbreviated in cer-) 72 491.9 T |
1956 |
|
|
(tain circumstances using relative URLs. The link should be rendered in a clearly distinguisha-) 72 477.9 T |
1957 |
|
|
(ble way) 72 463.9 T |
1958 |
|
|
(, e.g. as a raised button, or with underlined text in a particular color or emphasis. For) 108.86 463.9 T |
1959 |
|
|
(displays without pointing devices, it is suggested that the link is indicated with a reference) 72 449.9 T |
1960 |
|
|
(number in square brackets after the caption, which the reader enters to follow the link. Note) 72 435.9 T |
1961 |
|
|
(that it is illegal for anchors to include headers, paragraphs, lists etc. The anchor text is) 72 421.9 T |
1962 |
|
|
(restricted to normal text with emphasis and inline images.) 72 407.9 T |
1963 |
|
|
(The A element has several optional attributes:) 72 388.9 T |
1964 |
|
|
2 10 Q |
1965 |
|
|
(ID) 72 369.9 T |
1966 |
|
|
0 12 Q |
1967 |
|
|
(This can be used to de\336ne a unique identi\336er for the text contained by the A) 144.17 369.9 T |
1968 |
|
|
(element. Another document can then make a reference to this by putting the) 146.17 355.9 T |
1969 |
|
|
(identi\336er after the URL for this document, separated by a hash sign. The) 146.17 341.9 T |
1970 |
|
|
2 10 Q |
1971 |
|
|
(ID) 496.91 341.9 T |
1972 |
|
|
0 12 Q |
1973 |
|
|
(attribute replaces the) 146.17 327.9 T |
1974 |
|
|
2 10 Q |
1975 |
|
|
(NAME) 249.08 327.9 T |
1976 |
|
|
0 12 Q |
1977 |
|
|
( attribute in HTML.) 273.07 327.9 T |
1978 |
|
|
2 10 Q |
1979 |
|
|
(HREF) 72 308.9 T |
1980 |
|
|
0 12 Q |
1981 |
|
|
(This speci\336es a URL or URN of a linked document which will be retrieved) 144.17 308.9 T |
1982 |
|
|
(when the user clicks on the anchor) 146.17 294.9 T |
1983 |
|
|
(\325) 312.48 294.9 T |
1984 |
|
|
(s label.) 315.81 294.9 T |
1985 |
|
|
2 10 Q |
1986 |
|
|
(HREF=#) 352.79 294.9 T |
1987 |
|
|
6 F |
1988 |
|
|
(id) 388.77 294.9 T |
1989 |
|
|
0 12 Q |
1990 |
|
|
( can be used for links to) 400.76 294.9 T |
1991 |
|
|
(other parts of the same document.) 146.17 280.9 T |
1992 |
|
|
2 10 Q |
1993 |
|
|
(REL) 72 261.9 T |
1994 |
|
|
0 12 Q |
1995 |
|
|
(The relationship the linked document has to this one.) 144.17 261.9 T |
1996 |
|
|
2 10 Q |
1997 |
|
|
(REL=Subdocument) 401.34 261.9 T |
1998 |
|
|
0 12 Q |
1999 |
|
|
( is) 491.29 261.9 T |
2000 |
|
|
-0.25 (used to break long documents into smaller ones. This importance of this partic-) 146.17 247.9 P |
2001 |
|
|
(ular attribute value is explained in section 14.) 146.17 233.9 T |
2002 |
|
|
2 10 Q |
2003 |
|
|
(REV) 72 214.9 T |
2004 |
|
|
0 12 Q |
2005 |
|
|
(The reverse relationship type, and the inverse of) 144.17 214.9 T |
2006 |
|
|
2 10 Q |
2007 |
|
|
(REL) 378.31 214.9 T |
2008 |
|
|
0 12 Q |
2009 |
|
|
(.) 396.3 214.9 T |
2010 |
|
|
2 10 Q |
2011 |
|
|
(EFFECT) 72 195.9 T |
2012 |
|
|
0 12 Q |
2013 |
|
|
-0.51 (This determines how the browser displays the linked document when following) 144.17 195.9 P |
2014 |
|
|
-0.05 (the link.) 146.17 181.9 P |
2015 |
|
|
2 10 Q |
2016 |
|
|
-0.11 (EFFECT=Replace) 188.37 181.9 P |
2017 |
|
|
0 12 Q |
2018 |
|
|
-0.05 ( causes the browser to replace the current document) 272.33 181.9 P |
2019 |
|
|
(with the linked one;) 146.17 167.9 T |
2020 |
|
|
2 10 Q |
2021 |
|
|
(EFFECT=NEW) 244.78 167.9 T |
2022 |
|
|
0 12 Q |
2023 |
|
|
( results in the linked document being shown) 304.74 167.9 T |
2024 |
|
|
(in a new window \050if practical\051; and) 146.17 153.9 T |
2025 |
|
|
2 10 Q |
2026 |
|
|
(EFFECT=OVERLAY) 317.7 153.9 T |
2027 |
|
|
0 12 Q |
2028 |
|
|
( causes the linked docu-) 401.65 153.9 T |
2029 |
|
|
(ment to be shown in a pop-up window) 146.17 139.9 T |
2030 |
|
|
(, as used by the Microsoft W) 329.61 139.9 T |
2031 |
|
|
(indows) 467.36 139.9 T |
2032 |
|
|
(Help system.) 146.17 125.9 T |
2033 |
|
|
FMENDPAGE |
2034 |
|
|
%%EndPage: "7" 12 |
2035 |
|
|
%%Page: "8" 12 |
2036 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2037 |
|
|
0 10 Q |
2038 |
|
|
0 X |
2039 |
|
|
0 K |
2040 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2041 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2042 |
|
|
(8) 295.15 70.23 T |
2043 |
|
|
2 F |
2044 |
|
|
(PRINT) 72 761.9 T |
2045 |
|
|
0 12 Q |
2046 |
|
|
-0.17 (This attribute makes it easy for users to print of) 144.17 761.9 P |
2047 |
|
|
-0.17 (f the current document and rele-) 369.94 761.9 P |
2048 |
|
|
-0.48 (vant parts.) 146.17 747.9 P |
2049 |
|
|
2 10 Q |
2050 |
|
|
-0.96 (PRINT=REFERENCE) 198.17 747.9 P |
2051 |
|
|
0 12 Q |
2052 |
|
|
-0.48 ( \050the default\051 treats the link as a reference, i.e. the) 288.12 747.9 P |
2053 |
|
|
(URL is given as a footnote;) 146.17 733.9 T |
2054 |
|
|
2 10 Q |
2055 |
|
|
(PRINT=FOOTNOTE) 281.42 733.9 T |
2056 |
|
|
0 12 Q |
2057 |
|
|
( prints the linked document as a) 365.37 733.9 T |
2058 |
|
|
(footnote;) 146.17 719.9 T |
2059 |
|
|
2 10 Q |
2060 |
|
|
(PRINT=SIDEBAR) 192.47 719.9 T |
2061 |
|
|
0 12 Q |
2062 |
|
|
( prints the linked document as a sidebar; and) 270.43 719.9 T |
2063 |
|
|
2 10 Q |
2064 |
|
|
(PRINT=SECTION) 146.17 705.9 T |
2065 |
|
|
0 12 Q |
2066 |
|
|
( prints the linked document as a follow on section. Use) 224.12 705.9 T |
2067 |
|
|
2 10 Q |
2068 |
|
|
(PRINT=SILENT) 146.17 691.9 T |
2069 |
|
|
0 12 Q |
2070 |
|
|
( when you don\325) 218.13 691.9 T |
2071 |
|
|
(t want the link referenced or printed out) 292.86 691.9 T |
2072 |
|
|
0 10 Q |
2073 |
|
|
(1) 483.71 696.7 T |
2074 |
|
|
0 12 Q |
2075 |
|
|
(.) 488.71 691.9 T |
2076 |
|
|
2 10 Q |
2077 |
|
|
(TITLE) 72 672.9 T |
2078 |
|
|
0 12 Q |
2079 |
|
|
(De\336nes the title to use when the linked document is otherwise untitled.) 144.17 672.9 T |
2080 |
|
|
2 10 Q |
2081 |
|
|
(TYPE) 72 653.9 T |
2082 |
|
|
0 12 Q |
2083 |
|
|
-0.23 (The MIME content type of the linked document - for use in providing presenta-) 144.17 653.9 P |
2084 |
|
|
(tion cues only) 146.17 639.9 T |
2085 |
|
|
(, as it could easily become out of date.) 212.68 639.9 T |
2086 |
|
|
2 10 Q |
2087 |
|
|
(SIZE) 72 620.9 T |
2088 |
|
|
0 12 Q |
2089 |
|
|
(The size in bytes for the linked document. This should only be used as a guide) 144.17 620.9 T |
2090 |
|
|
(to progress in retrieving documents, as it is likely to get out of step with) 146.17 606.9 T |
2091 |
|
|
(changes to the tar) 146.17 592.9 T |
2092 |
|
|
(get document.) 230.22 592.9 T |
2093 |
|
|
2 10 Q |
2094 |
|
|
(METHODS) 72 573.9 T |
2095 |
|
|
0 12 Q |
2096 |
|
|
(This is a comma separated list of HTTP methods supported by the linked) 144.17 573.9 T |
2097 |
|
|
-0.1 (object. The browser might choose a dif) 146.17 559.9 P |
2098 |
|
|
-0.1 (ferent way of rendering the link for say) 332.9 559.9 P |
2099 |
|
|
(searchable objects.) 146.17 545.9 T |
2100 |
|
|
2 10 Q |
2101 |
|
|
(SHAPE) 72 526.9 T |
2102 |
|
|
0 12 Q |
2103 |
|
|
(This is used to de\336ne shaped buttons on top of images or \336gures, and is) 144.17 526.9 T |
2104 |
|
|
(explained later on.) 146.17 512.9 T |
2105 |
|
|
-0.03 (Y) 72 493.9 P |
2106 |
|
|
-0.03 (ou can also use the LINK element at the start of the document to de\336ne document-wide rela-) 79.46 493.9 P |
2107 |
|
|
(tionships with other documents, e.g. a link to a table of contents. This is described later on.) 72 479.9 T |
2108 |
|
|
1 F |
2109 |
|
|
(5.3) 72 451.9 T |
2110 |
|
|
(Character Emphasis) 99 451.9 T |
2111 |
|
|
0 F |
2112 |
|
|
-0.18 (There has been considerable discussion on how to represent character emphasis. The previous) 72 432.9 P |
2113 |
|
|
(draft of HTML+ used a single element to handle all forms with a role attribute for the logical) 72 418.9 T |
2114 |
|
|
-0.44 (role, and other attributes for providing hints as to how to render the emphasis. This mechanism) 72 404.9 P |
2115 |
|
|
(was seen as being overloaded and prompted the use of separate elements in the current draft.) 72 390.9 T |
2116 |
|
|
1 F |
2117 |
|
|
(5.4) 72 362.9 T |
2118 |
|
|
(Presentation Only T) 99 362.9 T |
2119 |
|
|
(ags) 211.41 362.9 T |
2120 |
|
|
0 F |
2121 |
|
|
0 (In many cases it is convenient to indicate directly how the text is to be rendered, e.g. as italic,) 72 343.9 P |
2122 |
|
|
(bold, underline or strike-through:) 72 329.9 T |
2123 |
|
|
2 10 Q |
2124 |
|
|
(<I>italic text</I>) 108 310.9 T |
2125 |
|
|
4 12 Q |
2126 |
|
|
(italic text) 288 310.9 T |
2127 |
|
|
2 10 Q |
2128 |
|
|
(<B>bold text</B>) 108 296.9 T |
2129 |
|
|
5 12 Q |
2130 |
|
|
(bold text) 288 296.9 T |
2131 |
|
|
2 10 Q |
2132 |
|
|
(<U>underlined text</U>) 108 282.9 T |
2133 |
|
|
360.28 281.59 288 281.59 2 L |
2134 |
|
|
V |
2135 |
|
|
0.59 H |
2136 |
|
|
0 Z |
2137 |
|
|
N |
2138 |
|
|
0 12 Q |
2139 |
|
|
(underlined text) 288 282.9 T |
2140 |
|
|
2 10 Q |
2141 |
|
|
(<S>strike through</S>) 108 268.9 T |
2142 |
|
|
354.96 271.29 288 271.29 2 L |
2143 |
|
|
V |
2144 |
|
|
N |
2145 |
|
|
0 12 Q |
2146 |
|
|
(strike through) 288 268.9 T |
2147 |
|
|
2 10 Q |
2148 |
|
|
(<SUP>superscript</SUP>) 108 254.9 T |
2149 |
|
|
0 F |
2150 |
|
|
(superscript) 288 259.7 T |
2151 |
|
|
2 F |
2152 |
|
|
(<SUB>subscript</SUB>) 108 240.9 T |
2153 |
|
|
0 F |
2154 |
|
|
(subscript) 288 237.9 T |
2155 |
|
|
2 F |
2156 |
|
|
(<TT>f) 108 226.9 T |
2157 |
|
|
(ixed pitch</TT>) 137.98 226.9 T |
2158 |
|
|
(f) 288 226.9 T |
2159 |
|
|
(ixed pitch \050TT for Teletype\051) 294 226.9 T |
2160 |
|
|
0 12 Q |
2161 |
|
|
(These tags may be nested to combine ef) 72 207.9 T |
2162 |
|
|
(fects, e.g. bold-italic-\336xed-pitch text, and should be) 263.31 207.9 T |
2163 |
|
|
(considered as hints rather than as binding obligations on the browser) 72 193.9 T |
2164 |
|
|
(, e.g.) 400.63 193.9 T |
2165 |
|
|
2 10 Q |
2166 |
|
|
(Some <B><I><TT>bold italic f) 90 176.23 T |
2167 |
|
|
(ixed pitch text</TT></I></B>.) 257.91 176.23 T |
2168 |
|
|
0 12 Q |
2169 |
|
|
(which is rendered as: Some) 72 157.9 T |
2170 |
|
|
7 F |
2171 |
|
|
(bold italic f) 206.9 157.9 T |
2172 |
|
|
(ixed pitch text) 300.45 157.9 T |
2173 |
|
|
0 F |
2174 |
|
|
(.) 408.39 157.9 T |
2175 |
|
|
72 132 523.3 146.98 C |
2176 |
|
|
81 144.96 225 144.96 2 L |
2177 |
|
|
0.5 H |
2178 |
|
|
2 Z |
2179 |
|
|
0 X |
2180 |
|
|
0 K |
2181 |
|
|
N |
2182 |
|
|
0 0 595.3 841.9 C |
2183 |
|
|
0 10 Q |
2184 |
|
|
0 X |
2185 |
|
|
0 K |
2186 |
|
|
-0.19 (1. Browsers might want to count the number of links on a page and switch to the silent mode if there are) 90 125.34 P |
2187 |
|
|
(too many to reference in footnotes.) 90 113.34 T |
2188 |
|
|
FMENDPAGE |
2189 |
|
|
%%EndPage: "8" 13 |
2190 |
|
|
%%Page: "9" 13 |
2191 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2192 |
|
|
0 10 Q |
2193 |
|
|
0 X |
2194 |
|
|
0 K |
2195 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2196 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2197 |
|
|
(9) 295.15 70.23 T |
2198 |
|
|
1 12 Q |
2199 |
|
|
(5.5) 72 761.9 T |
2200 |
|
|
(Generic Emphasis) 99 761.9 T |
2201 |
|
|
0 F |
2202 |
|
|
-0.44 (These are some tags for indicating a level of emphasis without committing oneself to how they) 72 742.9 P |
2203 |
|
|
(should be rendered:) 72 728.9 T |
2204 |
|
|
2 10 Q |
2205 |
|
|
(<EM>normal emphasis</EM>) 108 709.9 T |
2206 |
|
|
0 12 Q |
2207 |
|
|
(typically italic) 342 709.9 T |
2208 |
|
|
2 10 Q |
2209 |
|
|
(<STRONG>strong emphasis</STRONG>) 108 695.9 T |
2210 |
|
|
0 12 Q |
2211 |
|
|
(typically bold) 342 695.9 T |
2212 |
|
|
1 F |
2213 |
|
|
(5.6) 72 667.9 T |
2214 |
|
|
(Logical Emphasis) 99 667.9 T |
2215 |
|
|
0 F |
2216 |
|
|
-0.18 (These tags indicate the role of the marked text, e.g. bibliographic references. By using a stand-) 72 648.9 P |
2217 |
|
|
-0.22 (ard way of marking up text, it becomes possible to automatically index such references. There) 72 634.9 P |
2218 |
|
|
(are a potentially huge number of dif) 72 620.9 T |
2219 |
|
|
(ferent distinctions that could be made, and the set given) 244.32 620.9 T |
2220 |
|
|
-0.24 (below is intentionally minimalistic. Discussion is welcomed on just which elements should be) 72 606.9 P |
2221 |
|
|
(included in HTML+ given its intended role as a delivery format for hypertext documents:) 72 592.9 T |
2222 |
|
|
2 10 Q |
2223 |
|
|
(q) 108 573.9 T |
2224 |
|
|
0 12 Q |
2225 |
|
|
(a short quotation which can be included inline,) 216 573.9 T |
2226 |
|
|
(e.g.) 216 559.9 T |
2227 |
|
|
3 10 Q |
2228 |
|
|
( <q>to be or not to be, that is the question</q>) 233.32 559.9 T |
2229 |
|
|
0 12 Q |
2230 |
|
|
(use) 216 545.9 T |
2231 |
|
|
3 10 Q |
2232 |
|
|
( <q> and </q>) 231.99 545.9 T |
2233 |
|
|
0 12 Q |
2234 |
|
|
( in place of double quote marks.) 294.23 545.9 T |
2235 |
|
|
2 10 Q |
2236 |
|
|
(cite) 108 526.9 T |
2237 |
|
|
0 12 Q |
2238 |
|
|
(citation, e.g.) 216 526.9 T |
2239 |
|
|
3 10 Q |
2240 |
|
|
(<cite>Festinger) 278.29 526.9 T |
2241 |
|
|
(, L.\0501957\051, <I>A Theory) 346.63 526.9 T |
2242 |
|
|
(of Cognitive Dissonance</I>, Stanford.</cite>) 216 512.9 T |
2243 |
|
|
2 F |
2244 |
|
|
(person) 108 493.9 T |
2245 |
|
|
0 12 Q |
2246 |
|
|
(proper names, e.g.) 216 493.9 T |
2247 |
|
|
3 10 Q |
2248 |
|
|
(<person>Albert Einstein</person>) 307.26 493.9 T |
2249 |
|
|
2 F |
2250 |
|
|
(acronym) 108 479.9 T |
2251 |
|
|
0 12 Q |
2252 |
|
|
(acronyms e.g) 216 479.9 T |
2253 |
|
|
3 10 Q |
2254 |
|
|
(<acronym>NA) 282.95 479.9 T |
2255 |
|
|
(T) 346.08 479.9 T |
2256 |
|
|
(O</acronym>) 352.01 479.9 T |
2257 |
|
|
2 F |
2258 |
|
|
(abbrev) 108 465.9 T |
2259 |
|
|
0 12 Q |
2260 |
|
|
(abbreviations, e.g.) 216 465.9 T |
2261 |
|
|
3 10 Q |
2262 |
|
|
(<abbrev>v) 306.93 465.9 T |
2263 |
|
|
(. aux</abbrev>) 353.42 465.9 T |
2264 |
|
|
2 F |
2265 |
|
|
(cmd) 108 451.9 T |
2266 |
|
|
0 12 Q |
2267 |
|
|
(command name, e.g. chmod in Unix) 216 451.9 T |
2268 |
|
|
2 10 Q |
2269 |
|
|
(arg) 108 437.9 T |
2270 |
|
|
0 12 Q |
2271 |
|
|
(command ar) 216 437.9 T |
2272 |
|
|
(gument, e.g.) 275.4 437.9 T |
2273 |
|
|
3 10 Q |
2274 |
|
|
(<arg>-s</arg>) 337.7 437.9 T |
2275 |
|
|
2 F |
2276 |
|
|
(kbd) 108 423.9 T |
2277 |
|
|
0 12 Q |
2278 |
|
|
(something the use would have to type) 216 423.9 T |
2279 |
|
|
2 10 Q |
2280 |
|
|
(var) 108 409.9 T |
2281 |
|
|
0 12 Q |
2282 |
|
|
(named place holder) 216 409.9 T |
2283 |
|
|
(, e.g.) 309.44 409.9 T |
2284 |
|
|
3 10 Q |
2285 |
|
|
(<var>\336lename</var>) 335.75 409.9 T |
2286 |
|
|
2 F |
2287 |
|
|
(dfn) 108 395.9 T |
2288 |
|
|
0 12 Q |
2289 |
|
|
(de\336ning instance of a term) 216 395.9 T |
2290 |
|
|
2 10 Q |
2291 |
|
|
(code) 108 381.9 T |
2292 |
|
|
0 12 Q |
2293 |
|
|
(code example - usually shown in \336xed pitch font) 216 381.9 T |
2294 |
|
|
2 10 Q |
2295 |
|
|
(samp) 108 367.9 T |
2296 |
|
|
0 12 Q |
2297 |
|
|
(sequence of literal characters usually in variable pitch font) 216 367.9 T |
2298 |
|
|
(All these tags require a matching closing tag like the other emphasis elements, e.g.) 72 348.9 T |
2299 |
|
|
3 10 Q |
2300 |
|
|
(<cmd>cmp</cmd> [<arg>-l</arg>] [<arg>-s</arg>] <var>\336le1</var> <var>\336le2</var>) 81 331.23 T |
2301 |
|
|
1 12 Q |
2302 |
|
|
(5.7) 72 303.9 T |
2303 |
|
|
(Extending the Set of Logical Roles) 99 303.9 T |
2304 |
|
|
0 F |
2305 |
|
|
(When translating from other SGML-based formats, documents may include non-standard ele-) 72 284.9 T |
2306 |
|
|
(ments e.g.) 72 270.9 T |
2307 |
|
|
2 10 Q |
2308 |
|
|
(PROPNAME) 123.97 270.9 T |
2309 |
|
|
0 12 Q |
2310 |
|
|
( for proper names. HTML+ browsers will normally ignore such markup) 171.94 270.9 T |
2311 |
|
|
-0.13 (and process their contents as if these tags weren\325) 72 256.9 P |
2312 |
|
|
-0.13 (t present. The) 304.59 256.9 P |
2313 |
|
|
2 10 Q |
2314 |
|
|
-0.25 (RENDER) 372.83 256.9 P |
2315 |
|
|
0 12 Q |
2316 |
|
|
-0.13 ( element can be used to) 408.81 256.9 P |
2317 |
|
|
(tell the browser how to render such tags, e.g.) 72 242.9 T |
2318 |
|
|
2 10 Q |
2319 |
|
|
(<RENDER TAG=\323PROPNAME\323 STYLE=\323I\323>) 90 225.23 T |
2320 |
|
|
0 12 Q |
2321 |
|
|
(The) 72 206.9 T |
2322 |
|
|
2 10 Q |
2323 |
|
|
(STYLE) 93.65 206.9 T |
2324 |
|
|
0 12 Q |
2325 |
|
|
( attribute is a comma separated list of presentation tag names, i.e. one or more) 123.63 206.9 T |
2326 |
|
|
-0.24 (names from the list:) 72 192.9 P |
2327 |
|
|
2 10 Q |
2328 |
|
|
-0.48 (I) 169.65 192.9 P |
2329 |
|
|
0 12 Q |
2330 |
|
|
-0.24 (,) 175.64 192.9 P |
2331 |
|
|
2 10 Q |
2332 |
|
|
-0.48 (B) 181.4 192.9 P |
2333 |
|
|
0 12 Q |
2334 |
|
|
-0.24 (,) 187.4 192.9 P |
2335 |
|
|
2 10 Q |
2336 |
|
|
-0.48 (U) 193.15 192.9 P |
2337 |
|
|
0 12 Q |
2338 |
|
|
-0.24 (,) 199.15 192.9 P |
2339 |
|
|
2 10 Q |
2340 |
|
|
-0.48 (S) 204.91 192.9 P |
2341 |
|
|
0 12 Q |
2342 |
|
|
-0.24 (,) 210.9 192.9 P |
2343 |
|
|
2 10 Q |
2344 |
|
|
-0.48 (SUP) 216.66 192.9 P |
2345 |
|
|
0 12 Q |
2346 |
|
|
-0.24 (,) 233.32 192.9 P |
2347 |
|
|
2 10 Q |
2348 |
|
|
-0.48 (SUB) 239.07 192.9 P |
2349 |
|
|
0 12 Q |
2350 |
|
|
-0.24 (,) 257.06 192.9 P |
2351 |
|
|
2 10 Q |
2352 |
|
|
-0.48 (TT) 262.82 192.9 P |
2353 |
|
|
0 12 Q |
2354 |
|
|
-0.24 (. Include) 273.93 192.9 P |
2355 |
|
|
2 10 Q |
2356 |
|
|
-0.48 (P) 318.41 192.9 P |
2357 |
|
|
0 12 Q |
2358 |
|
|
-0.24 ( in the list of styles if the element needs a) 324.4 192.9 P |
2359 |
|
|
(paragraph break. Keeping non-standard markup in HTML+ documents may be useful for) 72 178.9 T |
2360 |
|
|
(indexing purposes. Note that the) 72 164.9 T |
2361 |
|
|
2 10 Q |
2362 |
|
|
(RENDER) 230.57 164.9 T |
2363 |
|
|
0 12 Q |
2364 |
|
|
( element isn\325) 266.55 164.9 T |
2365 |
|
|
(t meant to apply retrospectively) 328.29 164.9 T |
2366 |
|
|
(.) 479.4 164.9 T |
2367 |
|
|
FMENDPAGE |
2368 |
|
|
%%EndPage: "9" 14 |
2369 |
|
|
%%Page: "10" 14 |
2370 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2371 |
|
|
0 10 Q |
2372 |
|
|
0 X |
2373 |
|
|
0 K |
2374 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2375 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2376 |
|
|
(10) 292.65 70.23 T |
2377 |
|
|
1 12 Q |
2378 |
|
|
(5.8) 72 761.9 T |
2379 |
|
|
(Annotations) 99 761.9 T |
2380 |
|
|
0 F |
2381 |
|
|
(Authors can include annotations which act to draw the readers attention or which provide) 72 742.9 T |
2382 |
|
|
(some additional comment on the main text of the paragraph. There are two types:) 72 728.9 T |
2383 |
|
|
2 10 Q |
2384 |
|
|
(footnote) 108 709.9 T |
2385 |
|
|
0 12 Q |
2386 |
|
|
(for additional information on some point) 216 709.9 T |
2387 |
|
|
2 10 Q |
2388 |
|
|
(margin) 108 695.9 T |
2389 |
|
|
0 12 Q |
2390 |
|
|
(attention getter for this paragraph) 216 695.9 T |
2391 |
|
|
-0.43 (When printed out, these annotations appear as footnotes or mar) 72 676.9 P |
2392 |
|
|
-0.43 (gin notes as their name implies,) 370.99 676.9 P |
2393 |
|
|
(e.g. <footnote>This is an example of a footnote</footnote>) 72 662.9 T |
2394 |
|
|
0 10 Q |
2395 |
|
|
(1) 357.21 667.7 T |
2396 |
|
|
0 12 Q |
2397 |
|
|
(. For on-line use, browsers may) 362.21 662.9 T |
2398 |
|
|
-0.09 (show the annotation by a hypertext button, e.g. a superscripted dingbat symbol or icon, which) 72 648.9 P |
2399 |
|
|
(when clicked reveals the annotation in a pop-up window) 72 634.9 T |
2400 |
|
|
(. Footnotes and mar) 342.36 634.9 T |
2401 |
|
|
(gins can contain) 437.42 634.9 T |
2402 |
|
|
(text with emphasis and images, but not other markup such as paragraphs, lists or tables. The) 72 620.9 T |
2403 |
|
|
2 10 Q |
2404 |
|
|
-0.4 (PANEL) 72 606.9 P |
2405 |
|
|
0 12 Q |
2406 |
|
|
-0.2 ( element in the previous draft has been dropped. Y) 101.98 606.9 P |
2407 |
|
|
-0.2 (ou can however) 341.46 606.9 P |
2408 |
|
|
-0.2 (, indicate that a hyper-) 416.52 606.9 P |
2409 |
|
|
(text link should be rendered as a sidebar when printed out.) 72 592.9 T |
2410 |
|
|
1 F |
2411 |
|
|
(5.9) 72 564.9 T |
2412 |
|
|
(Images) 99 564.9 T |
2413 |
|
|
0 F |
2414 |
|
|
(Images can be included as character like elements with text \337owing around the image, e.g.) 72 545.9 T |
2415 |
|
|
(This example is produced by the following piece of HTML+) 72 413.9 T |
2416 |
|
|
2 10 Q |
2417 |
|
|
(<p><img align=top src=\323http://spoof.cern.ch/people/tbl.gif\323> Before com-) 90 396.23 T |
2418 |
|
|
(ing to CERN, Tim worked on, among other things, document production and) 90 384.23 T |
2419 |
|
|
(text processing. He developed his f) 90 372.23 T |
2420 |
|
|
(irst hypertext system, \322Enquire\323, in) 299.89 372.23 T |
2421 |
|
|
(1980 for his own use \050although unaware of the existence of the term) 90 360.23 T |
2422 |
|
|
-0.45 (HyperText\051. With a background in text processing, real-time software and) 90 348.23 P |
2423 |
|
|
(communications, Tim decided that high energy physics needed a networked) 90 336.23 T |
2424 |
|
|
(hypertext system and CERN was an ideal site for the development of wide-) 90 324.23 T |
2425 |
|
|
(area hypertext ideas. Tim started the WorldWideWeb project at CERN in) 90 312.23 T |
2426 |
|
|
(1989. He wrote the application on the NeXT along with most of the commu-) 90 300.23 T |
2427 |
|
|
(nications software.) 90 288.23 T |
2428 |
|
|
0 12 Q |
2429 |
|
|
-0.22 (The) 72 269.9 P |
2430 |
|
|
2 10 Q |
2431 |
|
|
-0.44 (IMG) 93.43 269.9 P |
2432 |
|
|
0 12 Q |
2433 |
|
|
-0.22 ( element speci\336es an image via a) 111.42 269.9 P |
2434 |
|
|
2 10 Q |
2435 |
|
|
-0.44 (URL) 270.77 269.9 P |
2436 |
|
|
0 12 Q |
2437 |
|
|
-0.22 (. The) 288.76 269.9 P |
2438 |
|
|
2 10 Q |
2439 |
|
|
-0.44 (ALIGN=TOP) 315.96 269.9 P |
2440 |
|
|
0 12 Q |
2441 |
|
|
-0.22 ( attribute ensures that the top of) 369.93 269.9 P |
2442 |
|
|
-0.34 (the image is level with the top of the current text line. Y) 72 255.9 P |
2443 |
|
|
-0.34 (ou can also use) 335.49 255.9 P |
2444 |
|
|
2 10 Q |
2445 |
|
|
-0.69 (ALIGN=MIDDLE) 410.05 255.9 P |
2446 |
|
|
0 12 Q |
2447 |
|
|
-0.34 ( to align) 482.02 255.9 P |
2448 |
|
|
(the center of the image with that of the current text line, and) 72 241.9 T |
2449 |
|
|
2 10 Q |
2450 |
|
|
(ALIGN=BOTTOM) 363.12 241.9 T |
2451 |
|
|
0 12 Q |
2452 |
|
|
( to align the bot-) 435.08 241.9 T |
2453 |
|
|
(tom of the image with the bottom of the current text line. Browsers are not expected to apply) 72 227.9 T |
2454 |
|
|
-0.03 (text \337ow retrospectively) 72 213.9 P |
2455 |
|
|
-0.03 (, so using) 187.75 213.9 P |
2456 |
|
|
2 10 Q |
2457 |
|
|
-0.05 (ALIGN=MIDDLE) 236.32 213.9 P |
2458 |
|
|
0 12 Q |
2459 |
|
|
-0.03 ( and) 308.28 213.9 P |
2460 |
|
|
2 10 Q |
2461 |
|
|
-0.05 (ALIGN=BOTTOM) 331.54 213.9 P |
2462 |
|
|
0 12 Q |
2463 |
|
|
-0.03 ( may overwrite previous) 403.5 213.9 P |
2464 |
|
|
(lines of text. If the) 72 199.9 T |
2465 |
|
|
2 10 Q |
2466 |
|
|
(ALIGN) 163.27 199.9 T |
2467 |
|
|
0 12 Q |
2468 |
|
|
( attribute is missing then) 193.25 199.9 T |
2469 |
|
|
2 10 Q |
2470 |
|
|
(ALIGN=TOP) 314.2 199.9 T |
2471 |
|
|
0 12 Q |
2472 |
|
|
( is assumed.) 368.17 199.9 T |
2473 |
|
|
72 120 523.3 134.98 C |
2474 |
|
|
81 132.96 225 132.96 2 L |
2475 |
|
|
0.5 H |
2476 |
|
|
2 Z |
2477 |
|
|
0 X |
2478 |
|
|
0 K |
2479 |
|
|
N |
2480 |
|
|
0 0 595.3 841.9 C |
2481 |
|
|
0 10 Q |
2482 |
|
|
0 X |
2483 |
|
|
0 K |
2484 |
|
|
(1. This is an example of a footnote \050while not strictly accurate, this gives the general idea!\051.) 90 113.34 T |
2485 |
|
|
72 108 523.3 769.9 C |
2486 |
|
|
73.46 428.9 521.83 541.9 C |
2487 |
|
|
146.26 460.9 515.26 532.9 R |
2488 |
|
|
7 X |
2489 |
|
|
0 K |
2490 |
|
|
V |
2491 |
|
|
3 10 Q |
2492 |
|
|
0 X |
2493 |
|
|
(Before coming to CERN, T) 146.26 526.23 T |
2494 |
|
|
(im worked on, among other things, document produc-) 264.2 526.23 T |
2495 |
|
|
(tion and text processing. He developed his \336rst hypertext system, \322Enquire\323, in) 146.26 514.23 T |
2496 |
|
|
(1980 for his own use \050although unaware of the existence of the term HyperT) 146.26 502.23 T |
2497 |
|
|
(ext\051.) 481.8 502.23 T |
2498 |
|
|
(With a background in text processing, real-time software and communications,) 146.26 490.23 T |
2499 |
|
|
(T) 146.26 478.23 T |
2500 |
|
|
(im decided that high energy physics needed a networked hypertext system and) 152 478.23 T |
2501 |
|
|
(CERN was an ideal site for the development of wide-area hypertext ideas.T) 146.26 466.23 T |
2502 |
|
|
(im) 479.18 466.23 T |
2503 |
|
|
91.46 433.9 514.46 460.9 R |
2504 |
|
|
7 X |
2505 |
|
|
V |
2506 |
|
|
0 X |
2507 |
|
|
(started the W) 91.46 454.23 T |
2508 |
|
|
(orldWideW) 150.72 454.23 T |
2509 |
|
|
(eb project at CERN in 1989. He wrote the application on the NeXT) 199.41 454.23 T |
2510 |
|
|
(along with most of the communications software.) 91.46 442.23 T |
2511 |
|
|
%%BeginBinary: 9959 |
2512 |
|
|
64 89 45 63 0 91.46 469.9 |
2513 |
|
|
/red < |
2514 |
|
|
E0C0A08060402000E0C0A08060402000E0C0A08060402000E0C0A08060402000 |
2515 |
|
|
E0C0A08060402000E0C0A08060402000E0C0A08060402000E0C0A08060402000 |
2516 |
|
|
E007740B0D10181261651B694D6B5C6E2116561D46583B5E5170257653054263 |
2517 |
|
|
401F28263E4F48092A142C443967305A33724B23350E37542E3D6C491978A331 |
2518 |
|
|
6002C9EAEBEBE6E3ECC4EE99EEB3EDC8E3ACB577CC86DFA99578EAC455CDDAAF |
2519 |
|
|
65746C97875BC4B2EDE3DB7ADC9DDAC4A9D6C0A1EDCBB5BAEAA06789D6B382CC |
2520 |
|
|
B04CE78AC5FEFFFF000000000000000089000080FF4ACD798EFF61DF9CB7FF4F |
2521 |
|
|
D3869DFF40C67083FF4ED18299FF008A0000FF4DD08096006EE9AECC00FFFF00 |
2522 |
|
|
> store |
2523 |
|
|
/green < |
2524 |
|
|
E0E0E0E0E0E0E0E0C0C0C0C0C0C0C0C0A0A0A0A0A0A0A0A08080808080808080 |
2525 |
|
|
6060606060606060404040404040404020202020202020200000000000000000 |
2526 |
|
|
E049A64C4E515853969A5B9D859E92A260568D5C7F8E769388A363A88A487C98 |
2527 |
|
|
7B5E66647986804B6854697E749B6C9070A583617150738B6B78A08259AAF16E |
2528 |
|
|
9545DAE5E6E4E2E7E7A9E780E5A6E6B8E28DB661AE75D69D8566E2A748CBD595 |
2529 |
|
|
515B5D7B704EB0B0E9DCE26CD48BD2C287DAA085E6AAA7BCE692577DD29E68B1 |
2530 |
|
|
9541E498D400FF00FF00FF772E4DC443C9778BC5FF58D98FA8FF57D78BA3FF41 |
2531 |
|
|
C76F82FF3BC16679FF50D3859CFF43CA778CFF4CCF7E940063E09CB78C00FF00 |
2532 |
|
|
> store |
2533 |
|
|
/blue < |
2534 |
|
|
C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 |
2535 |
|
|
C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 |
2536 |
|
|
8046A74A4B4F5550979A599D839F92A25E548D5A7F8E749388A461A988457A98 |
2537 |
|
|
795C646377867F486652687C729C6B906EA6835F704D728B6976A18057ABFD6D |
2538 |
|
|
9542E7F4F5F1F6F8F2A9F171EDA6F4BFF779AB5BAF6ED6A08164ECA144DBD99D |
2539 |
|
|
4D545F6C654EBEA9F5E3F76DD581D4C56FF09670EDA9BAB1F692537AD7A45DC1 |
2540 |
|
|
7C40F8B4E10000FFFFFF009F3E67FF5ADF9EBADDFF59DA92ABFF53D4859CFF43 |
2541 |
|
|
C87185FF40C66F82FF4BCE7C92FF5AE09FBBFF49CC798E0054D5859CBB00FF00 |
2542 |
|
|
> store |
2543 |
|
|
BEGINBITMAPCOLORc |
2544 |
|
|
5 |
2545 |
|
|
O29A9AB49A9AB4B49AB49AB48C9AB4B4B4B4B4B49A9A9AB49AB4B48A8A88B48AB48888B4858A888A888E8E8E888E88888888848E848E888888888E848E848E8EF9&:%<+8*95 |
2546 |
|
|
B49A9AB4B485B4B4B4B49AB4B4B48A8A8888858A8A888A8A8888888E48E8E8E88A88E84A88E8E8EA8A88EA88E8E8E8E847#:$>#:-9r"8&8( |
2547 |
|
|
B4B4B4B48A9A9AB4B48A8AB48A8AB4B48A8A88888EA88E84A8A8A88EA8A8A8A8A8=$@$8'8.9$:#:" |
2548 |
|
|
8C8CB4B4B4888AB48A85B4B4B48A8A8E8A8A8A8A8AB4888A8E8EA8A88EA88E"9&:#8"85:";" |
2549 |
|
|
8C8C8C8C8CB48C8C9A@9A9A9AA9A9A99EACAE9EA9A9A9A9B4888AB49AA99A88A88A8E8EA8A8A8A8A88EA8A8$9"=58" |
2550 |
|
|
B4B48CB4C9AA9A996AEAEAFAFAF8FB7B794B7B7B7B78FAFBCA99AA9BCA7A7B69D9A8A8A8888888EA8#85;" |
2551 |
|
|
8C8CO B48C8C8C8C8CB48CB4A996AEAFB7B789A79BB2B2979F97978D8DA78D978DA7AFA697AF96AFAF9E9A85888E8E8E8E8E8%:58&8#8" |
2552 |
|
|
B48A8C8AE8C8CA996AEB79BB29BB2C0C0ADADC0B9B99FB297B2C0AD98BBBBBBA78FB7B6B7AFBCA99A85B8B8848E8E8E8E8E';&85 |
2553 |
|
|
8A8A8AB48C8CA996AFB79BKB2C0AD918B8BADADADADC0AD9898ADBBA4939998BB9595AD989897A78F9E9A84A8A88E8884A8A8A88E8EA88%:58#8" |
2554 |
|
|
8E8E8A8AO 9AA9AF92B2B2C0C0C0C09191B3ADADB38B8B95958BBBBB9599A2BABAA0A093BEBE93BEBBAD8DBC9A8EB88E84B8B8A8A8B8185 |
2555 |
|
|
B48A8A8A8AB4B4B4B4B4A98FB2B2B2C0KB3B3B3A3A38BA3A4BE95A4AB99BEA48B8B9593A09C9C9CA1BEBE93BEA4BBBD9D8686868384848E8E848E8E38"858( |
2556 |
|
|
8A8AB4B4B4B48C8C8C9AAFB2B2C091B0B0B3A3=A4A4A4A4BE93999393A4C09FC0C095A0C1C19C93BE95A495BEBB8D9E85B8B8848E8EA8A8,9%8#90;3 |
2557 |
|
|
B48A8A8CB48C8CB49AAF8DB38B8BA3B3B3BEBE99ABBE99BEADC0B29BB2C098BA8BADA49998AFA983B8C2B88384B884A8B8A8"828-858% |
2558 |
|
|
8CB4B4B4B4B496B2C0C0C0B3A3A3A3B091B08BA3A39595BE93A1BE8BC0B25B59BB298BA9CA0BEA3B3AD98A495BD9E9A85838484A8B8B8B83958, |
2559 |
|
|
B48AB48A8A8A8CA9B7C0C091B3A3A4A4B391;A3A38B8B8BA4BE99A4A391B29B9BB5B5B5B2B2A3BAA0BAA3C0B9AD98AF9A8383C2B883B884847/8$9*9"85 |
2560 |
|
|
B4B488B4B49AAEC0C0B3B3A4BEBEB0B3B3A3A3A3A3A38B98ADC09B99BB2C0A3A09CBEADB2AD8B9898A6A98583B8B8B8B8A8B8B8A89#8,8-8$8+8%:"8" |
2561 |
|
|
B48A8FC0B3B3A4A0BEA38BA3B3B0B3B3A3B3B38B8B98AD9FB2B5B59B9BB2ADBE9CBABB8DADBB97BC8686B8B8"908.85 |
2562 |
|
|
8C9A9A968DB38BA4A1A1A3B3B3B3A3A391B0B0B0B0B0B391C0B2B29BB5;B5B5B5B5B2B28BA2A5ABB9AD98B9B9B9AFA985838483B88E8484A85>)8. |
2563 |
|
|
@8A8C8C8CB49AAFB98BBEA1A0BE91B0B0B3B3B0B0B0B091C0C0C0C091C0B2B29B9BB2B995BAA0BBB998BBB6A9868683B8B8B8B8B8B838$:';1 |
2564 |
|
|
888A85B4B4A98DBBA4A19CA0A3C091B3A3A39191C0C0B2B29B9BB594B594B5B2AD99A5A2B9B998B99897B17#82;"8":&84 |
2565 |
|
|
858AAEADA4A0A5A0A1B3C0C0B0B0B091C0C0C0B2B294B59494949BBDBBA5BA98B9B9B9B9B99D86C2C2B8C2C2C2#8,8"8"9$;#8"8*8"8) |
2566 |
|
|
B4B49AAF8BBAA09CA0A4B0C091C091B2B2B29B9B94B594949B9BB999A5AB98BC868686C2C2B8B88(8$9(="9#;+;#9" |
2567 |
|
|
B4B4A9A7BE9C9CA3B09191C0C0C0C0B2B2B2B5B59494BD98A2A2BBBB98BBB8B884-8$:"=&8"=,8#9" |
2568 |
|
|
8AB48A8CAEADA09CC19CA1B0B0B091B29B9B9B9BB59489B9ABA5ABBBBBABBB9DA9C2C2B8(9"9";"A"<-8#8$ |
2569 |
|
|
858C9A9AB7AB9CBE91B2B5BFBF94BFA6B69798BAA2ABABAFB186C2C27"8%9'>%=&9-:" |
2570 |
|
|
9AA7A29CC1B3B0B0B0B0B09B9B9B9BB5B5949494A6B6B9A2A5AB95ABABB6B190C27"8#9"@":%9":#:"8&8$ |
2571 |
|
|
B48DBAA0C0B29BB2B29B94B5BF97BBA2ABAB97B186(9"?";(8(8'9#8% |
2572 |
|
|
9A9A9AA9B9A0C1A4B2B2B29B9BB5B5B5949494BFBFBFBFBFB6BD98ABA2989DC2C2B8B8:"A"9"=(9"<#9'8" |
2573 |
|
|
AD91C0B2B29B9B9BB59494A68DA2A2ABABB6B1B8:#<"9"C#@"9%8* |
2574 |
|
|
98A5B3B0B2B28FB6B9ABBA99ABB9B1908686C2C27)>"?";"9#9"8#8(8" |
2575 |
|
|
A9A996AD9C9CC19CC09B9BBFBFBFBFA6A5A5A5A2A2B99EC2"8$=#8'?&@"9&8"9" |
2576 |
|
|
A9A997BAB3B391C091C0C0C09FBD9B89A697BABAA2BBB186C2:"=$8)8"8#8'8"8":&9"8" |
2577 |
|
|
B7B0B0B0B0B0B0B0B091C0C0B2C09FBDBD89B6A6A68F8FBAA5A2A2B9C2C29%@$8%=r1:$ |
2578 |
|
|
96AEBBC1B3B3B3B091C0C09FBD89BF8FBFBFA68DBBA59CA5ABB9A6AAB8B8B89'958+ |
2579 |
|
|
A996979CC1C1D91B0B3B0A3A3A4BEA4A3A3B391C0C0C09FB9ADAD98BBABABABAB9598B99F89A6BFA6A6B6A5A5B9B69D868690C2B89%:59. |
2580 |
|
|
96AE9799BB0B0B3A3A4A4BEA1A1A0BAA1BEA48B8BB38B8B98BBAB99BAA5A5A5BAA2AB989FBDA698BABAA2B6B6A9909086C2C2C28"8#85:$9$9+9" |
2581 |
|
|
96B9A079CA3B3B3A3BEA1A09C9CC1C19C9CA0A1BEBEA4A4A495959C9CA5B997B6BBA2A2B9A6A6C290C2C2C27(8*85="8%;" |
2582 |
|
|
96A996ACA7BA9CA4B38BBEBA9C9CC1C14C19CA5A0A1A1BEA4BBBBBB99A29CC1C1C1C1A5A298BDBFAFB8B87"8$;#>/9%9'8#;" |
2583 |
|
|
A996AFBEA393C19C9CA0A1A4AD9F979899A5C19CA2BBABABBFA6B9A2B9BF8686B8$8$:&<+8#8.:"8" |
2584 |
|
|
9696969698A5A4A1A1C1C1C19CA1BEAD9FB68DB9ABA5A5AB979898B9BDB6A68FB9BB98BD86B8<"9"8&>58$ |
2585 |
|
|
97A393A0C1A5A5:A3C09BBFB69798ABBAA2A2A2ABB9B6A6B6BDB6A6BFBFB6B9959FC2C2C2<58%8(:" |
2586 |
|
|
BA6999C9CADB395A19CA1A2BA9C9CA59C9C9CA0BEB0B2B5BFA6BDB9BBA2A2999598BDA6A6A6BFBFB69898A69D86C2:58.=":#8# |
2587 |
|
|
7AC96AEBBA09CB3B3A3BEA38BA4BEA1A1A0A0A0A0A1A391949489BDB9959595BBBB989FBDBF9086B8B8:%;&85;'8" |
2588 |
|
|
96ACAE98A3B3A3A4939A1A193BEBEB3B0B29BB594948989BDB9B9B9B99F89A694A694B998BFBC8690C27%8&:*92;%;# |
2589 |
|
|
AEAC96ACADA0A191B0A3A4A4A4BEA4A3A3A3B2B5A6BFA6A6B68989B2BD8994BFBFBFBFBD89BF9EC2C2#:%8,9*8%?&9$ |
2590 |
|
|
ACAC969FBEBEB3B0B0B0B0B3A3A3B3B3B391B2B5B594BFBFBF94898989BFBFBFBF9A90B8B8B8='8"r':)<$8% |
2591 |
|
|
9BB3A3B0B0B0B3B0B3B3A3B0B29B9494B5B5B5B59494A6BFA69DB8C2C28#8%>,:)=#8#>" |
2592 |
|
|
96ACAC8FB2B091C09191B0B0B0B3C0B2B5A6898989949494BFA6BF9AC2A8859-<$8#?" |
2593 |
|
|
7AC96969696969BC0B3B3B3B3B3B0B091C091B0B0B0B3B389B5BFBFA6899F9FBDBD89A6A6BFBF9EB8B8"8(:"95;$8%8# |
2594 |
|
|
AEACACACACACAFB2B0791B0B0B3A4BEA3B391B2B29494B59494B9BB98B9BD89A6BFA6A6A990909087C27$8(:59+8' |
2595 |
|
|
96AC9E9EACAC8DB38B919B0B0B0A3A493BEB0B091919F89BF9494A69893BE8BB99FB6A68FBFBFA6A69EC2C2C2C2C2C2C2B8A8A8"8,:59';( |
2596 |
|
|
ACAC969696AC968F918BB3B08A3A3BEA1A0BEB3B3B38BADBDA6BFBFB6B995939998B9BDB6BFA6AF86C2C2B8C2B8B8B8B8B87"959$<#9# |
2597 |
|
|
ACGACACACACACAF94C0B3B0B3A3A3A3BEA1A0A0A1A4A4A4BEA3B9BDBD989FBDADA3BEA4989FBDA6A69D8690C2B8A8A8:58"8#<";" |
2598 |
|
|
GACAE96AC96ACAC96B2B3B3A3A3A4A493A0A0A1BEA0A0A1A199BBB9B9B9BDB69F9FB9AD98B9BDB6A690C2B8B8;"809(8'9$;$ |
2599 |
|
|
96ACAC96968D8B8BA4A4BEBEA1A1BEBE9CA0A2ABABB99FBDBDBDBD9F9FA6BFBF87C2878"8$8&95:'r:" |
2600 |
|
|
AEACAE9EAC96A798A3793A1BEA4BE93A1A59C9CA5A5ABBBB9BDBDBD9F9F9FB6BDA6A69D869090C2A88/8&8"8.8"9"8";#9# |
2601 |
|
|
ACAEACAEACACAC96AEACB7ADA3BEBEBEA1A1A1A09CA5BAAB989F9F9F9FB9B9BDB6B6AFC2B8B8B8B8"8#8$8#;";%<(;"8";# |
2602 |
|
|
AEACAE9EACAC8F91A1BAA0A0A597B995ABB9B6B69D86C2C2";1838"9$@" |
2603 |
|
|
ACAEAEAEAEACACAF91B3A4A4A4BEBAA0A09393A1A299939395BBB9B9BB99A5BA9597BDB6909090A8$:(:5I# |
2604 |
|
|
AEAEAEACAEAC9EACAEB9893BAA59C9CA5A0A09CA0A0A0BA99BBABA5C1C1A5A0AB9797B8A89"9":59"A#8" |
2605 |
|
|
AEAE?9697B3A3A4A3BEA09C9CC1C1C1C1C1C19C9CA2BBABA2A599BBBB9999B9BDBDBFC2C2B8<*8"94;";%=" |
2606 |
|
|
BCBC9E9E9E9E96B7ADA4A0A09C9C9C9CC1C19CA5A2ABBBB99F9F9FBBABB69090C290A87";":%95;";"9& |
2607 |
|
|
AC9EACAE978B8BAA0A1A193A1A1A1939399ABBBB99FB6B6BD9FAD9597BD97AAC287C2C2B8B87$8#:%9"858%9";$ |
2608 |
|
|
AEAEACAEAE9E968FADA1593BEBEBEBEBEA4A495ADB9BDB68DBDBDB9B9BD97BDA6A69D90C2C2C2B89"?%9$808"9%8'8" |
2609 |
|
|
AE9E96A795A1BEBE93A1A1A1939399989FBDBD8D979F97B6BF8FB6AA9086C2908787C29&=#8"858,9" |
2610 |
|
|
ACAC9E9EACAEADBE7A4A4BEA09C9C9C9CA5BAAB98BD8DBD9797BDB6BD8DB6A6AFA297B1AAAA90909090C2879&<(859):"8" |
2611 |
|
|
AE9EBC9E9EA9968D95A4BEBE4A3A4BEA1A0BABAA2ABBB9FBDBD8DB6BDB6B6B6B68F8FABA29DB1AAAA86B89$<"8$<0>':#8# |
2612 |
|
|
BCBC9EA9A98F8BA3A3A395A3BB98B997BDB6B6B6B6B6A6ABA5B6B1B190C2C2C27"8#='<)A,9% |
2613 |
|
|
BC9EBCA99EA9AE9895B3B3B3ADADB99FBDB6A6BFA6A2A597AAAAAAAA9090C2877&='9,9"?$<"8% |
2614 |
|
|
AEAEAEAE9E9EA9A9AFB3A4A3A4A4A3A38B8BADADB99FA68FA699AAC2C2C2C2;"<':-8"?';# |
2615 |
|
|
BC9EA9A996B7BBBEBEBEBEA4A4A4A3A38BB99FB6A6B6A2C1B687C290:"<)9"9*9">&:( |
2616 |
|
|
BCA99E9EAFB7A7A49593A1A1BEA499ABBBB9979797A2A59DAAAA878787878787;#9*8&8,9*;#8" |
2617 |
|
|
9EAEBC9DAFAF929292BEA4A1A1A1A1A1A19393A299BBB9B9B997B6A6B6A6B6B6BBA5A2B1B1AAAA:08"9'8&:*8"9"8$ |
2618 |
|
|
AEAEAEAEBCAFAFAF8FB7A7B792A4BEBEBAA0A0A5BABAABBB98B9BDB6B6B6B6B9ABA5BBAAB1B187AAAA<18"9&8#>&9":& |
2619 |
|
|
AFAFB7B7B7B7B7A792B7B7ADA0BE93A193A0A2A2A2A2B9979FBBA2A5B6AAAA87AAAA878'828'<"8'8"<# |
2620 |
|
|
AFAFAFAFB7B7AFB79297B7B79292BAA1A1A19393BEA1BAA5A5A0BAA2ABA69F98ABBABBB187AA87':%8(8#<"=*9$;" |
2621 |
|
|
AFB7B7B7B7B7B7B78DA7B7B7BBA0A0A1A193A199B6B6BDADBBA2A5B6AA87B1B1B1"@%9$8/:+8"8' |
2622 |
|
|
B7A79792928D9C9CA1BEBEBEA1A0A0A0A0A2A2AB989F8D97B99899BAABB1AA87A89D9DB1B1AAAA7$<'8,9"=*8&:" |
2623 |
|
|
92B79292A7A7A78DAFB7999CA0A0A1A1939393BABABD9F9898BBA0A5B6AA878787AA9DB17$:%8#9$9)9/8"<% |
2624 |
|
|
B792B792A7B7B79797B9A09CA1A1A1A2BAA0BAA2B99F97B9B99898BB93A5BBB1AA87AAAAB1B1AA8"9"8)8&9(8-8'8" |
2625 |
|
|
B79292B792A792B9B992A7AD9C9CBA93A1A2A2A2A2999898B998BBBBBB99A5ABB6AAAA8787AA87B1AA;#8$9#8+:$8#8&;#>" |
2626 |
|
|
92A7A7B7B797B7B7B795A5A0A293A2A2A2ABBBBBBBBB95A1A5B69DAAB1B17+8%8&8#;-9$<% |
2627 |
|
|
92B7A7A7A79292A7A792B7979792AFA6B699BA9999A2ABABAB95AB95959593A0AB878787B187AA9D8%:$8#9';58"9& |
2628 |
|
|
9797A792A79292B9A7AF9D8DA2BAA25BABAA2A29999ABA4A4BE93BA9997BB97B1AA87AAAA90AAAAB19D9D7,848"8'8%:"<" |
2629 |
|
|
B7A7A7A7B792A792A78DA7A7B99792B7B7AFB19DB6A2A2A299AB9999A2A2A2BEA493AB97A6AB9D87AAAAB1+8.9'8+;"8#<" |
2630 |
|
|
92B792A792B7B7929292A792A797B99292B79D9DB6B69899ABAB99999993BEA4959897B69798ABB1B19DB18%85:+8&9"<# |
2631 |
|
|
A7A7A7926A792A792A7A7A7A797A792AFB6ABA5ABAFABA5A29999939993ABBBB9B997B998B9AFAA87879D9D9D8#:$</:39$ |
2632 |
|
|
929292B7929792B7ABA5C1A5AFB6BBA0BAA29993BAA297B697B9BBBBABBBB9B6B1AAAAB1B1B1B1B1"9"8%:/8#:&:%:"8" |
2633 |
|
|
B792B79292A792A7B992A7A5C1C1C1B6A6B9A5A0ABABA5B6B1B69798979DB1B1AA |
2634 |
|
|
ENDBITMAP |
2635 |
|
|
%%EndBinary |
2636 |
|
|
72 108 523.3 769.9 C |
2637 |
|
|
0 0 595.3 841.9 C |
2638 |
|
|
FMENDPAGE |
2639 |
|
|
%%EndPage: "10" 15 |
2640 |
|
|
%%Page: "11" 15 |
2641 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2642 |
|
|
0 10 Q |
2643 |
|
|
0 X |
2644 |
|
|
0 K |
2645 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2646 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2647 |
|
|
(11) 292.65 70.23 T |
2648 |
|
|
0 12 Q |
2649 |
|
|
(Not all display types can show images. The) 72 761.9 T |
2650 |
|
|
2 10 Q |
2651 |
|
|
(IMAGE) 283.53 761.9 T |
2652 |
|
|
0 12 Q |
2653 |
|
|
( element behaves in the same way as) 313.51 761.9 T |
2654 |
|
|
2 10 Q |
2655 |
|
|
(IMG) 492.7 761.9 T |
2656 |
|
|
0 F |
2657 |
|
|
(1) 510.7 766.7 T |
2658 |
|
|
0 12 Q |
2659 |
|
|
(but allows you to include descriptive text, which can be shown on text-only displays:) 72 747.9 T |
2660 |
|
|
2 10 Q |
2661 |
|
|
(<image align=top src=\323http://spoof.cern.ch/people/tbl.gif\323>A photo of) 90 730.23 T |
2662 |
|
|
-0.95 (Tim Berners-Lee</image> Before coming to CERN, Tim worked on, among other) 90 718.23 P |
2663 |
|
|
(things, document production and text processing.) 90 706.23 T |
2664 |
|
|
6 F |
2665 |
|
|
(etc.) 383.84 706.23 T |
2666 |
|
|
0 12 Q |
2667 |
|
|
(On text-only displays, the text within the) 72 687.9 T |
2668 |
|
|
2 10 Q |
2669 |
|
|
(IMAGE) 271.22 687.9 T |
2670 |
|
|
0 12 Q |
2671 |
|
|
( element can be shown in place of the image:) 301.21 687.9 T |
2672 |
|
|
2 10 Q |
2673 |
|
|
-0.34 ([A photo of Tim Berners-Lee] Before coming to CERN, Tim worked on, among) 90 670.23 P |
2674 |
|
|
(other things, document production and text processing.) 90 658.23 T |
2675 |
|
|
6 F |
2676 |
|
|
(etc.) 419.82 658.23 T |
2677 |
|
|
0 12 Q |
2678 |
|
|
(The) 72 639.9 T |
2679 |
|
|
2 10 Q |
2680 |
|
|
(SEETHRU) 93.65 639.9 T |
2681 |
|
|
0 12 Q |
2682 |
|
|
( attribute can be used to designate a chromakey so that the image background) 135.62 639.9 T |
2683 |
|
|
(matches the document background. This is an experimental feature and the format of the) 72 625.9 T |
2684 |
|
|
(attribute\325) 72 611.9 T |
2685 |
|
|
(s value has yet to be de\336ned -) 115.31 611.9 T |
2686 |
|
|
4 F |
2687 |
|
|
(suggestions ar) 260.54 611.9 T |
2688 |
|
|
(e welcomed.) 329.73 611.9 T |
2689 |
|
|
0 F |
2690 |
|
|
(Images can be made active in one of three ways) 72 592.9 T |
2691 |
|
|
(\245) 90 573.9 T |
2692 |
|
|
(The whole image can be made into a hypertext link) 108 573.9 T |
2693 |
|
|
(\245) 90 554.9 T |
2694 |
|
|
(Mouse/Pen clicks on the image can be passed to a WWW server) 108 554.9 T |
2695 |
|
|
(\245) 90 535.9 T |
2696 |
|
|
(Shaped hypertext buttons can be overlayed on the image) 108 535.9 T |
2697 |
|
|
(Making the entire image into an iconic hypertext button is simple:) 72 516.9 T |
2698 |
|
|
2 10 Q |
2699 |
|
|
(<a href=\323bigpic.giff\323><image src=\323smallpic.gif\323>Our house</image></a>) 90 499.23 T |
2700 |
|
|
0 12 Q |
2701 |
|
|
-0.17 (In this example, readers can click on a small picture embedded in the document to see a lar) 72 480.9 P |
2702 |
|
|
-0.17 (ger) 505.16 480.9 P |
2703 |
|
|
(version, which would take signi\336cantly longer to retrieve. When using images as hypertext) 72 466.9 T |
2704 |
|
|
(links, don\325) 72 452.9 T |
2705 |
|
|
(t for) 123.09 452.9 T |
2706 |
|
|
(get to include a textual description. This is needed for the link caption for peo-) 143.19 452.9 T |
2707 |
|
|
(ple using text-only displays.) 72 438.9 T |
2708 |
|
|
(In some cases, servers can handle mouse clicks or drags on the image. This capability is sig-) 72 419.9 T |
2709 |
|
|
(nalled in the header information returned along with the image data. Y) 72 405.9 T |
2710 |
|
|
(ou can also use the) 409.22 405.9 T |
2711 |
|
|
2 10 Q |
2712 |
|
|
(ISMAP) 72 391.9 T |
2713 |
|
|
0 12 Q |
2714 |
|
|
( attribute. This mechanism and the ability to add shaped buttons are de\336ned in detail in) 101.98 391.9 T |
2715 |
|
|
(the description of \336gures.) 72 377.9 T |
2716 |
|
|
(The delay in connecting to the server for each image in turn can be reduced by asking HTTP) 72 358.9 T |
2717 |
|
|
(servers to include images with the HTML+ document as a MIME multipart message \050include) 72 344.9 T |
2718 |
|
|
2 10 Q |
2719 |
|
|
(multipart/mixed) 72 330.9 T |
2720 |
|
|
0 12 Q |
2721 |
|
|
( with the) 161.95 330.9 T |
2722 |
|
|
2 10 Q |
2723 |
|
|
(Accept) 206.93 330.9 T |
2724 |
|
|
0 12 Q |
2725 |
|
|
(: header in the request message\051.) 242.91 330.9 T |
2726 |
|
|
1 F |
2727 |
|
|
(5.10) 72 302.9 T |
2728 |
|
|
(Change Bars and Document Amendments) 99 302.9 T |
2729 |
|
|
0 F |
2730 |
|
|
(Change bars are shown for parts of the document designated with the) 72 283.9 T |
2731 |
|
|
2 10 Q |
2732 |
|
|
(CHANGED) 407.08 283.9 T |
2733 |
|
|
0 12 Q |
2734 |
|
|
( element. This) 449.06 283.9 T |
2735 |
|
|
(can appear anywhere that normal text is allowed \050as shown by the) 72 269.9 T |
2736 |
|
|
2 10 Q |
2737 |
|
|
(%text;) 391.08 269.9 T |
2738 |
|
|
0 12 Q |
2739 |
|
|
( entity reference in) 427.07 269.9 T |
2740 |
|
|
(the DTD\051:) 72 255.9 T |
2741 |
|
|
2 10 Q |
2742 |
|
|
(<changed id=z34>text including some changes<changed idref=z34>) 90 238.23 T |
2743 |
|
|
0 12 Q |
2744 |
|
|
(The same element) 72 219.9 T |
2745 |
|
|
0 10 Q |
2746 |
|
|
(2) 159.26 224.7 T |
2747 |
|
|
0 12 Q |
2748 |
|
|
( is used to designate the start and end of changes, using matched) 164.26 219.9 T |
2749 |
|
|
2 10 Q |
2750 |
|
|
(ID) 476.04 219.9 T |
2751 |
|
|
0 12 Q |
2752 |
|
|
( and) 488.04 219.9 T |
2753 |
|
|
2 10 Q |
2754 |
|
|
-0.88 (IDREF) 72 205.9 P |
2755 |
|
|
0 12 Q |
2756 |
|
|
-0.44 ( attribute values. This mechanism avoids syntactic problems that would arise from using) 101.98 205.9 P |
2757 |
|
|
-0.22 (a conventional start and end tag pair) 72 191.9 P |
2758 |
|
|
-0.22 (, as changes to a document can span dif) 244.06 191.9 P |
2759 |
|
|
-0.22 (ferent levels of the) 431.59 191.9 P |
2760 |
|
|
72 156 523.3 170.98 C |
2761 |
|
|
81 168.96 225 168.96 2 L |
2762 |
|
|
0.5 H |
2763 |
|
|
2 Z |
2764 |
|
|
0 X |
2765 |
|
|
0 K |
2766 |
|
|
N |
2767 |
|
|
0 0 595.3 841.9 C |
2768 |
|
|
0 10 Q |
2769 |
|
|
0 X |
2770 |
|
|
0 K |
2771 |
|
|
(1. Y) 90 149.34 T |
2772 |
|
|
(ou can also use) 106.21 149.34 T |
2773 |
|
|
2 F |
2774 |
|
|
(IMG) 169.5 149.34 T |
2775 |
|
|
0 F |
2776 |
|
|
(\325) 187.49 149.34 T |
2777 |
|
|
(s) 190.26 149.34 T |
2778 |
|
|
2 F |
2779 |
|
|
(ALT) 196.65 149.34 T |
2780 |
|
|
0 F |
2781 |
|
|
( attribute for textual descriptions, but authors are recommended to use) 214.64 149.34 T |
2782 |
|
|
2 F |
2783 |
|
|
(IMAGE) 90 137.34 T |
2784 |
|
|
0 F |
2785 |
|
|
( in all cases. Such descriptions should always be given as it is bad practice to rely on users hav-) 119.98 137.34 T |
2786 |
|
|
(ing graphical browsers. The descriptions are also useful when the images take a long time to retrieve.) 90 125.34 T |
2787 |
|
|
(2. Maybe we should use distinct tag names- if so what names?) 90 113.34 T |
2788 |
|
|
FMENDPAGE |
2789 |
|
|
%%EndPage: "11" 16 |
2790 |
|
|
%%Page: "12" 16 |
2791 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2792 |
|
|
0 10 Q |
2793 |
|
|
0 X |
2794 |
|
|
0 K |
2795 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2796 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2797 |
|
|
(12) 292.65 70.23 T |
2798 |
|
|
0 12 Q |
2799 |
|
|
(document\325) 72 761.9 T |
2800 |
|
|
(s formal structure. Additional attributes may be used with the) 122.64 761.9 T |
2801 |
|
|
2 10 Q |
2802 |
|
|
(CHANGED) 420.11 761.9 T |
2803 |
|
|
0 12 Q |
2804 |
|
|
( element to) 462.09 761.9 T |
2805 |
|
|
(hold related details, e.g.) 72 747.9 T |
2806 |
|
|
2 10 Q |
2807 |
|
|
(BY) 189.58 747.9 T |
2808 |
|
|
0 12 Q |
2809 |
|
|
(,) 200.03 747.9 T |
2810 |
|
|
2 10 Q |
2811 |
|
|
(WHEN) 206.03 747.9 T |
2812 |
|
|
0 12 Q |
2813 |
|
|
(,) 230.01 747.9 T |
2814 |
|
|
2 10 Q |
2815 |
|
|
(WHY) 236.01 747.9 T |
2816 |
|
|
0 12 Q |
2817 |
|
|
(,) 252.45 747.9 T |
2818 |
|
|
2 10 Q |
2819 |
|
|
(WHAT) 258.45 747.9 T |
2820 |
|
|
0 12 Q |
2821 |
|
|
(.) 281.55 747.9 T |
2822 |
|
|
(In legal documents and amendments to proposed legislation, there is often the need to show) 72 728.9 T |
2823 |
|
|
(parts of the text as being removed or added to the document. This is commonly shown using) 72 714.9 T |
2824 |
|
|
-0.33 (strike-through and underlining respectively) 72 700.9 P |
2825 |
|
|
-0.33 (. The) 277.76 700.9 P |
2826 |
|
|
2 10 Q |
2827 |
|
|
-0.66 (REMOVED) 304.74 700.9 P |
2828 |
|
|
0 12 Q |
2829 |
|
|
-0.33 ( and) 346.72 700.9 P |
2830 |
|
|
2 10 Q |
2831 |
|
|
-0.66 (ADDED) 369.38 700.9 P |
2832 |
|
|
0 12 Q |
2833 |
|
|
-0.33 ( tags are provided for this) 399.36 700.9 P |
2834 |
|
|
(purpose:) 72 686.9 T |
2835 |
|
|
2 10 Q |
2836 |
|
|
-0.62 (<P>This bill would require the Legislative Counsel, with the advice of the) 81 669.23 P |
2837 |
|
|
-0.57 (Joint Rules Committee of the Senate and Assembly, to make available to the) 81 657.23 P |
2838 |
|
|
(public by means of access by way of <removed>computer modem</removed>) 81 645.23 T |
2839 |
|
|
(<added>the largest nonproprietary, nonprof) 81 633.23 T |
2840 |
|
|
(it cooperative public computer) 332.86 633.23 T |
2841 |
|
|
(network,</added> specif) 81 621.23 T |
2842 |
|
|
(ied information concerning bills, the proceedings) 218.92 621.23 T |
2843 |
|
|
-0.68 (of the houses and committees of the Legislature, statutory enactments, and) 81 609.23 P |
2844 |
|
|
(the California Constitution.) 81 597.23 T |
2845 |
|
|
0 12 Q |
2846 |
|
|
(Which might be displayed as:) 72 578.9 T |
2847 |
|
|
0 10 Q |
2848 |
|
|
(This bill would require the Legislative Counsel, with the advice of the Joint Rules Committee of the) 90 561.23 T |
2849 |
|
|
(Senate and Assembly) 90 549.23 T |
2850 |
|
|
(, to make available to the public by means of access by way of) 175.4 549.23 T |
2851 |
|
|
497.95 551.23 427.71 551.23 2 L |
2852 |
|
|
V |
2853 |
|
|
0.49 H |
2854 |
|
|
0 Z |
2855 |
|
|
N |
2856 |
|
|
(computer modem) 427.71 549.23 T |
2857 |
|
|
115.26 536.14 90 536.14 2 L |
2858 |
|
|
V |
2859 |
|
|
N |
2860 |
|
|
(the lar) 90 537.23 T |
2861 |
|
|
193.07 536.14 115.08 536.14 2 L |
2862 |
|
|
V |
2863 |
|
|
N |
2864 |
|
|
(gest nonproprietary) 115.08 537.23 T |
2865 |
|
|
386.18 536.14 192.42 536.14 2 L |
2866 |
|
|
V |
2867 |
|
|
N |
2868 |
|
|
(, nonpro\336t cooperative public computer network) 192.42 537.23 T |
2869 |
|
|
4 F |
2870 |
|
|
(,) 386.18 537.23 T |
2871 |
|
|
0 F |
2872 |
|
|
(speci\336ed information con-) 391.17 537.23 T |
2873 |
|
|
(cerning bills, the proceedings of the houses and committees of the Legislature, statutory enactments,) 90 525.23 T |
2874 |
|
|
(and the California Constitution.) 90 513.23 T |
2875 |
|
|
0 12 Q |
2876 |
|
|
(Color enhancements may be used to further distinguish the amendments, e.g. red lines for) 72 494.9 T |
2877 |
|
|
(strike-through. This mechanism is not intended for representing revision histories, which are) 72 480.9 T |
2878 |
|
|
(better served by traditional change control mechanisms.) 72 466.9 T |
2879 |
|
|
1 F |
2880 |
|
|
(5.1) 72 438.9 T |
2881 |
|
|
(1) 88.01 438.9 T |
2882 |
|
|
(Conditional T) 99 438.9 T |
2883 |
|
|
(ext) 174.74 438.9 T |
2884 |
|
|
0 F |
2885 |
|
|
(It is often quite dif) 72 419.9 T |
2886 |
|
|
(\336cult to phrase the captions for hypertext buttons so that they make sense) 161.06 419.9 T |
2887 |
|
|
(when printed out. The) 72 405.9 T |
2888 |
|
|
2 10 Q |
2889 |
|
|
(ONLINE) 180.92 405.9 T |
2890 |
|
|
0 12 Q |
2891 |
|
|
( and) 216.9 405.9 T |
2892 |
|
|
2 10 Q |
2893 |
|
|
(PRINTED) 240.22 405.9 T |
2894 |
|
|
0 12 Q |
2895 |
|
|
( elements can be used to de\336ne text which is for) 282.2 405.9 T |
2896 |
|
|
(use only when read on-line or on the printed page respectively:) 72 391.9 T |
2897 |
|
|
2 10 Q |
2898 |
|
|
(<online>click <a href=\323info.html\323>here</a>for more information.</online>) 90 374.23 T |
2899 |
|
|
(<printed>Further information can be found in [Higgins 84b].</printed>) 90 362.23 T |
2900 |
|
|
0 12 Q |
2901 |
|
|
-0.04 (In many cases, you can \336nd a way of phrasing the reference so that it makes sense both ways.) 72 343.9 P |
2902 |
|
|
-0.47 (Browsers can help by referencing hypertext links as footnotes when printed out. See the earlier) 72 329.9 P |
2903 |
|
|
(description of the) 72 315.9 T |
2904 |
|
|
2 10 Q |
2905 |
|
|
(PRINT) 158.94 315.9 T |
2906 |
|
|
0 12 Q |
2907 |
|
|
( attribute for the) 188.92 315.9 T |
2908 |
|
|
2 10 Q |
2909 |
|
|
(A) 269.53 315.9 T |
2910 |
|
|
0 12 Q |
2911 |
|
|
( tag.) 275.53 315.9 T |
2912 |
|
|
1 F |
2913 |
|
|
(5.12) 72 287.9 T |
2914 |
|
|
(Explicit Line Breaks) 99 287.9 T |
2915 |
|
|
0 F |
2916 |
|
|
(Y) 72 268.9 T |
2917 |
|
|
(ou can make individual lines explicit with the) 79.46 268.9 T |
2918 |
|
|
2 10 Q |
2919 |
|
|
(<L>) 301.33 268.9 T |
2920 |
|
|
0 12 Q |
2921 |
|
|
( element, which contains the text of the) 319.32 268.9 T |
2922 |
|
|
(line in the same way that) 72 254.9 T |
2923 |
|
|
2 10 Q |
2924 |
|
|
(<P>) 194.59 254.9 T |
2925 |
|
|
0 12 Q |
2926 |
|
|
( contains the text of the paragraph.) 212.57 254.9 T |
2927 |
|
|
2 10 Q |
2928 |
|
|
(<P>) 90 237.23 T |
2929 |
|
|
(<L>22 The Avenue,) 90 225.23 T |
2930 |
|
|
(<L>Harrow,) 90 213.23 T |
2931 |
|
|
(<L>London, NW1 5ER) 90 201.23 T |
2932 |
|
|
0 12 Q |
2933 |
|
|
(An alternative is the) 72 182.9 T |
2934 |
|
|
2 10 Q |
2935 |
|
|
(<BR>) 171.93 182.9 T |
2936 |
|
|
0 12 Q |
2937 |
|
|
( element which acts as a forced line break.) 195.92 182.9 T |
2938 |
|
|
2 10 Q |
2939 |
|
|
(<P>22 The Avenue<BR>) 90 165.23 T |
2940 |
|
|
(Harrow,<BR>London, NW1 5ER) 90 153.23 T |
2941 |
|
|
0 12 Q |
2942 |
|
|
(The) 72 134.9 T |
2943 |
|
|
2 10 Q |
2944 |
|
|
(<L>) 93.65 134.9 T |
2945 |
|
|
0 12 Q |
2946 |
|
|
( element is useful when you want to name each line, e.g.) 111.64 134.9 T |
2947 |
|
|
2 10 Q |
2948 |
|
|
(<L ID=\323L23\323>) 385.77 134.9 T |
2949 |
|
|
0 12 Q |
2950 |
|
|
(. Y) 457.73 134.9 T |
2951 |
|
|
(ou may) 471.19 134.9 T |
2952 |
|
|
(also want to disable word wrap for the current paragraph, as in) 72 120.9 T |
2953 |
|
|
2 10 Q |
2954 |
|
|
(<P WRAP=OFF>) 375.42 120.9 T |
2955 |
|
|
0 12 Q |
2956 |
|
|
(.) 447.38 120.9 T |
2957 |
|
|
FMENDPAGE |
2958 |
|
|
%%EndPage: "12" 17 |
2959 |
|
|
%%Page: "13" 17 |
2960 |
|
|
595.3 841.9 0 FMBEGINPAGE |
2961 |
|
|
0 10 Q |
2962 |
|
|
0 X |
2963 |
|
|
0 K |
2964 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
2965 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
2966 |
|
|
(13) 292.65 70.23 T |
2967 |
|
|
1 14 Q |
2968 |
|
|
(6) 72 760.57 T |
2969 |
|
|
(Different Paragraph Styles) 90 760.57 T |
2970 |
|
|
0 12 Q |
2971 |
|
|
(T) 72 740.9 T |
2972 |
|
|
(o avoid all text appearing in the same style, HTML+ provides distinct styles for quotes,) 78.49 740.9 T |
2973 |
|
|
(abstracts, bylines and admonishments. All these elements can contain multiple paragraphs:) 72 726.9 T |
2974 |
|
|
1 F |
2975 |
|
|
(6.1) 72 698.9 T |
2976 |
|
|
(Longer Quotations) 99 698.9 T |
2977 |
|
|
0 F |
2978 |
|
|
(When you want to include a quotation that extends over more that one paragraph, you should) 72 679.9 T |
2979 |
|
|
(use the) 72 665.9 T |
2980 |
|
|
2 10 Q |
2981 |
|
|
(QUOTE) 108.64 665.9 T |
2982 |
|
|
0 F |
2983 |
|
|
(1) 138.62 670.7 T |
2984 |
|
|
0 12 Q |
2985 |
|
|
( element. Quoted text should preferably be indented, and rendered using a dis-) 143.62 665.9 T |
2986 |
|
|
(tinctive font, e.g.) 72 651.9 T |
2987 |
|
|
2 10 Q |
2988 |
|
|
-0.81 (<P>The following is a quotation from the forward by Yuri Rubinsky to \322The) 90 634.23 P |
2989 |
|
|
-0.41 (SGML Handbook\323 by Charles F. Goldfarb, published by the Clarendon Press,) 90 622.23 P |
2990 |
|
|
(Oxford, 1990.) 90 610.23 T |
2991 |
|
|
-0.87 (<QUOTE>The next f) 90 593.23 P |
2992 |
|
|
-0.87 (ive years will see a revolution in computing. Users will) 190.2 593.23 P |
2993 |
|
|
(no longer have to work at every computer task as if they had no need or) 90 581.23 T |
2994 |
|
|
-0.34 (ability to share data with all their other computer tasks, they will not) 90 569.23 P |
2995 |
|
|
(need to act as if the computer is simply a replacement for paper, nor) 90 557.23 T |
2996 |
|
|
-0.34 (will they have to appease computers or software programs that seem to be) 90 545.23 P |
2997 |
|
|
(at war with one another.</QUOTE>) 90 533.23 T |
2998 |
|
|
0 12 Q |
2999 |
|
|
(which might be rendered as:) 72 514.9 T |
3000 |
|
|
0 10 Q |
3001 |
|
|
(The following is a quotation from the forward by Y) 90 497.23 T |
3002 |
|
|
(uri Rubinsky to \322The SGML Handbook\323 by Charles F) 295.14 497.23 T |
3003 |
|
|
(.) 511.43 497.23 T |
3004 |
|
|
(Goldfarb, published by the Clarendon Press, Oxford, 1990.) 90 485.23 T |
3005 |
|
|
3 F |
3006 |
|
|
-0.15 (The next \336ve years will see a revolution in computing. Users will no longer have to work at every) 99 468.23 P |
3007 |
|
|
(computer task as if they had no need or ability to share data with all their other computer tasks,) 99 456.23 T |
3008 |
|
|
(they will not need to act as if the computer is simply a replacement for paper) 99 444.23 T |
3009 |
|
|
(, nor will they have) 435.08 444.23 T |
3010 |
|
|
(to appease computers or software programs that seem to be at war with one another) 99 432.23 T |
3011 |
|
|
(.) 472.86 432.23 T |
3012 |
|
|
1 12 Q |
3013 |
|
|
(6.2) 72 404.9 T |
3014 |
|
|
(Abstracts) 99 404.9 T |
3015 |
|
|
0 F |
3016 |
|
|
-0.2 (The) 72 385.9 P |
3017 |
|
|
2 10 Q |
3018 |
|
|
-0.4 (ABSTRACT) 93.45 385.9 P |
3019 |
|
|
0 12 Q |
3020 |
|
|
-0.2 ( element can be used to give an overview of a document and typically follows a) 141.42 385.9 P |
3021 |
|
|
(level one heading. It should be rendered in an easily read font, distinct from normal text, and) 72 371.9 T |
3022 |
|
|
(preferably indented. An example is given in the next section.) 72 357.9 T |
3023 |
|
|
1 F |
3024 |
|
|
(6.3) 72 329.9 T |
3025 |
|
|
(Bylines) 99 329.9 T |
3026 |
|
|
0 F |
3027 |
|
|
(The) 72 310.9 T |
3028 |
|
|
2 10 Q |
3029 |
|
|
(BYLINE) 93.65 310.9 T |
3030 |
|
|
0 12 Q |
3031 |
|
|
( element) 129.63 310.9 T |
3032 |
|
|
0 10 Q |
3033 |
|
|
(2) 170.6 315.7 T |
3034 |
|
|
0 12 Q |
3035 |
|
|
( is similar to) 175.6 310.9 T |
3036 |
|
|
2 10 Q |
3037 |
|
|
(QUOTE) 238.24 310.9 T |
3038 |
|
|
0 12 Q |
3039 |
|
|
( and is used for information about the author) 268.22 310.9 T |
3040 |
|
|
(, e.g.) 481.6 310.9 T |
3041 |
|
|
-0.18 (contact details and release date. A common convention is to include a hypertext link to a node) 72 296.9 P |
3042 |
|
|
(with more information about the author) 72 282.9 T |
3043 |
|
|
(. Bylines can occur at the beginning or end of a docu-) 260.88 282.9 T |
3044 |
|
|
(ment, e.g:) 72 268.9 T |
3045 |
|
|
2 10 Q |
3046 |
|
|
(<H1>HTML+ \050Hypertext markup format</H1>) 90 251.23 T |
3047 |
|
|
(<ABSTRACT>A proposed standard for a light weight delivery format for) 90 234.23 T |
3048 |
|
|
(browsing and querying information in a web of globally distributed) 108 222.23 T |
3049 |
|
|
(hypertext accessible over the Internet) 108 210.23 T |
3050 |
|
|
(</ABSTRACT>) 90 198.23 T |
3051 |
|
|
72 168 523.3 182.98 C |
3052 |
|
|
81 180.96 225 180.96 2 L |
3053 |
|
|
0.5 H |
3054 |
|
|
2 Z |
3055 |
|
|
0 X |
3056 |
|
|
0 K |
3057 |
|
|
N |
3058 |
|
|
0 0 595.3 841.9 C |
3059 |
|
|
0 10 Q |
3060 |
|
|
0 X |
3061 |
|
|
0 K |
3062 |
|
|
-0.28 (1. The equivalent) 90 161.34 P |
3063 |
|
|
2 F |
3064 |
|
|
-0.66 (BLOCKQUOTE) 161.34 161.34 P |
3065 |
|
|
0 F |
3066 |
|
|
-0.28 ( element is provided for backwards compatibility with HTML. Perhaps) 221.31 161.34 P |
3067 |
|
|
(we should extend) 90 149.34 T |
3068 |
|
|
2 F |
3069 |
|
|
(QUOTE) 162.45 149.34 T |
3070 |
|
|
0 F |
3071 |
|
|
( to allow quote by) 192.43 149.34 T |
3072 |
|
|
4 F |
3073 |
|
|
(name) 267.11 149.34 T |
3074 |
|
|
0 F |
3075 |
|
|
(, whereby) 288.76 149.34 T |
3076 |
|
|
(, the quoted material is de\336ned by a hyper-) 327.52 149.34 T |
3077 |
|
|
(text link to the original material, and automatically retrieved and inserted into the current document?) 90 137.34 T |
3078 |
|
|
(2. Y) 90 113.34 T |
3079 |
|
|
(ou can also use the ADDRESS element \050provided for backwards compatibility with HTML\051.) 106.21 113.34 T |
3080 |
|
|
FMENDPAGE |
3081 |
|
|
%%EndPage: "13" 18 |
3082 |
|
|
%%Page: "14" 18 |
3083 |
|
|
595.3 841.9 0 FMBEGINPAGE |
3084 |
|
|
0 10 Q |
3085 |
|
|
0 X |
3086 |
|
|
0 K |
3087 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
3088 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
3089 |
|
|
(14) 292.65 70.23 T |
3090 |
|
|
2 F |
3091 |
|
|
(<BYLINE>Editor: Dave Raggett dsr@hplb.hpl.hp.com</BYLINE>) 90 763.23 T |
3092 |
|
|
1 12 Q |
3093 |
|
|
(6.4) 72 735.9 T |
3094 |
|
|
(Notes and admonishments) 99 735.9 T |
3095 |
|
|
0 F |
3096 |
|
|
-0.08 (The) 72 716.9 P |
3097 |
|
|
2 10 Q |
3098 |
|
|
-0.16 (NOTE) 93.57 716.9 P |
3099 |
|
|
0 12 Q |
3100 |
|
|
-0.08 ( element is used when you want to draw the readers attention to some point or other) 117.56 716.9 P |
3101 |
|
|
-0.08 (.) 517.38 716.9 P |
3102 |
|
|
(For example:) 72 702.9 T |
3103 |
|
|
2 10 Q |
3104 |
|
|
(<note role=\323NOTE\323 src=\323info.gif\323>) 90 685.23 T |
3105 |
|
|
(The \322partial-window-name\323 parameter must exactly match the beginning) 90 673.23 T |
3106 |
|
|
-0.81 (characters of the window name \050as it appears on the title bar\051, including) 90 661.23 P |
3107 |
|
|
(proper case \050capital or lower letters\051 and any punctuation.) 90 649.23 T |
3108 |
|
|
(</note>) 90 637.23 T |
3109 |
|
|
0 12 Q |
3110 |
|
|
(This is typically rendered as:) 72 613.9 T |
3111 |
|
|
-0.19 (The text of the) 72 524.9 P |
3112 |
|
|
2 10 Q |
3113 |
|
|
-0.39 (ROLE) 144.51 524.9 P |
3114 |
|
|
0 12 Q |
3115 |
|
|
-0.19 ( attribute \050if given\051 is inserted at the start of the note in a bold font and fol-) 168.49 524.9 P |
3116 |
|
|
(lowed by a colon. T) 72 510.9 T |
3117 |
|
|
(ypical roles are) 166.76 510.9 T |
3118 |
|
|
2 10 Q |
3119 |
|
|
(TIP) 243.03 510.9 T |
3120 |
|
|
0 12 Q |
3121 |
|
|
(,) 259.68 510.9 T |
3122 |
|
|
2 10 Q |
3123 |
|
|
(NOTE) 265.68 510.9 T |
3124 |
|
|
0 12 Q |
3125 |
|
|
(,) 289.67 510.9 T |
3126 |
|
|
2 10 Q |
3127 |
|
|
(WARNING) 295.67 510.9 T |
3128 |
|
|
0 12 Q |
3129 |
|
|
( and) 337.64 510.9 T |
3130 |
|
|
2 10 Q |
3131 |
|
|
(ERROR) 360.96 510.9 T |
3132 |
|
|
0 12 Q |
3133 |
|
|
(. The) 390.94 510.9 T |
3134 |
|
|
2 10 Q |
3135 |
|
|
(SRC) 418.59 510.9 T |
3136 |
|
|
0 12 Q |
3137 |
|
|
( attribute may be) 436.58 510.9 T |
3138 |
|
|
-0.19 (used to name a URL or URN as an icon which is displayed in the left mar) 72 496.9 P |
3139 |
|
|
-0.19 (gin at the start of the) 422.5 496.9 P |
3140 |
|
|
(note. An upright hand icon is often used for tips; a warning road sign for warnings and a stop) 72 482.9 T |
3141 |
|
|
(sign for errors) 72 468.9 T |
3142 |
|
|
0 10 Q |
3143 |
|
|
(1) 139.94 473.7 T |
3144 |
|
|
0 12 Q |
3145 |
|
|
(. Horizontal rules are drawn automatically to help readers distinguish the note) 144.94 468.9 T |
3146 |
|
|
(from the surrounding text. Y) 72 454.9 T |
3147 |
|
|
(ou can place horizontal rules in other parts of your document) 208.38 454.9 T |
3148 |
|
|
(using the) 72 440.9 T |
3149 |
|
|
2 10 Q |
3150 |
|
|
(<HR>) 118.64 440.9 T |
3151 |
|
|
0 12 Q |
3152 |
|
|
( element which can appear anywhere a) 142.63 440.9 T |
3153 |
|
|
2 10 Q |
3154 |
|
|
(<P>) 331.45 440.9 T |
3155 |
|
|
0 12 Q |
3156 |
|
|
( element is allowed.) 349.44 440.9 T |
3157 |
|
|
1 14 Q |
3158 |
|
|
(7) 72 411.57 T |
3159 |
|
|
(Lists) 90 411.57 T |
3160 |
|
|
0 12 Q |
3161 |
|
|
(There are three kinds of lists, which can be freely nested within one another:) 72 391.9 T |
3162 |
|
|
(\245) 90 372.9 T |
3163 |
|
|
(Ordered lists - the list items are automatically numbered) 108 372.9 T |
3164 |
|
|
(\245) 90 353.9 T |
3165 |
|
|
(Unordered lists - bulleted or plain styles, in single or multiple columns) 108 353.9 T |
3166 |
|
|
(\245) 90 334.9 T |
3167 |
|
|
(De\336nition lists of terms and associated de\336nitions) 108 334.9 T |
3168 |
|
|
1 F |
3169 |
|
|
(7.1) 72 306.9 T |
3170 |
|
|
(Ordered Lists) 99 306.9 T |
3171 |
|
|
0 F |
3172 |
|
|
(The) 72 287.9 T |
3173 |
|
|
2 10 Q |
3174 |
|
|
(OL) 93.65 287.9 T |
3175 |
|
|
0 12 Q |
3176 |
|
|
( element is used with) 105.64 287.9 T |
3177 |
|
|
2 10 Q |
3178 |
|
|
(LI) 209.91 287.9 T |
3179 |
|
|
0 12 Q |
3180 |
|
|
( for each item to represent ordered lists:) 221.91 287.9 T |
3181 |
|
|
2 10 Q |
3182 |
|
|
(<OL>) 90 270.23 T |
3183 |
|
|
(<LI>Wake up) 108 258.23 T |
3184 |
|
|
(<LI>Get dressed) 108 246.23 T |
3185 |
|
|
(<LI>Have breakfast) 108 234.23 T |
3186 |
|
|
(<LI>Drive to work) 108 222.23 T |
3187 |
|
|
(</OL>) 90 210.23 T |
3188 |
|
|
0 12 Q |
3189 |
|
|
(which is usually rendered as:) 72 191.9 T |
3190 |
|
|
(1\051) 90 172.9 T |
3191 |
|
|
(W) 108 172.9 T |
3192 |
|
|
(ake up) 118.36 172.9 T |
3193 |
|
|
(2\051) 90 153.9 T |
3194 |
|
|
(Get dressed) 108 153.9 T |
3195 |
|
|
72 120 523.3 134.98 C |
3196 |
|
|
81 132.96 225 132.96 2 L |
3197 |
|
|
0.5 H |
3198 |
|
|
2 Z |
3199 |
|
|
0 X |
3200 |
|
|
0 K |
3201 |
|
|
N |
3202 |
|
|
0 0 595.3 841.9 C |
3203 |
|
|
0 10 Q |
3204 |
|
|
0 X |
3205 |
|
|
0 K |
3206 |
|
|
(1. Browsers should provide these particular icons by default when the) 90 113.34 T |
3207 |
|
|
2 F |
3208 |
|
|
(SRC) 371.46 113.34 T |
3209 |
|
|
0 F |
3210 |
|
|
( attribute is missing.) 389.45 113.34 T |
3211 |
|
|
72 108 523.3 769.9 C |
3212 |
|
|
98.14 539.9 497.16 609.9 C |
3213 |
|
|
134.14 600.9 458.14 600.9 2 L |
3214 |
|
|
0.5 H |
3215 |
|
|
2 Z |
3216 |
|
|
0 X |
3217 |
|
|
0 K |
3218 |
|
|
N |
3219 |
|
|
134.14 546.9 458.14 546.9 2 L |
3220 |
|
|
N |
3221 |
|
|
134.14 555.9 494.14 591.9 R |
3222 |
|
|
7 X |
3223 |
|
|
V |
3224 |
|
|
1 10 Q |
3225 |
|
|
0 X |
3226 |
|
|
(NOTE:) 134.14 585.23 T |
3227 |
|
|
3 F |
3228 |
|
|
( The \322partial-window-name\323 parameter must exactly match the) 165.23 585.23 T |
3229 |
|
|
(beginning characters of the window name \050as it appears on the title bar\051,) 134.14 573.23 T |
3230 |
|
|
(including proper case \050capital or lower letters\051 and any punctuation.) 134.14 561.23 T |
3231 |
|
|
%%BeginBinary: 1817 |
3232 |
|
|
20 20 20 20 0 107.14 573.9 |
3233 |
|
|
/red < |
3234 |
|
|
E0C0A08060402000E0C0A08060402000E0C0A08060402000E0C0A08060402000 |
3235 |
|
|
E0C0A08060402000E0C0A08060402000E0C0A08060402000E0C0A08060402000 |
3236 |
|
|
E007740B0D10181261651B694D6B5C6E2116561D46583B5E5170257653054263 |
3237 |
|
|
401F28263E4F48092A142C443967305A33726B2945B0FFFF471C2E762F7C546A |
3238 |
|
|
38B07EEAEBEBE6E3ECC4EE99EEB3EDC8E3ACB577CC86DFA99578EAC455CDDAAF |
3239 |
|
|
65746C97875BC4B2EDE3DB7ADC9DDAC4A9D6C0A1EDCBB5BAEAA06789D6B382CC |
3240 |
|
|
B04CE78AC5FEFFFF000000000000000089000080FF4ACD798EFF61DF9CB7FF4F |
3241 |
|
|
D3869DFF40C67083FF4ED18299FF008A0000FF4DD08096006EE9AECC00FFFF00 |
3242 |
|
|
> store |
3243 |
|
|
/green < |
3244 |
|
|
E0E0E0E0E0E0E0E0C0C0C0C0C0C0C0C0A0A0A0A0A0A0A0A08080808080808080 |
3245 |
|
|
6060606060606060404040404040404020202020202020200000000000000000 |
3246 |
|
|
E049A64C4E515853969A5B9D859E92A260568D5C7F8E769388A363A88A487C98 |
3247 |
|
|
7B5E66647986804B6854697E749B6C9070A5742D4BBEB5875F253E9D2F98706A |
3248 |
|
|
4BE288E5E6E4E2E7E7A9E780E5A6E6B8E28DB661AE75D69D8566E2A748CBD595 |
3249 |
|
|
515B5D7B704EB0B0E9DCE26CD48BD2C287DAA085E6AAA7BCE692577DD29E68B1 |
3250 |
|
|
9541E498D400FF00FF00FF772E4DC443C9778BC5FF58D98FA8FF57D78BA3FF41 |
3251 |
|
|
C76F82FF3BC16679FF50D3859CFF43CA778CFF4CCF7E940063E09CB78C00FF00 |
3252 |
|
|
> store |
3253 |
|
|
/blue < |
3254 |
|
|
C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 |
3255 |
|
|
C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0 |
3256 |
|
|
8046A74A4B4F5550979A599D839F92A25E548D5A7F8E749388A461A988457A98 |
3257 |
|
|
795C646377867F486652687C729C6B906EA691385EEFC50091385EEE64D3AA8D |
3258 |
|
|
66FFABF4F5F1F6F8F2A9F171EDA6F4BFF779AB5BAF6ED6A08164ECA144DBD99D |
3259 |
|
|
4D545F6C654EBEA9F5E3F76DD581D4C56FF09670EDA9BAB1F692537AD7A45DC1 |
3260 |
|
|
7C40F8B4E10000FFFFFF009F3E67FF5ADF9EBADDFF59DA92ABFF53D4859CFF43 |
3261 |
|
|
C87185FF40C66F82FF4BCE7C92FF5AE09FBBFF49CC798E0054D5859CBB00FF00 |
3262 |
|
|
> store |
3263 |
|
|
BEGINBITMAPCOLORc |
3264 |
|
|
z |
3265 |
|
|
4FE |
3266 |
|
|
=P |
3267 |
|
|
;#8& |
3268 |
|
|
FFFFFEFEFFFFFF:"?" |
3269 |
|
|
FFFF9";#:" |
3270 |
|
|
FFFFFFFF>$ |
3271 |
|
|
FEFEFE8";"=" |
3272 |
|
|
FFFFFF |
3273 |
|
|
|
3274 |
|
|
|
3275 |
|
|
|
3276 |
|
|
8"C" |
3277 |
|
|
FEFE |
3278 |
|
|
9":"8"9" |
3279 |
|
|
FEFEFEFE:"9%8" |
3280 |
|
|
FEFFFFFFFFFE;#;# |
3281 |
|
|
FEFEFEFE=& |
3282 |
|
|
FEFEFEFEFE |
3283 |
|
|
|
3284 |
|
|
|
3285 |
|
|
ENDBITMAP |
3286 |
|
|
%%EndBinary |
3287 |
|
|
72 108 523.3 769.9 C |
3288 |
|
|
0 0 595.3 841.9 C |
3289 |
|
|
FMENDPAGE |
3290 |
|
|
%%EndPage: "14" 19 |
3291 |
|
|
%%Page: "15" 19 |
3292 |
|
|
595.3 841.9 0 FMBEGINPAGE |
3293 |
|
|
0 10 Q |
3294 |
|
|
0 X |
3295 |
|
|
0 K |
3296 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
3297 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
3298 |
|
|
(15) 292.65 70.23 T |
3299 |
|
|
0 12 Q |
3300 |
|
|
(3\051) 90 761.9 T |
3301 |
|
|
(Have breakfast) 108 761.9 T |
3302 |
|
|
(4\051) 90 742.9 T |
3303 |
|
|
(Drive to work) 108 742.9 T |
3304 |
|
|
(The) 72 723.9 T |
3305 |
|
|
2 10 Q |
3306 |
|
|
(COMPACT) 93.65 723.9 T |
3307 |
|
|
0 12 Q |
3308 |
|
|
( attribute when present e.g.) 135.62 723.9 T |
3309 |
|
|
2 10 Q |
3310 |
|
|
(<OL COMPACT>) 268.52 723.9 T |
3311 |
|
|
0 12 Q |
3312 |
|
|
( has the ef) 340.48 723.9 T |
3313 |
|
|
(fect of reducing inter) 389.23 723.9 T |
3314 |
|
|
(-item) 489.9 723.9 T |
3315 |
|
|
(spacing. The numbering style is the responsibility of the browser) 72 709.9 T |
3316 |
|
|
(. Other styles use roman) 382.47 709.9 T |
3317 |
|
|
-0.24 (numerals or letters from the alphabet in upper or lower case. One issue for browsers, is how to) 72 695.9 P |
3318 |
|
|
-0.01 (render ordered lists, nested within a list of the same type. List item text can\325) 72 681.9 P |
3319 |
|
|
-0.01 (t include headers,) 436.06 681.9 P |
3320 |
|
|
(see the DTD in Appendix I for details.) 72 667.9 T |
3321 |
|
|
1 F |
3322 |
|
|
(7.2) 72 639.9 T |
3323 |
|
|
(Bulleted Lists) 99 639.9 T |
3324 |
|
|
0 F |
3325 |
|
|
(Bulleted lists are represented with the) 72 620.9 T |
3326 |
|
|
2 10 Q |
3327 |
|
|
(UL) 255.87 620.9 T |
3328 |
|
|
0 12 Q |
3329 |
|
|
( and) 267.86 620.9 T |
3330 |
|
|
2 10 Q |
3331 |
|
|
(LI) 291.18 620.9 T |
3332 |
|
|
0 12 Q |
3333 |
|
|
( elements:) 303.17 620.9 T |
3334 |
|
|
2 10 Q |
3335 |
|
|
(<UL>) 90 603.23 T |
3336 |
|
|
(<LI>Wake up) 108 591.23 T |
3337 |
|
|
(<LI>Get dressed) 108 579.23 T |
3338 |
|
|
(<LI>Have breakfast) 108 567.23 T |
3339 |
|
|
(<LI>Drive to work) 108 555.23 T |
3340 |
|
|
(</UL>) 90 543.23 T |
3341 |
|
|
0 12 Q |
3342 |
|
|
(which is usually rendered as:) 72 524.9 T |
3343 |
|
|
(\245) 90 505.9 T |
3344 |
|
|
(W) 108 505.9 T |
3345 |
|
|
(ake up) 118.36 505.9 T |
3346 |
|
|
(\245) 90 486.9 T |
3347 |
|
|
(Get dressed) 108 486.9 T |
3348 |
|
|
(\245) 90 467.9 T |
3349 |
|
|
(Have breakfast) 108 467.9 T |
3350 |
|
|
(\245) 90 448.9 T |
3351 |
|
|
(Drive to work) 108 448.9 T |
3352 |
|
|
(The) 72 429.9 T |
3353 |
|
|
2 10 Q |
3354 |
|
|
(COMPACT) 93.65 429.9 T |
3355 |
|
|
0 12 Q |
3356 |
|
|
( attribute when present e.g.) 135.62 429.9 T |
3357 |
|
|
2 10 Q |
3358 |
|
|
(<UL COMPACT>) 268.52 429.9 T |
3359 |
|
|
0 12 Q |
3360 |
|
|
( has the ef) 340.48 429.9 T |
3361 |
|
|
(fect of reducing inter) 389.23 429.9 T |
3362 |
|
|
(-item) 489.9 429.9 T |
3363 |
|
|
(spacing. The bullet style is the responsibility of the browser) 72 415.9 T |
3364 |
|
|
(, and normally an unordered list) 358.01 415.9 T |
3365 |
|
|
(nested within a list of the same type is given a dif) 72 401.9 T |
3366 |
|
|
(ferent style \050bullet, dash, box or check\051.) 309.3 401.9 T |
3367 |
|
|
(Authors can instead use the) 72 387.9 T |
3368 |
|
|
2 10 Q |
3369 |
|
|
(SRC) 206.9 387.9 T |
3370 |
|
|
0 12 Q |
3371 |
|
|
( attribute for the) 224.89 387.9 T |
3372 |
|
|
2 10 Q |
3373 |
|
|
(LI) 305.5 387.9 T |
3374 |
|
|
0 12 Q |
3375 |
|
|
( element to specify an icon with a URL or) 317.49 387.9 T |
3376 |
|
|
(URN, e.g.) 72 373.9 T |
3377 |
|
|
2 10 Q |
3378 |
|
|
(<LI SRC=\323folder.gif\323>) 123.63 373.9 T |
3379 |
|
|
0 12 Q |
3380 |
|
|
(. List item text can\325) 249.56 373.9 T |
3381 |
|
|
(t include headers, see the HTML+) 342.95 373.9 T |
3382 |
|
|
(DTD in Appendix I for details.) 72 359.9 T |
3383 |
|
|
1 F |
3384 |
|
|
(7.3) 72 331.9 T |
3385 |
|
|
(Plain Lists) 99 331.9 T |
3386 |
|
|
0 F |
3387 |
|
|
-0.07 (Plain lists without bullets are represented by the) 72 312.9 P |
3388 |
|
|
2 10 Q |
3389 |
|
|
-0.14 (UL) 304.61 312.9 P |
3390 |
|
|
0 12 Q |
3391 |
|
|
-0.07 ( element together with the) 316.6 312.9 P |
3392 |
|
|
2 10 Q |
3393 |
|
|
-0.14 (PLAIN) 444.49 312.9 P |
3394 |
|
|
0 12 Q |
3395 |
|
|
-0.07 ( attribute,) 474.47 312.9 P |
3396 |
|
|
-0.17 (e.g.) 72 298.9 P |
3397 |
|
|
2 10 Q |
3398 |
|
|
-0.35 (<UL PLAIN>) 92.14 298.9 P |
3399 |
|
|
0 12 Q |
3400 |
|
|
-0.17 (. The) 151.76 298.9 P |
3401 |
|
|
2 10 Q |
3402 |
|
|
-0.35 (WRAP) 179.06 298.9 P |
3403 |
|
|
0 12 Q |
3404 |
|
|
-0.17 ( attribute is used for multi-column lists and should be) 203.05 298.9 P |
3405 |
|
|
2 10 Q |
3406 |
|
|
-0.35 (WRAP=HORIZ) 460.5 298.9 P |
3407 |
|
|
0 12 Q |
3408 |
|
|
(for horizontally wrapping of list items or) 72 284.9 T |
3409 |
|
|
2 10 Q |
3410 |
|
|
(WRAP=VERT) 270.88 284.9 T |
3411 |
|
|
0 12 Q |
3412 |
|
|
( for vertical wrapping of list items, e.g.) 324.85 284.9 T |
3413 |
|
|
2 10 Q |
3414 |
|
|
(<UL PLAIN>) 90 267.23 T |
3415 |
|
|
(<LI>icons1/) 108 255.23 T |
3416 |
|
|
(<LI>icons2/) 108 243.23 T |
3417 |
|
|
(<LI>icons3/) 108 231.23 T |
3418 |
|
|
(<LI>src/) 108 219.23 T |
3419 |
|
|
(<LI>xpm-3-paper.ps) 108 207.23 T |
3420 |
|
|
(<LI>xpm-3.2-to-3.2a.patch) 108 195.23 T |
3421 |
|
|
(</UL>) 90 183.23 T |
3422 |
|
|
0 12 Q |
3423 |
|
|
(without the) 72 164.9 T |
3424 |
|
|
2 10 Q |
3425 |
|
|
(WRAP) 129.3 164.9 T |
3426 |
|
|
0 12 Q |
3427 |
|
|
( attribute, this is rendered as:) 153.29 164.9 T |
3428 |
|
|
3 F |
3429 |
|
|
(icons1/) 99 145.9 T |
3430 |
|
|
(icons2/) 99 131.9 T |
3431 |
|
|
(icons3/) 99 117.9 T |
3432 |
|
|
FMENDPAGE |
3433 |
|
|
%%EndPage: "15" 20 |
3434 |
|
|
%%Page: "16" 20 |
3435 |
|
|
595.3 841.9 0 FMBEGINPAGE |
3436 |
|
|
0 10 Q |
3437 |
|
|
0 X |
3438 |
|
|
0 K |
3439 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
3440 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
3441 |
|
|
(16) 292.65 70.23 T |
3442 |
|
|
3 12 Q |
3443 |
|
|
(src/) 99 761.9 T |
3444 |
|
|
(xpm-3-paper) 99 747.9 T |
3445 |
|
|
(.ps) 166.32 747.9 T |
3446 |
|
|
(xpm-3.2-to-3.2a.patch) 99 733.9 T |
3447 |
|
|
0 F |
3448 |
|
|
(with) 72 714.9 T |
3449 |
|
|
2 10 Q |
3450 |
|
|
(<UL PLAIN WRAP=VERT>) 96.32 714.9 T |
3451 |
|
|
0 12 Q |
3452 |
|
|
( this would appear like:) 216.26 714.9 T |
3453 |
|
|
3 F |
3454 |
|
|
(icons1/) 99 695.9 T |
3455 |
|
|
(icons3/) 216 695.9 T |
3456 |
|
|
(xpm-3-paper) 342 695.9 T |
3457 |
|
|
(.ps) 409.32 695.9 T |
3458 |
|
|
(icons2/) 99 681.9 T |
3459 |
|
|
(src/) 216 681.9 T |
3460 |
|
|
(xpm-3.2-to-3.2a.patch) 342 681.9 T |
3461 |
|
|
0 F |
3462 |
|
|
(with) 72 662.9 T |
3463 |
|
|
2 10 Q |
3464 |
|
|
(WRAP=HORIZ) 96.32 662.9 T |
3465 |
|
|
0 12 Q |
3466 |
|
|
( it would appear like:) 156.29 662.9 T |
3467 |
|
|
3 F |
3468 |
|
|
(icons1/) 99 643.9 T |
3469 |
|
|
(icons2/) 216 643.9 T |
3470 |
|
|
(icons3/) 342 643.9 T |
3471 |
|
|
(src/) 99 629.9 T |
3472 |
|
|
(xpm-3-paper) 216 629.9 T |
3473 |
|
|
(.ps) 283.32 629.9 T |
3474 |
|
|
(xpm-3.2-to-3.2a.patch) 342 629.9 T |
3475 |
|
|
0 F |
3476 |
|
|
(Everyday familiarity with printed lists leads us to expect lists to be or) 72 610.9 T |
3477 |
|
|
(ganized into columns) 404.91 610.9 T |
3478 |
|
|
-0.21 (which are read top to bottom; horizontally wrapped lists are seldom seen. Browsers are free to) 72 596.9 P |
3479 |
|
|
(choose the number of columns to match the current window size and item widths. If there are) 72 582.9 T |
3480 |
|
|
(N items and M columns then the longest column will have \050N+M-1\051/M rows. This requires a) 72 568.9 T |
3481 |
|
|
(prepass through the list to count the items \050and optionally their maximum width\051. However) 72 554.9 T |
3482 |
|
|
(,) 508.58 554.9 T |
3483 |
|
|
(this information can be cached to avoid speed penalties when resizing the window or refresh-) 72 540.9 T |
3484 |
|
|
(ing the screen. Y) 72 526.9 T |
3485 |
|
|
(ou can use the) 152.07 526.9 T |
3486 |
|
|
2 10 Q |
3487 |
|
|
(SRC) 223.35 526.9 T |
3488 |
|
|
0 12 Q |
3489 |
|
|
( attribute for the) 241.34 526.9 T |
3490 |
|
|
2 10 Q |
3491 |
|
|
(LI) 321.94 526.9 T |
3492 |
|
|
0 12 Q |
3493 |
|
|
( element to specify an icon for each) 333.94 526.9 T |
3494 |
|
|
(item in the list, e.g. to show the type of each document in a directory listing.) 72 512.9 T |
3495 |
|
|
(For convenience, the) 72 493.9 T |
3496 |
|
|
2 10 Q |
3497 |
|
|
(<MENU>) 175.25 493.9 T |
3498 |
|
|
0 12 Q |
3499 |
|
|
( and) 211.23 493.9 T |
3500 |
|
|
2 10 Q |
3501 |
|
|
(<DIR>) 234.55 493.9 T |
3502 |
|
|
0 12 Q |
3503 |
|
|
( elements can be used in place of) 264.53 493.9 T |
3504 |
|
|
2 10 Q |
3505 |
|
|
(<UL PLAIN>) 425.73 493.9 T |
3506 |
|
|
0 12 Q |
3507 |
|
|
( and) 485.7 493.9 T |
3508 |
|
|
2 10 Q |
3509 |
|
|
(<UL PLAIN WRAP=VERT>) 72 479.9 T |
3510 |
|
|
0 12 Q |
3511 |
|
|
( respectively) 191.93 479.9 T |
3512 |
|
|
(.) 252.1 479.9 T |
3513 |
|
|
1 F |
3514 |
|
|
(7.4) 72 451.9 T |
3515 |
|
|
(De\336nition Lists) 99 451.9 T |
3516 |
|
|
0 F |
3517 |
|
|
(These consist of) 72 432.9 T |
3518 |
|
|
1 F |
3519 |
|
|
(pairs) 152.94 432.9 T |
3520 |
|
|
0 F |
3521 |
|
|
( of terms and de\336nitions, but can also be used for plays as in:) 181.61 432.9 T |
3522 |
|
|
2 10 Q |
3523 |
|
|
(<DL>) 90 415.23 T |
3524 |
|
|
(<DT>King Henry) 108 403.23 T |
3525 |
|
|
(<DD>I myself heard the King say he would not be ransomed.) 108 391.23 T |
3526 |
|
|
(<DT>Williams) 108 379.23 T |
3527 |
|
|
(<DD>Ay, he said so, to make us f) 108 367.23 T |
3528 |
|
|
(ight cheerfully: but when our) 299.89 367.23 T |
3529 |
|
|
(throats are cut he may be ransomed, and we none the wiser.) 126 355.23 T |
3530 |
|
|
(<DT>King Henry) 108 343.23 T |
3531 |
|
|
(<DD>If I live to see it, I will never trust his word after.) 108 331.23 T |
3532 |
|
|
(<DT>Williams) 108 319.23 T |
3533 |
|
|
(<DD>You pay him then! That\325s a perilous shot out of an elder-gun,) 108 307.23 T |
3534 |
|
|
(that a poor and a private displeasure can do against a monarch!) 126 295.23 T |
3535 |
|
|
(You may as well go about to turn the sun to ice, with fanning in) 126 283.23 T |
3536 |
|
|
(his face with a peacock\325s feather. You\325ll never trust his word) 126 271.23 T |
3537 |
|
|
(after! Come \324tis a foolish saying.) 126 259.23 T |
3538 |
|
|
(</DL>) 90 247.23 T |
3539 |
|
|
0 12 Q |
3540 |
|
|
(This could be rendered as:) 72 228.9 T |
3541 |
|
|
1 F |
3542 |
|
|
(King Henry:) 99 209.9 T |
3543 |
|
|
0 F |
3544 |
|
|
( I myself heard the King say he would not be ransomed.) 166.97 209.9 T |
3545 |
|
|
1 F |
3546 |
|
|
(W) 99 190.9 T |
3547 |
|
|
(illiams:) 110.21 190.9 T |
3548 |
|
|
0 F |
3549 |
|
|
( A) 151.54 190.9 T |
3550 |
|
|
(y) 162.1 190.9 T |
3551 |
|
|
(, he said so, to make us \336ght cheerfully: but when our throats are cut he) 167.31 190.9 T |
3552 |
|
|
(may be ransomed, and we none the wiser) 108 176.9 T |
3553 |
|
|
(.) 305.18 176.9 T |
3554 |
|
|
1 F |
3555 |
|
|
(King Henry:) 99 157.9 T |
3556 |
|
|
0 F |
3557 |
|
|
( If I live to see it, I will never trust his word after) 166.97 157.9 T |
3558 |
|
|
(.) 400.8 157.9 T |
3559 |
|
|
1 F |
3560 |
|
|
-0.08 (W) 99 138.9 P |
3561 |
|
|
-0.08 (illiams:) 110.21 138.9 P |
3562 |
|
|
0 F |
3563 |
|
|
-0.07 ( Y) 151.54 138.9 P |
3564 |
|
|
-0.07 (ou pay him then! That\325) 161.93 138.9 P |
3565 |
|
|
-0.07 (s a perilous shot out of an elder) 271.57 138.9 P |
3566 |
|
|
-0.07 (-gun, that a poor and) 421.06 138.9 P |
3567 |
|
|
-0.37 (private displeasure can do against a monarch! Y) 108 124.9 P |
3568 |
|
|
-0.37 (ou may as well go about to turn the sun) 335.06 124.9 P |
3569 |
|
|
FMENDPAGE |
3570 |
|
|
%%EndPage: "16" 21 |
3571 |
|
|
%%Page: "17" 21 |
3572 |
|
|
595.3 841.9 0 FMBEGINPAGE |
3573 |
|
|
0 10 Q |
3574 |
|
|
0 X |
3575 |
|
|
0 K |
3576 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
3577 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
3578 |
|
|
(17) 292.65 70.23 T |
3579 |
|
|
0 12 Q |
3580 |
|
|
-0.2 (to ice, with fanning his face with a peacock\325) 108 761.9 P |
3581 |
|
|
-0.2 (s feather) 317.92 761.9 P |
3582 |
|
|
-0.2 (. Y) 358.01 761.9 P |
3583 |
|
|
-0.2 (ou\325ll never trust his word after!) 371.27 761.9 P |
3584 |
|
|
(Come \324tis a foolish saying.) 108 747.9 T |
3585 |
|
|
(or as:) 72 733.9 T |
3586 |
|
|
(King Henry) 99 714.9 T |
3587 |
|
|
(I myself heard the King say he would not be ransomed.) 216 714.9 T |
3588 |
|
|
(W) 99 695.9 T |
3589 |
|
|
(illiams) 109.84 695.9 T |
3590 |
|
|
-0.12 (A) 216 695.9 P |
3591 |
|
|
-0.12 (y) 223.56 695.9 P |
3592 |
|
|
-0.12 (, he said so, to make us \336ght cheerfully: but when our throats) 228.77 695.9 P |
3593 |
|
|
(are cut he may be ransomed, and we none the wiser) 216 681.9 T |
3594 |
|
|
(.) 462.8 681.9 T |
3595 |
|
|
(King Henry) 99 662.9 T |
3596 |
|
|
(If I live to see it, I will never trust his word after) 216 662.9 T |
3597 |
|
|
(.) 446.84 662.9 T |
3598 |
|
|
(W) 99 643.9 T |
3599 |
|
|
(illiams) 109.84 643.9 T |
3600 |
|
|
(Y) 216 643.9 T |
3601 |
|
|
(ou pay him then! That\325) 223.46 643.9 T |
3602 |
|
|
(s a perilous shot out of an elder) 333.39 643.9 T |
3603 |
|
|
(-gun,) 483.38 643.9 T |
3604 |
|
|
(that a poor and private displeasure can do against a monarch!) 216 629.9 T |
3605 |
|
|
-0.35 (Y) 216 615.9 P |
3606 |
|
|
-0.35 (ou may as well go about to turn the sun to ice, with fanning his) 223.46 615.9 P |
3607 |
|
|
(face with a peacock\325) 216 601.9 T |
3608 |
|
|
(s feather) 314.24 601.9 T |
3609 |
|
|
(. Y) 354.54 601.9 T |
3610 |
|
|
(ou\325ll never trust his word after!) 367.99 601.9 T |
3611 |
|
|
(Come \324tis a foolish saying.) 216 587.9 T |
3612 |
|
|
-0.44 (Browsers should make allowance for the infrequent case when the term text \050) 72 568.9 P |
3613 |
|
|
2 10 Q |
3614 |
|
|
-0.88 (DT) 437.77 568.9 P |
3615 |
|
|
0 12 Q |
3616 |
|
|
-0.44 (\051 is longer than) 449.77 568.9 P |
3617 |
|
|
(the de\336nition text \050) 72 554.9 T |
3618 |
|
|
2 10 Q |
3619 |
|
|
(DD) 163.62 554.9 T |
3620 |
|
|
0 12 Q |
3621 |
|
|
(\051 and wraps onto subsequent lines. Note that you are allowed to have) 175.61 554.9 T |
3622 |
|
|
(several consecutive) 72 540.9 T |
3623 |
|
|
2 10 Q |
3624 |
|
|
(DT) 168.58 540.9 T |
3625 |
|
|
0 12 Q |
3626 |
|
|
( elements followed by a) 180.58 540.9 T |
3627 |
|
|
2 10 Q |
3628 |
|
|
(DD) 298.16 540.9 T |
3629 |
|
|
0 12 Q |
3630 |
|
|
( element, but you can\325) 310.15 540.9 T |
3631 |
|
|
(t have) 416.86 540.9 T |
3632 |
|
|
2 10 Q |
3633 |
|
|
(DD) 448.83 540.9 T |
3634 |
|
|
0 12 Q |
3635 |
|
|
( without an) 460.83 540.9 T |
3636 |
|
|
(associated) 72 526.9 T |
3637 |
|
|
2 10 Q |
3638 |
|
|
(DT) 124.29 526.9 T |
3639 |
|
|
0 12 Q |
3640 |
|
|
( element, The) 136.29 526.9 T |
3641 |
|
|
2 10 Q |
3642 |
|
|
(COMPACT) 204.9 526.9 T |
3643 |
|
|
0 12 Q |
3644 |
|
|
( attribute as in) 246.88 526.9 T |
3645 |
|
|
2 10 Q |
3646 |
|
|
(<DL COMPACT>) 318.17 526.9 T |
3647 |
|
|
0 12 Q |
3648 |
|
|
( forces the browser to use) 390.12 526.9 T |
3649 |
|
|
(the former more compact style.) 72 512.9 T |
3650 |
|
|
1 14 Q |
3651 |
|
|
(8) 72 483.57 T |
3652 |
|
|
(Figures) 90 483.57 T |
3653 |
|
|
0 12 Q |
3654 |
|
|
-0.04 (The FIG element is similar to the) 72 463.9 P |
3655 |
|
|
2 10 Q |
3656 |
|
|
-0.09 (IMAGE) 233.94 463.9 P |
3657 |
|
|
0 12 Q |
3658 |
|
|
-0.04 ( element, but acts as a paragraph. The) 263.92 463.9 P |
3659 |
|
|
2 10 Q |
3660 |
|
|
-0.09 (ALIGN) 447.43 463.9 P |
3661 |
|
|
0 12 Q |
3662 |
|
|
-0.04 ( attribute) 477.41 463.9 P |
3663 |
|
|
-0.07 (can be one of) 72 449.9 P |
3664 |
|
|
2 10 Q |
3665 |
|
|
-0.14 (LEFT) 138.98 449.9 P |
3666 |
|
|
0 12 Q |
3667 |
|
|
-0.07 ( \050the default\051,) 162.97 449.9 P |
3668 |
|
|
2 10 Q |
3669 |
|
|
-0.14 (CENTER) 230.7 449.9 P |
3670 |
|
|
0 12 Q |
3671 |
|
|
-0.07 (,) 266.67 449.9 P |
3672 |
|
|
2 10 Q |
3673 |
|
|
-0.14 (RIGHT) 272.6 449.9 P |
3674 |
|
|
0 12 Q |
3675 |
|
|
-0.07 ( or) 302.58 449.9 P |
3676 |
|
|
2 10 Q |
3677 |
|
|
-0.14 (FLOAT) 318.43 449.9 P |
3678 |
|
|
0 12 Q |
3679 |
|
|
-0.07 (. This determines whether the \336gure) 347.52 449.9 P |
3680 |
|
|
(is \337ush left, centered or \337ush right. If) 72 435.9 T |
3681 |
|
|
2 10 Q |
3682 |
|
|
(ALIGN=FLOAT) 253.88 435.9 T |
3683 |
|
|
0 12 Q |
3684 |
|
|
( the \336gure may \337oat to another more con-) 319.84 435.9 T |
3685 |
|
|
(venient location \050and possibly zoomed or reduced in the process\051. A caption can be de\336ned) 72 421.9 T |
3686 |
|
|
(with the) 72 407.9 T |
3687 |
|
|
2 10 Q |
3688 |
|
|
(CAPTION) 113.98 407.9 T |
3689 |
|
|
0 12 Q |
3690 |
|
|
( element and followed by text describing the \336gure for readers using text) 155.95 407.9 T |
3691 |
|
|
(only displays) 72 393.9 T |
3692 |
|
|
0 10 Q |
3693 |
|
|
(1) 135.64 398.7 T |
3694 |
|
|
0 12 Q |
3695 |
|
|
(:) 140.63 393.9 T |
3696 |
|
|
2 10 Q |
3697 |
|
|
(<FIG ALIGN=FLOAT SRC=\323cat.gif\323>) 90 376.23 T |
3698 |
|
|
(<CAPTION>\323Not curried f) 108 364.23 T |
3699 |
|
|
(ish again!\323<CAPTION>) 245.92 364.23 T |
3700 |
|
|
(A cartoon of a scrawny cat with its tongue out saying ACK!) 108 352.23 T |
3701 |
|
|
(</FIG>) 90 340.23 T |
3702 |
|
|
(<P>The text in the following paragraphs will f) 90 323.23 T |
3703 |
|
|
(low around the f) 365.85 323.23 T |
3704 |
|
|
(igure) 461.8 323.23 T |
3705 |
|
|
(if there is enough room. The browser is free to position the caption at) 90 311.23 T |
3706 |
|
|
(the top, bottom or sides of the f) 90 299.23 T |
3707 |
|
|
(igure.) 287.89 299.23 T |
3708 |
|
|
72 144 523.3 158.98 C |
3709 |
|
|
81 156.96 225 156.96 2 L |
3710 |
|
|
0.5 H |
3711 |
|
|
2 Z |
3712 |
|
|
0 X |
3713 |
|
|
0 K |
3714 |
|
|
N |
3715 |
|
|
0 0 595.3 841.9 C |
3716 |
|
|
0 10 Q |
3717 |
|
|
0 X |
3718 |
|
|
0 K |
3719 |
|
|
-0.07 (1. The caption must be placed before this description, and can be used as a header for the \336gure descrip-) 90 137.34 P |
3720 |
|
|
(tion for text-only displays. This text may also be usefully shown while the browser is retrieving the) 90 125.34 T |
3721 |
|
|
(image data for GUI displays.) 90 113.34 T |
3722 |
|
|
FMENDPAGE |
3723 |
|
|
%%EndPage: "17" 22 |
3724 |
|
|
%%Page: "18" 22 |
3725 |
|
|
595.3 841.9 0 FMBEGINPAGE |
3726 |
|
|
0 10 Q |
3727 |
|
|
0 X |
3728 |
|
|
0 K |
3729 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
3730 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
3731 |
|
|
(18) 292.65 70.23 T |
3732 |
|
|
0 12 Q |
3733 |
|
|
(which is rendered as:) 72 761.9 T |
3734 |
|
|
(Note that browsers can only support a limited range of image types. Currently these are GIF) 72 626.87 T |
3735 |
|
|
(and XBM \050X bitmap format\051. This list will evolve over time.) 72 612.87 T |
3736 |
|
|
1 F |
3737 |
|
|
(8.1) 72 584.87 T |
3738 |
|
|
(Active Areas) 99 584.87 T |
3739 |
|
|
0 F |
3740 |
|
|
-0.14 (The upper left of the image is designated as x,y = \0500, 0\051, with x increasing across the page and) 72 565.87 P |
3741 |
|
|
(y down the page. This choice was made for continuity with the) 72 551.87 T |
3742 |
|
|
2 10 Q |
3743 |
|
|
(IMG) 376.79 551.87 T |
3744 |
|
|
0 12 Q |
3745 |
|
|
( element in HTML, to) 394.78 551.87 T |
3746 |
|
|
-0.21 (ensure a simple migration path to HTML+. If points are given in real numbers, the lower right) 72 537.87 P |
3747 |
|
|
-0.04 (corner of the image is taken as being \0501.0, 1.0\051, otherwise, with integer values the coordinates) 72 523.87 P |
3748 |
|
|
(are assumed to be in pixels. A simple test to distinguish the two schemes is to check if a \322.\323) 72 509.87 T |
3749 |
|
|
(character occurs anywhere in the list of points. Using scaled coordinates is much safer as the) 72 495.87 T |
3750 |
|
|
(pixel extent of an image may alter) 72 481.87 T |
3751 |
|
|
(, e.g. as a result of format negotiation with the server) 235.4 481.87 T |
3752 |
|
|
(.) 488.22 481.87 T |
3753 |
|
|
(For some images, HTTP servers will be able to handle mouse/pen clicks or drags on the) 72 462.87 T |
3754 |
|
|
-0.22 (image. This is signalled in the header information returned along with the image data. Alterna-) 72 448.87 P |
3755 |
|
|
-0.11 (tively) 72 434.87 P |
3756 |
|
|
-0.11 (, the) 98.54 434.87 P |
3757 |
|
|
2 10 Q |
3758 |
|
|
-0.22 (ISMAP) 124.86 434.87 P |
3759 |
|
|
0 12 Q |
3760 |
|
|
-0.11 ( attribute can be used to signal this capability) 154.84 434.87 P |
3761 |
|
|
-0.11 (. The mouse click is sent to the) 372.6 434.87 P |
3762 |
|
|
(server indicated by the URL in the) 72 420.87 T |
3763 |
|
|
2 10 Q |
3764 |
|
|
(SRC) 240.88 420.87 T |
3765 |
|
|
0 12 Q |
3766 |
|
|
( attribute, using the same URL plus the suf) 258.87 420.87 T |
3767 |
|
|
(\336x) 464.2 420.87 T |
3768 |
|
|
-0.01 (\322?x=) 72 406.87 P |
3769 |
|
|
4 F |
3770 |
|
|
-0.01 (X) 95.41 406.87 P |
3771 |
|
|
0 F |
3772 |
|
|
-0.01 (&y=) 102.74 406.87 P |
3773 |
|
|
4 F |
3774 |
|
|
-0.01 (Y) 124.83 406.87 P |
3775 |
|
|
0 F |
3776 |
|
|
-0.01 (\323) 131.5 406.87 P |
3777 |
|
|
0 10 Q |
3778 |
|
|
-0.01 (1) 136.82 411.67 P |
3779 |
|
|
0 12 Q |
3780 |
|
|
-0.01 ( where) 141.82 406.87 P |
3781 |
|
|
4 F |
3782 |
|
|
-0.01 (X) 177.09 406.87 P |
3783 |
|
|
0 F |
3784 |
|
|
-0.01 ( and) 184.42 406.87 P |
3785 |
|
|
4 F |
3786 |
|
|
-0.01 (Y) 207.71 406.87 P |
3787 |
|
|
0 F |
3788 |
|
|
-0.01 ( are the coordinates of the click event. Mouse drags can be used) 214.38 406.87 P |
3789 |
|
|
(to designate a rectangular region of the image. In this case the suf) 72 392.87 T |
3790 |
|
|
(\336x takes the form:) 386.54 392.87 T |
3791 |
|
|
-0.33 (\322?x=) 72 378.87 P |
3792 |
|
|
4 F |
3793 |
|
|
-0.33 (X) 95.41 378.87 P |
3794 |
|
|
0 F |
3795 |
|
|
-0.33 (&y=) 102.74 378.87 P |
3796 |
|
|
4 F |
3797 |
|
|
-0.33 (Y) 124.83 378.87 P |
3798 |
|
|
0 F |
3799 |
|
|
-0.33 (&w=) 131.5 378.87 P |
3800 |
|
|
4 F |
3801 |
|
|
-0.33 (W) 156.25 378.87 P |
3802 |
|
|
0 F |
3803 |
|
|
-0.33 (&h=) 166.24 378.87 P |
3804 |
|
|
4 F |
3805 |
|
|
-0.33 (H) 188.34 378.87 P |
3806 |
|
|
0 F |
3807 |
|
|
-0.33 (\323 where) 196.99 378.87 P |
3808 |
|
|
4 F |
3809 |
|
|
-0.33 (\050X, Y\051) 236.95 378.87 P |
3810 |
|
|
0 F |
3811 |
|
|
-0.33 ( is the upper left of the rectangle, and) 264.6 378.87 P |
3812 |
|
|
4 F |
3813 |
|
|
-0.33 (\050W) 443.46 378.87 P |
3814 |
|
|
-0.33 (, H\051) 456.34 378.87 P |
3815 |
|
|
0 F |
3816 |
|
|
-0.33 ( de\336ne its) 474.65 378.87 P |
3817 |
|
|
-0.42 (width and height. The) 72 364.87 P |
3818 |
|
|
2 10 Q |
3819 |
|
|
-0.84 (ISMAP) 178.58 364.87 P |
3820 |
|
|
0 12 Q |
3821 |
|
|
-0.42 ( mechanism is useful when the active regions in the image change) 208.57 364.87 P |
3822 |
|
|
(their boundaries with time, e.g.) 72 350.87 T |
3823 |
|
|
2 10 Q |
3824 |
|
|
(<f) 90 333.2 T |
3825 |
|
|
(ig ismap src=\323weather.gif\323>) 101.99 333.2 T |
3826 |
|
|
(<caption>Click on your area for a local forecast</caption>) 108 321.2 T |
3827 |
|
|
(Todays weather map for the US.) 108 309.2 T |
3828 |
|
|
(</f) 90 297.2 T |
3829 |
|
|
(ig>) 107.99 297.2 T |
3830 |
|
|
1 12 Q |
3831 |
|
|
(8.2) 72 269.87 T |
3832 |
|
|
(Placing Hypertext Buttons on Images) 99 269.87 T |
3833 |
|
|
0 F |
3834 |
|
|
-0.32 (The) 72 250.87 P |
3835 |
|
|
2 10 Q |
3836 |
|
|
-0.64 (A) 93.33 250.87 P |
3837 |
|
|
0 12 Q |
3838 |
|
|
-0.32 ( element) 99.33 250.87 P |
3839 |
|
|
0 10 Q |
3840 |
|
|
-0.27 (2) 139.98 255.67 P |
3841 |
|
|
0 12 Q |
3842 |
|
|
-0.32 ( can be used to de\336ne shaped buttons on top of images. The shape is de\336ned by) 144.97 250.87 P |
3843 |
|
|
(an arbitrary polygon and speci\336ed via the) 72 236.87 T |
3844 |
|
|
2 10 Q |
3845 |
|
|
(SHAPE) 274.18 236.87 T |
3846 |
|
|
0 12 Q |
3847 |
|
|
( attribute, e.g.) 304.17 236.87 T |
3848 |
|
|
2 10 Q |
3849 |
|
|
(<FIG SRC=\323test.gif\323>) 90 219.2 T |
3850 |
|
|
(<CAPTION>Click on the triangle or the rectangle</CAPTION>) 108 207.2 T |
3851 |
|
|
(A line drawing with a) 108 195.2 T |
3852 |
|
|
(<A SHAPE=\3230.35,0.1&0.1,0.8&0.35,0.8\323) 108 183.2 T |
3853 |
|
|
(HREF=\323button1.html\323>) 323.88 183.2 T |
3854 |
|
|
(triangle</A>) 108 171.2 T |
3855 |
|
|
(and a) 179.96 171.2 T |
3856 |
|
|
72 144 523.3 158.98 C |
3857 |
|
|
81 156.96 225 156.96 2 L |
3858 |
|
|
0.5 H |
3859 |
|
|
2 Z |
3860 |
|
|
0 X |
3861 |
|
|
0 K |
3862 |
|
|
N |
3863 |
|
|
0 0 595.3 841.9 C |
3864 |
|
|
0 10 Q |
3865 |
|
|
0 X |
3866 |
|
|
0 K |
3867 |
|
|
(1. Changed from \322?X,Y\323 in the previous draft for consistency with the) 90 137.34 T |
3868 |
|
|
2 F |
3869 |
|
|
(FORM) 374.23 137.34 T |
3870 |
|
|
0 F |
3871 |
|
|
( mechanism.) 398.22 137.34 T |
3872 |
|
|
-0.15 (2. This replaces the) 90 125.34 P |
3873 |
|
|
2 F |
3874 |
|
|
-0.36 (FIGA) 169.61 125.34 P |
3875 |
|
|
0 F |
3876 |
|
|
-0.15 ( element in the previous draft, and gives readers on text-only displays the abil-) 193.6 125.34 P |
3877 |
|
|
(ity to click shaped buttons even though the image itself can\325) 90 113.34 T |
3878 |
|
|
(t be shown.) 330.22 113.34 T |
3879 |
|
|
72 108 523.3 769.9 C |
3880 |
|
|
98.14 636.87 497.16 757.9 C |
3881 |
|
|
98.14 640.9 251.14 658.9 R |
3882 |
|
|
7 X |
3883 |
|
|
0 K |
3884 |
|
|
V |
3885 |
|
|
1 12 Q |
3886 |
|
|
0 X |
3887 |
|
|
(\322Not curried \336sh again!) 98.14 650.9 T |
3888 |
|
|
260.14 640.9 494.14 757.9 R |
3889 |
|
|
7 X |
3890 |
|
|
V |
3891 |
|
|
0 F |
3892 |
|
|
0 X |
3893 |
|
|
(The text in the following paragraphs will \337ow) 260.14 749.9 T |
3894 |
|
|
(around the \336gure if there is enough room. The) 260.14 735.9 T |
3895 |
|
|
-0.08 (browser is free to position the caption at the top,) 260.14 721.9 P |
3896 |
|
|
(bottom or sides of the \336gure.) 260.14 707.9 T |
3897 |
|
|
%%BeginBinary: 10541 |
3898 |
|
|
319 200 153.12 96 0 98.14 661.9 |
3899 |
|
|
/red < |
3900 |
|
|
70602080209FEFAF7070808010EFEF80EFBF907DBF10BF408081AF76956ABF20 |
3901 |
|
|
AF1070609F626660DF20DF388FCFC050CF9F5010CFBF300020AFDF00DF806040 |
3902 |
|
|
AF7F0038BFDF70107020AEBF985431588720B9E120607052707010509BEF68AF |
3903 |
|
|
9F439F508F30CF2060206B30819950208F388F528F80CF3000DFDF18EF501050 |
3904 |
|
|
AF2A8FDFCF50BF20505080AF8F472030503040BFBF9F109B3A5020303010EF60 |
3905 |
|
|
BFBF1000CF70308420EFDF5070EF60BFCF00EFEF407020B910307077FEFEBA00 |
3906 |
|
|
FE55FE8AC5FEFFFF000000000000000089000080FF4ACD798EFF61DF9CB7FF4F |
3907 |
|
|
D3869DFF40C67083FF4ED18299FF008A0000FF4DD08096006EE9AECC00FFFF00 |
3908 |
|
|
> store |
3909 |
|
|
/green < |
3910 |
|
|
9F70808F71BFBFAF609F70AF30BEBF70AFBFAF85BF009F707083BF7B9A858F00 |
3911 |
|
|
AF5080409F7B809FAF40BD877FDFCF40AFAF2010CFAF704170BF9F00CF9F405B |
3912 |
|
|
CF882062BFBF607060209CBF8658506A6B30AEEF9070403A406060308ABF8FAF |
3913 |
|
|
7053BFB070289E2030207038879470109F34604970BFAF5000BFDF34BE502057 |
3914 |
|
|
9F3ABFDFCF408F308F409FBFBF5572289F207080CFBF10A4351020502060DD50 |
3915 |
|
|
DFCF1071CF78308000BFDF40D0AFC0BFDF40EFDF40AF107F00807077DCBABAFE |
3916 |
|
|
7498FE98D400FF00FF00FF772E4DC443C9778BC5FF58D98FA8FF57D78BA3FF41 |
3917 |
|
|
C76F82FF3BC16679FF50D3859CFF43CA778CFF4CCF7E940063E09CB78C00FF00 |
3918 |
|
|
> store |
3919 |
|
|
/blue < |
3920 |
|
|
8F8F9F709F9FBF8F209F309F2080507070508079873080815280807972A96030 |
3921 |
|
|
70606050408F7D9FBF405097209F6060708F30208FAF80708FAF60209F9F206A |
3922 |
|
|
8F8F306B4080809F403078AF6B692075683084609F60305A5060802049609FAF |
3923 |
|
|
706570BF3038504040506E407A8F8F306040506D10BFAF5030CFAF5070304056 |
3924 |
|
|
502A9F8050808F208070AFBFCF6EAF30AF587040BF5010833010208F30604040 |
3925 |
|
|
DF9F008FCF8F505A20AF7010DF50CF70DF406030608F206A008F20FEDCBABA0D |
3926 |
|
|
11FEFEB4E10000FFFFFF009F3E67FF5ADF9EBADDFF59DA92ABFF53D4859CFF43 |
3927 |
|
|
C87185FF40C66F82FF4BCE7C92FF5AE09FBBFF49CC798E0054D5859CBB00FF00 |
3928 |
|
|
> store |
3929 |
|
|
BEGINBITMAPCOLORc |
3930 |
|
|
z |
3931 |
|
|
TKC1 |
3932 |
|
|
|
3933 |
|
|
J# |
3934 |
|
|
P;FFFFJ$J" |
3935 |
|
|
P;C1FFFFKFFJ$J" |
3936 |
|
|
P<C1C1FFKFFJ#J$ |
3937 |
|
|
P>C1FFIC1FFFFJ$J"F"A">" |
3938 |
|
|
P?C1FFFFHC1FFFFFFJ$J"J" |
3939 |
|
|
P@C1C1FFO)FF6FFJ"J#A%J$A# |
3940 |
|
|
PCFFGC1FFFFFFFFC14C1FFFFFFFFJ$A"J&J"8#=$J$ |
3941 |
|
|
PBC1C1FFFFEFFFFC1C1C16C1FFFFFFFFC17FFFFFFJ#A"J%J#<%J' |
3942 |
|
|
PDC1FFFFBFFFFFFC1;FFBBFFFFC1C15FFFFFFFFC1C1J#?"J%8%J&9$:Y8( |
3943 |
|
|
PEC1FFC1BFFFFC1C1FFFFFFFF5C1FFFFBBFFFFFFC1FFFFFFC1C1C1C1J"J$J"J":(I";"8Px' |
3944 |
|
|
P/FF6C1FFFF4FF6C1C1C1C1FFFFFFFFC1FFC0FFFFFFFFC1C1J";"F$J%F#>'>"B#8'C#8" |
3945 |
|
|
P0FFFFC1C1FF4FFFFFFFFFFC1C1C1C1FFFFFFFFFFFFC0C0C0C0C0C0C0C0FFJ";";"C#H)B"C%<">%9#J' |
3946 |
|
|
P/C1FFFFC1FFC1C1C1C1C1FFFFFFFFC1C1FFFFFFFFFFFFFFC0C05C0C0FFFFFFFFJ$9"9"J&A"D$:$;'8"J' |
3947 |
|
|
P0C1FFFFC1FFGC1C1FFFFFFC1C1C1FFFFFFC1FFFFFFC0C0C0C09C0C0C0FFFFFFJ$:%D$J%>"H$9":&9#J# |
3948 |
|
|
P1C1FFFFFFFFC1C1C1FFFF7C1C1FFFFFFC1FFFFC1FFFFFFC0C0C0C0=C0C0JZ9":$G"J$>"H&8'J" |
3949 |
|
|
P /C1FFFFC1C1:C1FFFFC1C1FFFFFFC1FFFFFFC0C0C0GFFJx,I#J"Z9"9&J" |
3950 |
|
|
P!C0FFFFFFFFC1C1FFFFFFFFC1C1FF9C1:C1FFFFFFC0C0IC0J"B'9"J#8#ERzP8% |
3951 |
|
|
P!FFC0C0C0FFFFFFC15C1FFC1FF8C0FFFFC0C0J$D#:Q>#>"F*JtJQ |
3952 |
|
|
P C1FFFFC0C0FFFFFFFFFFFFC0C0C0C0C0C08C0BJ$Eu%:%;"E&J* |
3953 |
|
|
P!C1FFFFC0FFFFFFFFC1FFFFFFC1FFFFFFC0C0O:FFFFBBFFC1C1FFFFFFJ%J&:&:#A&<YJ, |
3954 |
|
|
P"C1FFFFFF7C0C0C0FFFFC1C1FFFFFFC1FFFFFFFFC0C0O'FFC1C1FFFFFFC1C1C1FFFFJ&J$;&<"=%:%x$J"?$ |
3955 |
|
|
P#C1C1FFFFFF8C0FFFFC1C1FFFFFFFFFFFFC0C0FFFFFFFFC2FFFFFFO$FFC1FFFFJ'>%@$<)=%:'C%JQ":#9% |
3956 |
|
|
P%C1C1FFFFFFFFFFFFFFFFC0FFFFC1C1FFFFFFC1C1FFFFFFFFC0FFFFFFC2C2C2C2C2FFFFLC1BBFFC1FFFFFFJ'@#?%<&=%:%H$J#;"8'9#8" |
3957 |
|
|
P'C1C1C1FFFFFFFFFFC0C0FFFFC1C1FFFFFFFFFFC0C0FFFFC2C2C2FFFFIFFFFC1FFC1C1FFFFFFC1C1FFJY9$9#:#?&;#:P";$J"J$;#=$:" |
3958 |
|
|
OJFFFFFFC0C0FFFFC0C0FFFFFFC1C1C0FFFFC25C2GFFFFFFC1C1C1FFFFC1J#sA":#E#S9';$J"J#<#@$:# |
3959 |
|
|
OIFFFFC1FFC0C0C0C0C0C0C0C0C0C0FFFFC28FFCFFFFC1C1C1FFFFC1C1J#;+8#="9$@vB"J"J"<#<#8"8" |
3960 |
|
|
OIC1C1FFFFFFFFC1C1C1C1C1C1C1C1C0FFFFFFC0C28C2CFFC1C1FFC1C1C1J&="9"<";#J"J"J"<"F" |
3961 |
|
|
P!FFFFC1C1C1C1FFC0FFFF=FF<FF@FFC1C1J"C$C$ER;"J"J"<" |
3962 |
|
|
P"C1C1FFFFFFFFFFC2:C2@FFC1J"E%:"J$r$;$J$<"?" |
3963 |
|
|
P!C1C1C1FFFFC05FFFFFFC2FFFFFFFFFFFFO%FFFFFFC1FFJ"<$:"H&=%9"9"J#>"@# |
3964 |
|
|
P,C1C1FFFFC0FFFFFFC2C2C2C2FFFFFFFFO"FFFFC1C1C1J$:"<"?%A"J"># |
3965 |
|
|
P4C1FFFFC0C0FFFFC2C2C2O*FFC1C1J$:":">%D"J">" |
3966 |
|
|
P5C1FFFFC0C0FFFFFFC2C2O(FFC1J"<%@#I"9"J"=# |
3967 |
|
|
P6C1C0C0C0C0C2C2C2C2MFFC1C1J"F"J$J#=" |
3968 |
|
|
P8FFFF7C2C2C2LFFFFC1J"H"8$D"J# |
3969 |
|
|
P7C1C2FFFFFFFFO*C1C1JZE"9"B$J"J#;# |
3970 |
|
|
P&7FFFFC2FFFF9FF4FFFFC1C1J%x<$J"J"J"A# |
3971 |
|
|
P#FFFFFFFFC1C0C0C0AC2;C09C1FFFFJ&A#9%JXF"J":#8U# |
3972 |
|
|
P"FFFFC1C1C1FFFFC1C1FFFF@FF4FFC1C1C1C1J#C'8$D$9">#C"D$J%u |
3973 |
|
|
P"C1C1FFFFC1C1FFC1C1FFFFFFC2C2C2FFFFFFFFFFC08FFFFFFFFC1J&;"D"9$>":":"<"D"I"8r |
3974 |
|
|
P0FFFFC1C1FFC1C0C2C2C2FFBEBEFFC0FFC1J$9";#D"F$8$H"J# |
3975 |
|
|
P/FFFFC1C1C1FFFFBEBEBEBEBEBEFF8FFFFJ"8#>"B"J$J"8% |
3976 |
|
|
P0C1FFC1FFC0JFFFFC05C1BBFFFFFFJ#8"?$J"HU8QG+ |
3977 |
|
|
P.FFC1FFC1FFFF9C2C1FFFFC1C1C1FFFFFFFFJ$?$?Z9$8$<#zP@"9":' |
3978 |
|
|
P1FFFFC1C1FFFF0FFBEFFFFBEFFFFFF0BCFFC1C1C1C1C1FFFFJ#9"A$:Pz:":"=#F*="9#<& |
3979 |
|
|
P-FFC1C1C1FFFF/BCFFFFBCBCBCBCBCBCBCFFFFFFFFC1C1FFC1C1FFFFFFJ"9(E#C#J(@"=( |
3980 |
|
|
P?C1FFFFFFBCBCBCBCBCBCBCBC7BCBCBCFFFFFFFFFFC1C1C1FFFFFFFFJ"9#D'J#?#J'=$?$ |
3981 |
|
|
P,FFFFC1C1FFFFFFBCBC5BCBCBCBC<BCBCBCFFFFFFC1FFFFC1C1C1J%E&J#<"J%=#B" |
3982 |
|
|
P,C1C1C1FFFFFFBCBCBC9BCBCBCABCBCFFFFC1C1C1J"C$J":"J"8" |
3983 |
|
|
P0C1FFFFBC>BCBCDBCFFJ"D$J%J% |
3984 |
|
|
P.FFFFFFBC@BCFFBCBCFBCBCFFFFJ"B$J#J$ |
3985 |
|
|
P/C1FFBCBCAFFBCJBCFFFFJ$J"J" |
3986 |
|
|
P:FFFFBCBFFMBCJ"B"J$J# |
3987 |
|
|
P.C1BCBFFFFBCMBCFFJ#J$ |
3988 |
|
|
P9FFBCBFFFFBCJ"J"J" |
3989 |
|
|
P8FFEBCO#FFJ$J#J" |
3990 |
|
|
P7FFFFBCBFFBCO#BCJ"J"J" |
3991 |
|
|
P8BCBFFO'FFJ"J"J" |
3992 |
|
|
P6FFEBCO%BCJ"J"J" |
3993 |
|
|
P7BCBFFO)FFJ"J" |
3994 |
|
|
Q-BCO'BCJ" |
3995 |
|
|
P5FFJ" |
3996 |
|
|
P6BCJ# |
3997 |
|
|
Q+FFBC |
3998 |
|
|
|
3999 |
|
|
|
4000 |
|
|
|
4001 |
|
|
|
4002 |
|
|
J" |
4003 |
|
|
P6FFJ" |
4004 |
|
|
P5C1J" |
4005 |
|
|
Q3FFJ#J":$ |
4006 |
|
|
P6C1FFBFFFFBCBCJ"J";"8"J" |
4007 |
|
|
P;FF=BCBCFFO FFJXI'8"J,8"J"8":":" |
4008 |
|
|
OEC1FFFFBCBCFFFF:BCFFBCFFFFBCFFBCBCBCFFFF=FFFFFFC1J%xSC"8%JP$9%J%:"8# |
4009 |
|
|
OAFFFFFFFFC1BCBCFFBCBC9BCBCBCBCFFBCBC=BCBCFFBCBCFFC1J'CsV&9"8"9"E"8$<%9(J$>" |
4010 |
|
|
O?FFFFFFC1C1C1C1C1C1FFFFFFFFFFFFFFBCBCBCFFBCFFBCFFBCFFBCFFBCFF4FFBCFFFFJ&Ju$9P;";$="9$:%8&9"E"<#<$ |
4011 |
|
|
O=FFFFFFC1C18C1FFFFFFBCFFBCFFBCFFFFBCFFBCBCBCFFBCBCBCBCBCFFBCBCFFFFC1J%J%8$8"9";%<$9+8"8&8"A$;"8) |
4012 |
|
|
O<FFFFC1C1DC1C1C1C1BCBCBCFFFFFFBCBCBCFFBCFFBCBCBCFFFFBCBCFFBCFFBCFFBCFFFFFFFFFFBCBCFFFFBCFFFFBCFFFFC1J$J(8R<"8';)8"r#@S8%8"8R |
4013 |
|
|
O;FFFFC1JC1FFFFFFFFBCBCFFFFBCBCBCBCFFBCFFFFBCBCBCBCFFFFBCFFBCFFFFFFFFFFJ%J";$8)8"8";#:%?"=$:#;)8uZ |
4014 |
|
|
O9FFFFC1C1LC1BCBCBCBCBCBCFFFFBCFFFFBCBCFFBCBCBCFFFFFFFFBCFFFFBCBCBCBCBCBCFFBCBCC1CJ$J"9"9#9$B%;&8"="9$8'8"8"8&@z# |
4015 |
|
|
O8FFC1C1O!C1FFBCBCBCFFFFBCBCBCFFBCFFFFBCBCBCBCBCBCBCFFBCBCBCBCBCBCFFBCBCFFFFC1CC1FFFFJ#J$8"8Q#=#;";"8#<"=#8$8&8"8%J$ |
4016 |
|
|
O6FFFFO%C1C1FFFFBCBCFFFFBCFFFFFFBCFFFFFFBCFFFFBCBCBCFFBCFFFFFFC1O C1C1FFJ#J"Q&8%9#:";)B#8":#8*J" |
4017 |
|
|
O7C1C1O&C1BCBCBCBCBCBCFFFFFFBCBCFFFFFFC0C0C0FFFFFFBCBCBCBCFFBCFFFFBCFFFFFFC1C1O$FFJ#J#A"8$?"9%9"8$D#9"9'TJ" |
4018 |
|
|
O5FFC1O'FFFFFFBCBCBCBCFFFFC0C0C0FFFFFFFFBCBCBCFFFFFFC1C1JC1J#J%sP:"B%A%8"="<(u |
4019 |
|
|
O4FFC1O$FFFFFFFFC1FFFFFFFFC0FFFFFFFFFFBCFFFFFFFFC0FFFFC1J#J(>&Z#FZ$9" |
4020 |
|
|
O3FFC1O"FFFFFFC1C1C1C1C1C1C1C1C12C0C02C0C0C0FFJ"J&G%=(J%9"9" |
4021 |
|
|
O2FFO"FFFFC1C1C1C1C1C1C1C1FFC0C0C0C0C0@C0C0C0C0FFFFJ$J'FS8&J' |
4022 |
|
|
O1FFFFC1KFFFFFFFFC1C1C1C1C1C1C1O!C1C1FFBBFFFFJ"J'H'8#="J%J# |
4023 |
|
|
O2C1JFFFFC1C1C1C1C1C1C1C1C1C1C1C1FFO!FFC1C1FFO"C1FFJ"J%J%>$J"9"9# |
4024 |
|
|
O1C1IFFFFC1C1:FFFFFFC1C1FFFFIFFC1C1FFJ&J&@$J$=# |
4025 |
|
|
P*FFFFFFC1C1:FFFFFFC1C1C1FFFFGFFFFC1C1FFJ&J%C%J":#9#J# |
4026 |
|
|
P(FFFFC1C1C1;FFFFC1C1C1FFFFFFFC1C1FFC1FFO C1FFJ&J#F#J# |
4027 |
|
|
P%FFFFFFC1C1>C1C1C1C1O$C1FFJ&J"C#J" |
4028 |
|
|
P#FFFFC1C1C1OKFFC1FFO FFJ&JWJ"<#;#J# |
4029 |
|
|
P FFFFFFC1C1MDC1C1FFC1FFLC1C1J&J%vJ# |
4030 |
|
|
OLFFFFFFC1C1KFFFFFFFFC1O&C1FFJ&J'A#J# |
4031 |
|
|
OJFFFFFFC1C1KFFFFFFC1C1C1C1FFO%C1FFJ&J$J" |
4032 |
|
|
OHFFFFC1C1C1MC1C1C1O7FFJ%J%J">" |
4033 |
|
|
OFFFFFFFC1O0FFFFFFFFLC1C1J%J"8#J# |
4034 |
|
|
OEFFFFC1C1O0FFC1C1O(C1FFJ$J#8"9"J# |
4035 |
|
|
ODFFC1C1O0FFFFC1FFO'C1FFJ$J&9"J# |
4036 |
|
|
OBFFFFC1O1FFFFBBFFC1C1O)C1FFJ"J'J" |
4037 |
|
|
OCC1O0FFFFC1C1FFC1O0FFJ#J'JV@$ |
4038 |
|
|
OAFFC1O/FFFFFFC1C1FFJC1FFFFJ"J)="Jt%>" |
4039 |
|
|
O@FFO0FFC1C1C1C1FFFFC1FFBC1FFFFFFFFC1J"J$9$="J"?&># |
4040 |
|
|
OAC1O-FFFFC1FFFFC1C1BC1C1C1C1FFFFC1FFJ"J#;"J#?# |
4041 |
|
|
O?FFO/C1C1C1O*C1C1C1FFJ"J"J# |
4042 |
|
|
O@C1O3FFO'FFFFJ"J% |
4043 |
|
|
Q'C1O$FFFFFFC1J"J"J' |
4044 |
|
|
O?C1O4C1O"FFFFFFFFC1C1J"9& |
4045 |
|
|
R$FFFFFFC1C1C1J& |
4046 |
|
|
R%BBFFFFC1C1J$ |
4047 |
|
|
R%FFFFC1JPJ" |
4048 |
|
|
Q*EC1J%QJ" |
4049 |
|
|
Q*C1C1C1C1?C1J$J" |
4050 |
|
|
Q.C1C1C1O FFJPJ" |
4051 |
|
|
Q,MFFJQ%:"J"C" |
4052 |
|
|
Q&C1C1C1C1FFJC1C1J#JP'8'J# |
4053 |
|
|
P9FFFF4C1C1C1C1C1C1FFFFFFC1C1C1IFFC1J"8"F)<&J# |
4054 |
|
|
P8FFFFFFFFFFC1C1C1C1C1FFFFFFC1C1KFFC1J$J"H&?&J" |
4055 |
|
|
DFFFFFFO>FFFFFFC1C1C1FFFFC1C1C1LFFJ"9"IUJ#@%J$ |
4056 |
|
|
CFFFFO3C1C1FFFFC1C1O FFFFC1J#F"@#D#J"J%J" |
4057 |
|
|
HFFFFFFFFFFFFFF@C18FFFFFFC1O#C1J"="D"C"B"8"J%J# |
4058 |
|
|
BFFFFFFFFFFFFO)FFFFC1C1O"FFC1J"B"E#J%J%J# |
4059 |
|
|
KFFFFFFFF>FFFFFFFFAFFFFFFC1O#FFC1J":s<"J":"J#J" |
4060 |
|
|
O)FFC1FF<FFFFAC1C1O#FFJ":#D":">#J"J#J$ |
4061 |
|
|
AFFC1C1FFC1C1C1@FFEFFC1O$FFFFC1J"J#<"J"@RJ" |
4062 |
|
|
O8C1=FFFFC1?C1CC1J"J"B"8"J"<#J*Ps8u># |
4063 |
|
|
EC14C1C1C18FFC1C1IFFFFFFC1C1C1C1C1C1BDBDFFC1J#J"J'>$<%@";" |
4064 |
|
|
O:C1C18FFO!FFFFFFC1C1C1BDBDBDFFFFFFBDBDFFJ"A"J#="J%=%>%A":$D# |
4065 |
|
|
@FFFFO%FFFFC1GFFC1C1C1FFFFFFBDFFFFBDBDFFC0FFFFFFFFJ"J"=#J"?%@"D":$B$ |
4066 |
|
|
DC1O,FFC1C1HC1FFFFBDBDBDC0C0FFC1FFC1C1J"J#;$J$@"D"I$ |
4067 |
|
|
HC1O&FFFFC1C1C1O%FFFFBDFFFFFFFFC1J"J#<"D"J$B"B$F% |
4068 |
|
|
MFFMFFFFC1FFFFFFFBDBDFFFFC0FFFFC1C1J"J"="I"J"J$E% |
4069 |
|
|
?FFO,FFC1C1CBD9FFFFC0FFFFC1C1J";":"J"<#J"C"B$D% |
4070 |
|
|
CC1C1FFJFFC1C1O(FFFFFFFFC0FFFFFFC1J"J"<"J#G"C"B"D% |
4071 |
|
|
O'FFBFFC1FFFFFBDBDC0FFFFC1C1J"A"D"J#J%C"C"B"C& |
4072 |
|
|
>FFC1C1CC1C1GC1C1FFFFFFFFFFFFFFFFC1C1J"B"J"J%@$C"B"A% |
4073 |
|
|
BC1FFLC1KC1C1FFFFFFFFBDBDC0FFFFC1C1J"J"J"J&>"JX |
4074 |
|
|
KC1O!C15FF8C1C1FFFFFFBDIJ"J%;"D"Jz |
4075 |
|
|
O"FFOMC1C1FFFFFFFF:/C1J"D"J"J"J&9"D"J# |
4076 |
|
|
=FFC1O FF9C18C1FFFFFFFFBDBD9FFFFJ"J"J'D"C"C$ |
4077 |
|
|
AC1O,FFO$C1C1C1FFFFFFFFFFC1FFFFJ"J%D"C"C$ |
4078 |
|
|
O#FFP$C1C1FFBDBDC0C1FFFFJWB"J":"H"J$ |
4079 |
|
|
AFF>C1FFFFOBC1FFFFJ"J"J"J"J$ |
4080 |
|
|
<FF8C1HFFO&FFO C1C1FFJ"="J"J"J"C#J$ |
4081 |
|
|
O$FFFF>C1:C1?BDFFBD@C1FFFFJ#A":"J"D";$ |
4082 |
|
|
O?FFFFC1FFOBFFFFC1FFFFJz="J"8"A":"J"B"=$ |
4083 |
|
|
@/C1C15FFFFC1FFOBC0C0C1FFFFJ"J"J":"JYJ$ |
4084 |
|
|
;FF?FF@C1FFCO&C1FFFFJ"I"9":"J":"J$yD"J" |
4085 |
|
|
?C1FFC1FF@C1FF?FFFFFFC1FFFC1J"C"J"J'J"J">$ |
4086 |
|
|
O!C1FFEFF;FFFFFFFFC1C1=BD=FFC1FFFFJ"J"9";#J";"A"8"B$J"@$ |
4087 |
|
|
:FF9FFC1FFFF>C1FFC1C1C1C1C1O.C0C1FFFFJ"G">"<$>"I";"A#B"J" |
4088 |
|
|
>C1C1C1FFFFFFFFC1FFC1C1C1O=C1J">SJ"JPJ" |
4089 |
|
|
O,C15C1MO,FFJ"J#H"G":"J(J"@# |
4090 |
|
|
9FFAC1C1C1C1FFEFFFFC1C1C1C1C1O FFC1C1J"J"="F"J">#J$J$ |
4091 |
|
|
=C17FFC1C18FFFFFF9FFFFC1O$C0FFFFJ"J$B"J"B"8"J%;"D"J" |
4092 |
|
|
8FFEC1C1C1C14C1FFFF6FFFFC1C1FFBD?C0J"J"Ew<"E":"J%>" |
4093 |
|
|
<C14C1C1FFC1FF>FFFFC1C1BDJ"8"I$J" |
4094 |
|
|
P3C1C1FFFFC1O,FFJ"B"9"=#I$J" |
4095 |
|
|
OIC1C1C1C1C1FFC1C1O,C0J"8"J"8"D$J$J" |
4096 |
|
|
O$C1C1=C1C1C1C1C1;FFFFC1ODFFJ#J#J"J# |
4097 |
|
|
O%C1C1?C1C1O C1OCFFFFJ"8"J"J"D' |
4098 |
|
|
8C1C1P+C1O2FFFFFFFFFFC1C1J#J"B( |
4099 |
|
|
9C1C1Q>C0FFFFFFFFC1C1C1J"=( |
4100 |
|
|
R-FFFFFFFFC1C1C1C1J"J"J$9' |
4101 |
|
|
Q)FF;FF4C0FFFFFFFFFFFFC1C1J"J"J"9& |
4102 |
|
|
Q(C1=C04C0FFFFC1C1C1J"J"J#8R |
4103 |
|
|
Q*FF9FF8FFFFJ$J$J":r% |
4104 |
|
|
Q)C1FFFF7FFFFC06C0C1FFFFFFFFJ$J$J%;( |
4105 |
|
|
Q*C1FFFF5FFFFC0:BBFFFFFFC1C1C1C1FFFFFFJ$I$J&>' |
4106 |
|
|
Q+C1FFFFFFFFC0;FFC1C1FFFFC1C1C1FFFFFFJ&D%J"9&@& |
4107 |
|
|
Q,C1FFFFFFFFFFFFC0C09FFFFC1C1C1FFC1C1C1FFFFJ$Z"J#;"8#B& |
4108 |
|
|
Q-C1C1C10C09FFFFFFC1FFC1C1FFFFFFJ#yJ"A#C% |
4109 |
|
|
Q0C1FFC09FFC1FFC1C1FFFFJ"J"D"D% |
4110 |
|
|
Q0FFGFFFFC1C1FFFFJ$B"J"D$E% |
4111 |
|
|
Q"FFFFFFC0EFFC1FFFFC1C1FFFFJ#PJ"A":"H$ |
4112 |
|
|
Q"C1C1MFFFFC1C1FFFFJ(J#C":"H# |
4113 |
|
|
Q$C1C1C1C1FFFFFFIFFFFFFC1C1C1J)J" |
4114 |
|
|
Q(C1C1C1FFFFFFC1FFCFFJ'J"G"A" |
4115 |
|
|
Q+C1C1FFFFFFC0AFFFFFFJTJ"J$ |
4116 |
|
|
Q$DFF<FFFFC1J(J"J"?" |
4117 |
|
|
Q"FFFFFFC1C1C1C1GFF4FFC1J%9)J"J# |
4118 |
|
|
Q!FFFFC1C1FFFFC1C1C1C1FFC0?FF=FFC1J#9%J#J";" |
4119 |
|
|
Q!C1C1FFFFC1C1CFFFF7FFFFJ%J"J" |
4120 |
|
|
Q$FFFFFFC1DFF@C1J%J"J# |
4121 |
|
|
Q#FFFFC1C1DFF?FFC1J%J"J"8" |
4122 |
|
|
Q!FFFFC1C1EFF<FFFFJ$@"JsJ"?RJ"9*;";+ |
4123 |
|
|
Q FFFFC1FF<C09C1O#BFBFC1BFBFBFBFBFC1BFBFBFBFBFBFBFC1BFBFBFBFJ%B"Jy>"=PrJ$8&D%8% |
4124 |
|
|
PLFFFFC1C1C0CC0FFC1O$BFC1BFC1C1BFC1C1C1C1C1C1C1C1C1BFJ%JsT%J$J# |
4125 |
|
|
PJFFFFC1C1O2C0C1C1C1C1O+C1BFC15BFBFJ%D#J"8'J"J#:% |
4126 |
|
|
PHFFFFC1C1FFC0O,C0C1C1C1C1C1C1O0C16C1C1BFBFBFC1J%J# |
4127 |
|
|
PFFFFFFFC1QFC1C1JP#F"J$J&8%8%8%:# |
4128 |
|
|
PBC1C1FFO/C0FFFFO9BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFC1BFJ&I"J$J"9z9" |
4129 |
|
|
PBC1C1C1C1C1C0O/C0FFFFO2C1;C1C1J#J% |
4130 |
|
|
Q)FFFFO2C0FFFFFF |
4131 |
|
|
ENDBITMAP |
4132 |
|
|
%%EndBinary |
4133 |
|
|
72 108 523.3 769.9 C |
4134 |
|
|
0 0 595.3 841.9 C |
4135 |
|
|
FMENDPAGE |
4136 |
|
|
%%EndPage: "18" 23 |
4137 |
|
|
%%Page: "19" 23 |
4138 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4139 |
|
|
0 10 Q |
4140 |
|
|
0 X |
4141 |
|
|
0 K |
4142 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4143 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4144 |
|
|
(19) 292.65 70.23 T |
4145 |
|
|
2 F |
4146 |
|
|
(<A SHAPE=\3230.5,0.25&0.5,0.5&0.8,0.5&0.8,0.25\323 HREF=\323button2.html\323>) 108 763.23 T |
4147 |
|
|
(rectangle</A>) 108 751.23 T |
4148 |
|
|
(</FIG>) 90 739.23 T |
4149 |
|
|
0 12 Q |
4150 |
|
|
(Which could be rendered as:) 72 720.9 T |
4151 |
|
|
(The example uses scaled coordinates, and shows how you give the vertices of the polygon) 72 538.9 T |
4152 |
|
|
(de\336ning the shape of the button. Like the) 72 524.9 T |
4153 |
|
|
2 10 Q |
4154 |
|
|
(ISMAP) 272.21 524.9 T |
4155 |
|
|
0 12 Q |
4156 |
|
|
( mechanism, you can use pixel-based coordi-) 302.19 524.9 T |
4157 |
|
|
(nates by using integer numbers throughout. Note that clicks on shaped buttons take prece-) 72 510.9 T |
4158 |
|
|
(dence over the) 72 496.9 T |
4159 |
|
|
2 10 Q |
4160 |
|
|
(ISMAP) 144.93 496.9 T |
4161 |
|
|
0 12 Q |
4162 |
|
|
( mechanism for sending events to the server) 174.91 496.9 T |
4163 |
|
|
(. An ef) 385.1 496.9 T |
4164 |
|
|
(\336cient algorithm for) 417.85 496.9 T |
4165 |
|
|
(testing if a mouse/pen click lies inside a polygon is given as a C routine in Appendix III.) 72 482.9 T |
4166 |
|
|
1 F |
4167 |
|
|
(8.3) 72 454.9 T |
4168 |
|
|
(Possible extensions) 99 454.9 T |
4169 |
|
|
0 F |
4170 |
|
|
(In future, HTML+ may be extended to support simple drawings with embedded hypertext) 72 435.9 T |
4171 |
|
|
-0.28 (links. One idea would be a line drawing primitive using the) 72 421.9 P |
4172 |
|
|
2 10 Q |
4173 |
|
|
-0.55 (SHAPE) 356.8 421.9 P |
4174 |
|
|
0 12 Q |
4175 |
|
|
-0.28 ( attribute. A better approach) 386.78 421.9 P |
4176 |
|
|
(is to extend existing drawing formats such as the ANSI Computer Graphics Meta\336le format) 72 407.9 T |
4177 |
|
|
(\050CGM\051 or Adobe\325) 72 393.9 T |
4178 |
|
|
(s PDF to include URL based hypertext links. This extended format could) 158.6 393.9 T |
4179 |
|
|
(then be used for \336gures within HTML+ documents.) 72 379.9 T |
4180 |
|
|
-0.16 (The use of the MIME multipart message format would also help to speed up the display of \336g-) 72 360.9 P |
4181 |
|
|
(ures by sending image data at the same time as the HTML+ document. Another possibility) 72 346.9 T |
4182 |
|
|
(would be to allow image data to be embedded in the document using an) 72 332.9 T |
4183 |
|
|
2 10 Q |
4184 |
|
|
(EMBED) 419.1 332.9 T |
4185 |
|
|
0 12 Q |
4186 |
|
|
( element in) 449.08 332.9 T |
4187 |
|
|
(place of the) 72 318.9 T |
4188 |
|
|
2 10 Q |
4189 |
|
|
(SRC) 130.95 318.9 T |
4190 |
|
|
0 12 Q |
4191 |
|
|
( attribute. Binary data could be represented using the MIME character encod-) 148.94 318.9 T |
4192 |
|
|
(ing or the more compact ASCII base 85 encoding, as used in Adobe\325) 72 304.9 T |
4193 |
|
|
(s PDF) 401.43 304.9 T |
4194 |
|
|
(. The drawback) 430.14 304.9 T |
4195 |
|
|
-0.36 (with this approach is the inability to use format negotiation. As a result, the) 72 290.9 P |
4196 |
|
|
2 10 Q |
4197 |
|
|
-0.72 (EMBED) 431.43 290.9 P |
4198 |
|
|
0 12 Q |
4199 |
|
|
-0.36 ( element has) 461.42 290.9 P |
4200 |
|
|
(been dropped from the current draft.) 72 276.9 T |
4201 |
|
|
1 14 Q |
4202 |
|
|
(9) 72 247.57 T |
4203 |
|
|
(T) 90 247.57 T |
4204 |
|
|
(ables) 97.51 247.57 T |
4205 |
|
|
0 12 Q |
4206 |
|
|
(T) 72 227.9 T |
4207 |
|
|
(ables are speci\336ed using the T) 78.49 227.9 T |
4208 |
|
|
(ABLE element. This allows you to de\336ne a caption and to dif-) 222.42 227.9 T |
4209 |
|
|
-0.48 (ferentiate header and data cells. Cells may contain, text, multiple paragraphs, lists and headers.) 72 213.9 P |
4210 |
|
|
72 108 523.3 769.9 C |
4211 |
|
|
98.14 553.9 497.16 716.9 C |
4212 |
|
|
179.14 581.9 404.14 716.9 R |
4213 |
|
|
7 X |
4214 |
|
|
0 K |
4215 |
|
|
V |
4216 |
|
|
0.5 H |
4217 |
|
|
0 Z |
4218 |
|
|
0 X |
4219 |
|
|
N |
4220 |
|
|
260.14 707.9 206.14 608.9 260.14 608.9 3 Y |
4221 |
|
|
3 X |
4222 |
|
|
V |
4223 |
|
|
0 X |
4224 |
|
|
N |
4225 |
|
|
287.14 644.9 377.14 689.9 R |
4226 |
|
|
6 X |
4227 |
|
|
V |
4228 |
|
|
0 X |
4229 |
|
|
N |
4230 |
|
|
0 12 Q |
4231 |
|
|
(Button 2) 314.14 662.9 T |
4232 |
|
|
(Button 1) 197.14 590.9 T |
4233 |
|
|
179.14 554.9 404.14 572.9 R |
4234 |
|
|
7 X |
4235 |
|
|
V |
4236 |
|
|
1 F |
4237 |
|
|
0 X |
4238 |
|
|
(Click on the triangle or the rectangle) 179.14 564.9 T |
4239 |
|
|
72 108 523.3 769.9 C |
4240 |
|
|
0 0 595.3 841.9 C |
4241 |
|
|
FMENDPAGE |
4242 |
|
|
%%EndPage: "19" 24 |
4243 |
|
|
%%Page: "20" 24 |
4244 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4245 |
|
|
0 10 Q |
4246 |
|
|
0 X |
4247 |
|
|
0 K |
4248 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4249 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4250 |
|
|
(20) 292.65 70.23 T |
4251 |
|
|
0 12 Q |
4252 |
|
|
-0.38 (Adjacent cells can be mer) 72 761.9 P |
4253 |
|
|
-0.38 (ged, e.g. to de\336ne a header which spans two columns. A simple table) 194.15 761.9 P |
4254 |
|
|
(could look like:) 72 747.9 T |
4255 |
|
|
(This is de\336ned by the markup:) 72 621.9 T |
4256 |
|
|
2 10 Q |
4257 |
|
|
(<table border>) 90 604.23 T |
4258 |
|
|
(<caption>A simple table</caption>) 108 592.23 T |
4259 |
|
|
(<th>Year <th>Month <th>Day <tr>) 108 580.23 T |
4260 |
|
|
(<td>1972 <td>June <td>23rd <tr>) 108 568.23 T |
4261 |
|
|
(<td>1982 <td>October <td>7th) 108 556.23 T |
4262 |
|
|
(</table>) 90 544.23 T |
4263 |
|
|
0 12 Q |
4264 |
|
|
-0.3 (The) 72 525.9 P |
4265 |
|
|
2 10 Q |
4266 |
|
|
-0.6 (BORDER) 93.35 525.9 P |
4267 |
|
|
0 12 Q |
4268 |
|
|
-0.3 ( attribute acts as a hint to the browser to draw lines enclosing each cell. The) 129.33 525.9 P |
4269 |
|
|
2 10 Q |
4270 |
|
|
-0.6 (TH) 490.62 525.9 P |
4271 |
|
|
0 12 Q |
4272 |
|
|
-0.3 ( ele-) 502.62 525.9 P |
4273 |
|
|
(ment precedes header cell text and the) 72 511.9 T |
4274 |
|
|
2 10 Q |
4275 |
|
|
(TD) 258.17 511.9 T |
4276 |
|
|
0 12 Q |
4277 |
|
|
( element precedes data cell text. The) 270.17 511.9 T |
4278 |
|
|
2 10 Q |
4279 |
|
|
(TR) 448.02 511.9 T |
4280 |
|
|
0 12 Q |
4281 |
|
|
( element is) 460.01 511.9 T |
4282 |
|
|
(used to separate table rows. By default text is centered in each cell. Header text should be) 72 497.9 T |
4283 |
|
|
-0.44 (shown emphasised, e.g. the browser could use a bold sans serif font for headers and a serif font) 72 483.9 P |
4284 |
|
|
(for the data cells. The next example shows how cells can be mer) 72 469.9 T |
4285 |
|
|
(ged with their neighbors:) 380.54 469.9 T |
4286 |
|
|
(This table is de\336ned by the markup:) 72 317.9 T |
4287 |
|
|
2 10 Q |
4288 |
|
|
(<table border>) 90 300.23 T |
4289 |
|
|
(<caption>A more complex table</caption>) 99 288.23 T |
4290 |
|
|
(<th rowspan=2><th colspan=2>average<th rowspan=2>other<br>category<tr>) 99 276.23 T |
4291 |
|
|
(<th>height <th>weight <tr>) 99 264.23 T |
4292 |
|
|
(<th align=left>males <td>1.9 <td>0.003 <td>yyy <tr>) 99 252.23 T |
4293 |
|
|
(<th align=left>females <td>1.7 <td>0.002 <td>xxx) 99 240.23 T |
4294 |
|
|
(</table>) 90 228.23 T |
4295 |
|
|
0 12 Q |
4296 |
|
|
(The \336rst cell \050a header cell\051 is mer) 72 209.9 T |
4297 |
|
|
(ged with the cell below it:) 236.65 209.9 T |
4298 |
|
|
2 10 Q |
4299 |
|
|
(<th rowspan=2>) 364.57 209.9 T |
4300 |
|
|
0 12 Q |
4301 |
|
|
(. Note that this) 448.52 209.9 T |
4302 |
|
|
(mer) 72 195.9 T |
4303 |
|
|
(ged cell is empty - the de\336nition of the next column for the \336rst row starts immediately) 90.43 195.9 T |
4304 |
|
|
(.) 507.4 195.9 T |
4305 |
|
|
-0.32 (Looking again at the \336rst row) 72 181.9 P |
4306 |
|
|
-0.32 (, the second column is mer) 211.86 181.9 P |
4307 |
|
|
-0.32 (ged with the third:) 338.63 181.9 P |
4308 |
|
|
2 10 Q |
4309 |
|
|
-0.64 (<th colspan=2>.) 428.63 181.9 P |
4310 |
|
|
0 12 Q |
4311 |
|
|
-0.21 (The de\336nition for the third column is skipped as it was covered by the mer) 72 167.9 P |
4312 |
|
|
-0.21 (ged cell. The fourth) 426.56 167.9 P |
4313 |
|
|
(column/\336rst row is also mer) 72 153.9 T |
4314 |
|
|
(ged, this time with the next row:) 206.37 153.9 T |
4315 |
|
|
2 10 Q |
4316 |
|
|
(<th rowspan=2>) 364.95 153.9 T |
4317 |
|
|
0 12 Q |
4318 |
|
|
(. The) 448.9 153.9 T |
4319 |
|
|
2 10 Q |
4320 |
|
|
(<BR>) 476.55 153.9 T |
4321 |
|
|
0 12 Q |
4322 |
|
|
( ele-) 500.54 153.9 T |
4323 |
|
|
-0.41 (ment has been used here to force a line break between) 72 139.9 P |
4324 |
|
|
2 10 Q |
4325 |
|
|
-0.81 (other) 329.64 139.9 P |
4326 |
|
|
0 12 Q |
4327 |
|
|
-0.41 ( and) 359.62 139.9 P |
4328 |
|
|
2 10 Q |
4329 |
|
|
-0.81 (category) 382.13 139.9 P |
4330 |
|
|
0 12 Q |
4331 |
|
|
-0.41 (. The) 429.32 139.9 P |
4332 |
|
|
2 10 Q |
4333 |
|
|
-0.81 (<TR>) 456.15 139.9 P |
4334 |
|
|
0 12 Q |
4335 |
|
|
-0.41 ( element) 480.14 139.9 P |
4336 |
|
|
5 F |
4337 |
|
|
(T) 238.9 723.9 T |
4338 |
|
|
(able 1: A simple table) 245.79 723.9 T |
4339 |
|
|
1 F |
4340 |
|
|
(Y) 212.98 697.9 T |
4341 |
|
|
(ear) 220.32 697.9 T |
4342 |
|
|
(Month) 279.66 697.9 T |
4343 |
|
|
(Day) 358.65 697.9 T |
4344 |
|
|
0 F |
4345 |
|
|
(1972) 213.65 673.9 T |
4346 |
|
|
(June) 286.66 673.9 T |
4347 |
|
|
(23rd) 358.66 673.9 T |
4348 |
|
|
(1982) 213.65 651.9 T |
4349 |
|
|
(October) 278.33 651.9 T |
4350 |
|
|
(7th) 361.98 651.9 T |
4351 |
|
|
5 F |
4352 |
|
|
(T) 219.53 445.9 T |
4353 |
|
|
(able 2: A mor) 226.43 445.9 T |
4354 |
|
|
(e complex table) 296.49 445.9 T |
4355 |
|
|
1 F |
4356 |
|
|
(average) 274.98 419.9 T |
4357 |
|
|
(other) 390.66 413.9 T |
4358 |
|
|
(category) 380.65 399.9 T |
4359 |
|
|
(height) 243.66 393.9 T |
4360 |
|
|
(weight) 314.66 393.9 T |
4361 |
|
|
(males) 159.65 369.9 T |
4362 |
|
|
0 F |
4363 |
|
|
(height) 246.66 369.9 T |
4364 |
|
|
(0.003) 320.15 369.9 T |
4365 |
|
|
(yyy) 396.65 369.9 T |
4366 |
|
|
1 F |
4367 |
|
|
(females) 159.65 347.9 T |
4368 |
|
|
0 F |
4369 |
|
|
(1.9) 254.15 347.9 T |
4370 |
|
|
(0.002) 320.15 347.9 T |
4371 |
|
|
(xxx) 396.65 347.9 T |
4372 |
|
|
189.65 713.65 189.65 644.15 2 L |
4373 |
|
|
V |
4374 |
|
|
0.5 H |
4375 |
|
|
0 Z |
4376 |
|
|
N |
4377 |
|
|
261.65 714.15 261.65 643.65 2 L |
4378 |
|
|
V |
4379 |
|
|
N |
4380 |
|
|
333.65 714.15 333.65 643.65 2 L |
4381 |
|
|
V |
4382 |
|
|
N |
4383 |
|
|
405.65 713.65 405.65 644.15 2 L |
4384 |
|
|
V |
4385 |
|
|
N |
4386 |
|
|
189.4 713.9 405.9 713.9 2 L |
4387 |
|
|
V |
4388 |
|
|
N |
4389 |
|
|
189.4 687.9 405.9 687.9 2 L |
4390 |
|
|
V |
4391 |
|
|
N |
4392 |
|
|
189.4 665.9 405.9 665.9 2 L |
4393 |
|
|
V |
4394 |
|
|
N |
4395 |
|
|
189.4 643.9 405.9 643.9 2 L |
4396 |
|
|
V |
4397 |
|
|
N |
4398 |
|
|
153.65 435.65 153.65 340.15 2 L |
4399 |
|
|
V |
4400 |
|
|
N |
4401 |
|
|
225.65 436.15 225.65 339.65 2 L |
4402 |
|
|
V |
4403 |
|
|
N |
4404 |
|
|
297.65 410.15 297.65 339.65 2 L |
4405 |
|
|
V |
4406 |
|
|
N |
4407 |
|
|
369.65 436.15 369.65 339.65 2 L |
4408 |
|
|
V |
4409 |
|
|
N |
4410 |
|
|
441.65 435.65 441.65 340.15 2 L |
4411 |
|
|
V |
4412 |
|
|
N |
4413 |
|
|
153.4 435.9 441.9 435.9 2 L |
4414 |
|
|
V |
4415 |
|
|
N |
4416 |
|
|
225.4 409.9 369.9 409.9 2 L |
4417 |
|
|
V |
4418 |
|
|
N |
4419 |
|
|
153.4 383.9 441.9 383.9 2 L |
4420 |
|
|
V |
4421 |
|
|
N |
4422 |
|
|
153.4 361.9 441.9 361.9 2 L |
4423 |
|
|
V |
4424 |
|
|
N |
4425 |
|
|
153.4 339.9 441.9 339.9 2 L |
4426 |
|
|
V |
4427 |
|
|
N |
4428 |
|
|
FMENDPAGE |
4429 |
|
|
%%EndPage: "20" 25 |
4430 |
|
|
%%Page: "21" 25 |
4431 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4432 |
|
|
0 10 Q |
4433 |
|
|
0 X |
4434 |
|
|
0 K |
4435 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4436 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4437 |
|
|
(21) 292.65 70.23 T |
4438 |
|
|
0 12 Q |
4439 |
|
|
(signi\336es the end of the \336rst row and the beginning of the second. Note that empty cells at the) 72 761.9 T |
4440 |
|
|
(end of a row can be omitted as the) 72 747.9 T |
4441 |
|
|
2 10 Q |
4442 |
|
|
(<TR>) 239.54 747.9 T |
4443 |
|
|
0 12 Q |
4444 |
|
|
( element unambiguously marks the end of the row) 263.52 747.9 T |
4445 |
|
|
(.) 503.25 747.9 T |
4446 |
|
|
(The second row only contains de\336nitions for the second and third columns since the others) 72 728.9 T |
4447 |
|
|
(were mer) 72 714.9 T |
4448 |
|
|
(ged with cells on the preceding row) 116.74 714.9 T |
4449 |
|
|
(. The general rule is to avoid de\336ning any cell) 287.16 714.9 T |
4450 |
|
|
(twice. The last two rows start with headers and the) 72 700.9 T |
4451 |
|
|
2 10 Q |
4452 |
|
|
(align=left) 318.15 700.9 T |
4453 |
|
|
0 12 Q |
4454 |
|
|
( attribute ensures that the) 378.12 700.9 T |
4455 |
|
|
(browser will align these headers to the left of their cells. The) 72 686.9 T |
4456 |
|
|
2 10 Q |
4457 |
|
|
(ALIGN) 366.11 686.9 T |
4458 |
|
|
0 12 Q |
4459 |
|
|
( attribute can be one of) 396.1 686.9 T |
4460 |
|
|
2 10 Q |
4461 |
|
|
(LEFT) 72 672.9 T |
4462 |
|
|
0 12 Q |
4463 |
|
|
(,) 95.1 672.9 T |
4464 |
|
|
2 10 Q |
4465 |
|
|
(CENTER) 101.1 672.9 T |
4466 |
|
|
0 12 Q |
4467 |
|
|
( or) 137.08 672.9 T |
4468 |
|
|
2 10 Q |
4469 |
|
|
(RIGHT) 153.06 672.9 T |
4470 |
|
|
0 12 Q |
4471 |
|
|
(, with) 182.16 672.9 T |
4472 |
|
|
2 10 Q |
4473 |
|
|
(CENTER) 212.48 672.9 T |
4474 |
|
|
0 12 Q |
4475 |
|
|
( as the default. It can be used with both) 248.46 672.9 T |
4476 |
|
|
2 10 Q |
4477 |
|
|
(TH) 439.32 672.9 T |
4478 |
|
|
0 12 Q |
4479 |
|
|
( and) 451.32 672.9 T |
4480 |
|
|
2 10 Q |
4481 |
|
|
(TD) 474.63 672.9 T |
4482 |
|
|
0 12 Q |
4483 |
|
|
(.) 486.62 672.9 T |
4484 |
|
|
1 F |
4485 |
|
|
(9.1) 72 644.9 T |
4486 |
|
|
(Implementation Issues for T) 99 644.9 T |
4487 |
|
|
(ables) 257.4 644.9 T |
4488 |
|
|
0 F |
4489 |
|
|
(Browsers need a prepass through the table markup to count the number of columns and deter-) 72 625.9 T |
4490 |
|
|
(mine their widths. A simple algorithm that takes mer) 72 611.9 T |
4491 |
|
|
(ged cells into account will suf) 325.3 611.9 T |
4492 |
|
|
(\336ce. T) 468.66 611.9 T |
4493 |
|
|
(ext) 498.46 611.9 T |
4494 |
|
|
(\336elds wrap to \336t their columns, which should be sized to best match current window width.) 72 597.9 T |
4495 |
|
|
(This information should be cached to avoid speed penalties during subsequent screen refresh/) 72 583.9 T |
4496 |
|
|
(window resize operations. Browsers can ignore alignment hints if required, and using a \336xed) 72 569.9 T |
4497 |
|
|
(pitch font may speed up the sizing step.) 72 555.9 T |
4498 |
|
|
(The number of columns is given by the row with the lar) 72 536.9 T |
4499 |
|
|
(gest number of) 339.27 536.9 T |
4500 |
|
|
2 10 Q |
4501 |
|
|
(<TH>) 414.22 536.9 T |
4502 |
|
|
0 12 Q |
4503 |
|
|
( and) 438.21 536.9 T |
4504 |
|
|
2 10 Q |
4505 |
|
|
(<TD>) 461.52 536.9 T |
4506 |
|
|
0 12 Q |
4507 |
|
|
( ele-) 485.51 536.9 T |
4508 |
|
|
(ments, remembering to add in mer) 72 522.9 T |
4509 |
|
|
(ged cells. The widths of columns are evaluated by \336nding) 237.01 522.9 T |
4510 |
|
|
(the minimum and maximum widths needed for each cell, and hence the minimum and maxi-) 72 508.9 T |
4511 |
|
|
(mum width for the column as a whole. All this can be done during a single pass through the) 72 494.9 T |
4512 |
|
|
2 10 Q |
4513 |
|
|
-0.39 (<TABLE>) 72 480.9 P |
4514 |
|
|
0 12 Q |
4515 |
|
|
-0.19 ( element. Caching these min/max values for each column then permits the browser to) 113.98 480.9 P |
4516 |
|
|
(instantly adjust the table when the window is resized.) 72 466.9 T |
4517 |
|
|
1 14 Q |
4518 |
|
|
(10) 72 437.57 T |
4519 |
|
|
(Fill-out Forms and Input \336elds) 90 437.57 T |
4520 |
|
|
0 12 Q |
4521 |
|
|
(Forms are composed by placing input \336elds within paragraphs, preformatted/literal text, lists) 72 417.9 T |
4522 |
|
|
(and tables. This gives considerable scope in designing the layout of forms. Each \336eld is) 72 403.9 T |
4523 |
|
|
(de\336ned by an) 72 389.9 T |
4524 |
|
|
2 10 Q |
4525 |
|
|
(INPUT) 139.62 389.9 T |
4526 |
|
|
0 12 Q |
4527 |
|
|
( element and must have an) 169.6 389.9 T |
4528 |
|
|
2 10 Q |
4529 |
|
|
(NAME) 300.17 389.9 T |
4530 |
|
|
0 12 Q |
4531 |
|
|
( attribute which uniquely names the \336eld) 324.16 389.9 T |
4532 |
|
|
(in the document. Additional optional attributes can be used to specify the type of the \336eld) 72 375.9 T |
4533 |
|
|
-0.05 (\050defaults to free text\051, its size/precision, its initial value and whether the \336eld is currently disa-) 72 361.9 P |
4534 |
|
|
(bled or in error:) 72 347.9 T |
4535 |
|
|
2 10 Q |
4536 |
|
|
(<FORM ACTION=\323mailto:www_admin@info.cern.ch\323>) 90 330.23 T |
4537 |
|
|
(<MH HIDDEN>Subject: WWW Questionaire</MH>) 108 318.23 T |
4538 |
|
|
(Please help up to improve the World Wide Web by f) 108 301.23 T |
4539 |
|
|
(illing in the) 401.84 301.23 T |
4540 |
|
|
(following questionaire:) 108 289.23 T |
4541 |
|
|
(<P>Your organization? <INPUT NAME=\323org\323 SIZE=\32348\323>) 108 277.23 T |
4542 |
|
|
(<P>Commercial? <INPUT NAME=\323commerce\323 TYPE=checkbox>) 108 265.23 T |
4543 |
|
|
(How many users? <INPUT NAME=\323users\323 TYPE=int>) 126 253.23 T |
4544 |
|
|
(<P>Which browsers do you use?) 108 241.23 T |
4545 |
|
|
(<OL>) 108 229.23 T |
4546 |
|
|
(<LI>X Mosaic <INPUT NAME=\323browsers\323 TYPE=checkbox VALUE=\323xmosaic\323>) 126 217.23 T |
4547 |
|
|
(<LI>Cello <INPUT NAME=\323browsers\323 TYPE=checkbox VALUE=\323cello\323>) 126 205.23 T |
4548 |
|
|
(<LI>Others <TEXTAREA NAME=\323others\323 COLS=48 ROWS=4></TEXTAREA>) 126 193.23 T |
4549 |
|
|
(</OL>) 108 181.23 T |
4550 |
|
|
(A contact point for your site: <INPUT NAME=\323contact\323 SIZE=\32342\323>) 108 169.23 T |
4551 |
|
|
(<P>Many thanks on behalf of the WWW central support team.) 108 157.23 T |
4552 |
|
|
(<P ALIGN=CENTER><INPUT TYPE=submit> <INPUT TYPE=reset>) 108 140.23 T |
4553 |
|
|
(</FORM>) 90 128.23 T |
4554 |
|
|
FMENDPAGE |
4555 |
|
|
%%EndPage: "21" 26 |
4556 |
|
|
%%Page: "22" 26 |
4557 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4558 |
|
|
0 10 Q |
4559 |
|
|
0 X |
4560 |
|
|
0 K |
4561 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4562 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4563 |
|
|
(22) 292.65 70.23 T |
4564 |
|
|
0 12 Q |
4565 |
|
|
(This \336ctitious example is a questionnaire that will be emailed to) 72 761.9 T |
4566 |
|
|
2 10 Q |
4567 |
|
|
(www_admin@info.cern.ch) 382.15 761.9 T |
4568 |
|
|
0 12 Q |
4569 |
|
|
(.) 514.08 761.9 T |
4570 |
|
|
(The) 72 747.9 T |
4571 |
|
|
2 10 Q |
4572 |
|
|
(FORM) 93.65 747.9 T |
4573 |
|
|
0 12 Q |
4574 |
|
|
( element is used to delimit the form. There can be several forms in a single docu-) 117.64 747.9 T |
4575 |
|
|
(ment, but the) 72 733.9 T |
4576 |
|
|
2 10 Q |
4577 |
|
|
(FORM) 137.96 733.9 T |
4578 |
|
|
0 12 Q |
4579 |
|
|
( element can\325) 161.95 733.9 T |
4580 |
|
|
(t be nested. The) 226.34 733.9 T |
4581 |
|
|
2 10 Q |
4582 |
|
|
(ACTION) 305.28 733.9 T |
4583 |
|
|
0 12 Q |
4584 |
|
|
( attribute speci\336es a URL that desig-) 341.26 733.9 T |
4585 |
|
|
-0.1 (nates an HTTP server or an email address. If missing, the URL for the document itself will be) 72 719.9 P |
4586 |
|
|
(assumed. The ef) 72 705.9 T |
4587 |
|
|
(fect of the action can be modi\336ed by including a method pre\336x, e.g.) 150.05 705.9 T |
4588 |
|
|
2 10 Q |
4589 |
|
|
(ACTION=\323POST http://....\323) 72 691.9 T |
4590 |
|
|
0 12 Q |
4591 |
|
|
(. This pre\336x is used to select the HTTP method when sending) 221.92 691.9 T |
4592 |
|
|
(the form\325) 72 677.9 T |
4593 |
|
|
(s contents to an HTTP server) 116.3 677.9 T |
4594 |
|
|
(. W) 255.21 677.9 T |
4595 |
|
|
(ould it be cleaner to use a separate attribute, e.g.) 271.57 677.9 T |
4596 |
|
|
2 10 Q |
4597 |
|
|
(METHOD) 72 663.9 T |
4598 |
|
|
0 12 Q |
4599 |
|
|
(?) 107.98 663.9 T |
4600 |
|
|
(Servers can disable forms by sending an appropriate header or by an attribute on the optional) 72 644.9 T |
4601 |
|
|
2 10 Q |
4602 |
|
|
(HTMLPLUS) 72 630.9 T |
4603 |
|
|
0 12 Q |
4604 |
|
|
( element at the very start of the document, e.g.) 119.97 630.9 T |
4605 |
|
|
2 10 Q |
4606 |
|
|
(<htmlplus forms=off>) 345.47 630.9 T |
4607 |
|
|
0 12 Q |
4608 |
|
|
(.) 465.41 630.9 T |
4609 |
|
|
(The) 72 611.9 T |
4610 |
|
|
2 10 Q |
4611 |
|
|
(MH) 93.65 611.9 T |
4612 |
|
|
0 12 Q |
4613 |
|
|
( element can be used to specify RFC 822 mail headers that are included when sending) 105.64 611.9 T |
4614 |
|
|
(the form\325) 72 597.9 T |
4615 |
|
|
(s content either as an email message or as a HTTP request, e.g.) 116.3 597.9 T |
4616 |
|
|
2 10 Q |
4617 |
|
|
(<MH HIDDEN>) 90 580.23 T |
4618 |
|
|
(Subject: WWW Questionnaire) 90 568.23 T |
4619 |
|
|
(Priority: Low) 90 556.23 T |
4620 |
|
|
(</MH>) 90 544.23 T |
4621 |
|
|
0 12 Q |
4622 |
|
|
(The) 72 525.9 T |
4623 |
|
|
2 10 Q |
4624 |
|
|
(MH) 93.65 525.9 T |
4625 |
|
|
0 12 Q |
4626 |
|
|
( element can contain several headers separated by line breaks. The text within the MH) 105.64 525.9 T |
4627 |
|
|
(element is transcribed directly) 72 511.9 T |
4628 |
|
|
0 10 Q |
4629 |
|
|
(1) 216.89 516.7 T |
4630 |
|
|
0 12 Q |
4631 |
|
|
(, preserving spaces, tabs and line breaks, with each line termi-) 221.89 511.9 T |
4632 |
|
|
(nated by a) 72 497.9 T |
4633 |
|
|
2 10 Q |
4634 |
|
|
(CR) 124.29 497.9 T |
4635 |
|
|
(LF) 139.28 497.9 T |
4636 |
|
|
0 12 Q |
4637 |
|
|
( pair as per the RFC 822 guidelines. The preceding example of a form might) 151.28 497.9 T |
4638 |
|
|
(be rendered as:) 72 483.9 T |
4639 |
|
|
(Here, the) 72 192.57 T |
4640 |
|
|
2 10 Q |
4641 |
|
|
(<P>) 118.95 192.57 T |
4642 |
|
|
0 12 Q |
4643 |
|
|
( and) 136.94 192.57 T |
4644 |
|
|
2 10 Q |
4645 |
|
|
(<OL>) 160.26 192.57 T |
4646 |
|
|
0 12 Q |
4647 |
|
|
( elements have been used to lay out the text \050and input \336elds. The) 184.25 192.57 T |
4648 |
|
|
(browser has changed the background color within the) 72 178.57 T |
4649 |
|
|
2 10 Q |
4650 |
|
|
(FORM) 331.8 178.57 T |
4651 |
|
|
0 12 Q |
4652 |
|
|
( element to distinguish the form) 355.79 178.57 T |
4653 |
|
|
-0.11 (from other parts of the document. The browser is responsible for handling the input focus, i.e.) 72 164.57 P |
4654 |
|
|
(which \336eld will currently get keyboard input.) 72 150.57 T |
4655 |
|
|
72 120 523.3 134.98 C |
4656 |
|
|
81 132.96 225 132.96 2 L |
4657 |
|
|
0.5 H |
4658 |
|
|
2 Z |
4659 |
|
|
0 X |
4660 |
|
|
0 K |
4661 |
|
|
N |
4662 |
|
|
0 0 595.3 841.9 C |
4663 |
|
|
0 10 Q |
4664 |
|
|
0 X |
4665 |
|
|
0 K |
4666 |
|
|
(1. Except for a initial line break which is ignored.) 90 113.34 T |
4667 |
|
|
72 108 523.3 769.9 C |
4668 |
|
|
133.56 207.57 461.74 460.9 C |
4669 |
|
|
133.56 207.57 461.74 460.9 R |
4670 |
|
|
4 X |
4671 |
|
|
0 K |
4672 |
|
|
V |
4673 |
|
|
133.56 460.07 466.56 460.07 2 L |
4674 |
|
|
0.5 H |
4675 |
|
|
2 Z |
4676 |
|
|
0 X |
4677 |
|
|
N |
4678 |
|
|
234.17 413.07 435 427.23 R |
4679 |
|
|
5 X |
4680 |
|
|
V |
4681 |
|
|
1 H |
4682 |
|
|
0 X |
4683 |
|
|
N |
4684 |
|
|
221.33 285.07 422.17 333.4 R |
4685 |
|
|
5 X |
4686 |
|
|
V |
4687 |
|
|
0 X |
4688 |
|
|
N |
4689 |
|
|
207.67 395.4 222.67 409.57 R |
4690 |
|
|
5 X |
4691 |
|
|
V |
4692 |
|
|
0 X |
4693 |
|
|
N |
4694 |
|
|
328.07 395.87 390.57 410.04 R |
4695 |
|
|
5 X |
4696 |
|
|
V |
4697 |
|
|
0 X |
4698 |
|
|
N |
4699 |
|
|
234 358.23 249 372.4 R |
4700 |
|
|
5 X |
4701 |
|
|
V |
4702 |
|
|
0 X |
4703 |
|
|
N |
4704 |
|
|
214.5 341.07 229.5 355.23 R |
4705 |
|
|
5 X |
4706 |
|
|
V |
4707 |
|
|
0 X |
4708 |
|
|
N |
4709 |
|
|
293.39 260.4 457.56 274.57 R |
4710 |
|
|
5 X |
4711 |
|
|
V |
4712 |
|
|
0 X |
4713 |
|
|
N |
4714 |
|
|
133.33 208.4 460.83 208.4 2 L |
4715 |
|
|
0.5 H |
4716 |
|
|
N |
4717 |
|
|
0 12 Q |
4718 |
|
|
(Please help us to improve the W) 140.89 446.07 T |
4719 |
|
|
(orld W) 295.17 446.07 T |
4720 |
|
|
(ide W) 328.33 446.07 T |
4721 |
|
|
(eb by \336lling in the) 356.34 446.07 T |
4722 |
|
|
(following questionaire:) 141.73 436.57 T |
4723 |
|
|
(Y) 143.04 417.39 T |
4724 |
|
|
(our or) 150.5 417.39 T |
4725 |
|
|
(ganization:) 179.26 417.39 T |
4726 |
|
|
(Commercial:) 142.93 399.39 T |
4727 |
|
|
(How many users?) 235.56 399.5 T |
4728 |
|
|
(Which browsers do you use?) 143.39 380.55 T |
4729 |
|
|
(1\051 X Mosaic) 169.56 364.23 T |
4730 |
|
|
(2\051 Cello) 169.56 345.57 T |
4731 |
|
|
(3\051 Others) 169.56 322.73 T |
4732 |
|
|
(A contact point for your site:) 151.56 265.23 T |
4733 |
|
|
(Many thanks on behalf of the WWW central support team.) 151.56 241.23 T |
4734 |
|
|
216.67 212.23 289.17 231.4 9.58 RR |
4735 |
|
|
V |
4736 |
|
|
1 H |
4737 |
|
|
N |
4738 |
|
|
215.5 214.23 288 233.4 9.58 RR |
4739 |
|
|
7 X |
4740 |
|
|
V |
4741 |
|
|
0 X |
4742 |
|
|
N |
4743 |
|
|
(Submit) 236.89 220.85 T |
4744 |
|
|
305.5 211.73 378 230.9 9.58 RR |
4745 |
|
|
V |
4746 |
|
|
N |
4747 |
|
|
304.33 213.73 376.83 232.9 9.58 RR |
4748 |
|
|
7 X |
4749 |
|
|
V |
4750 |
|
|
0 X |
4751 |
|
|
N |
4752 |
|
|
(Reset) 325.73 220.35 T |
4753 |
|
|
72 108 523.3 769.9 C |
4754 |
|
|
0 0 595.3 841.9 C |
4755 |
|
|
FMENDPAGE |
4756 |
|
|
%%EndPage: "22" 27 |
4757 |
|
|
%%Page: "23" 27 |
4758 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4759 |
|
|
0 10 Q |
4760 |
|
|
0 X |
4761 |
|
|
0 K |
4762 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4763 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4764 |
|
|
(23) 292.65 70.23 T |
4765 |
|
|
0 12 Q |
4766 |
|
|
-0.17 (For many platforms there will be existing conventions for forms, e.g.) 72 761.9 P |
4767 |
|
|
4 F |
4768 |
|
|
-0.17 (tab) 404.56 761.9 P |
4769 |
|
|
0 F |
4770 |
|
|
-0.17 ( and shift-) 419.88 761.9 P |
4771 |
|
|
4 F |
4772 |
|
|
-0.17 (tab) 468.17 761.9 P |
4773 |
|
|
0 F |
4774 |
|
|
-0.17 ( keys to) 483.5 761.9 P |
4775 |
|
|
-0.14 (move the keyboard focus forwards and backwards between \336elds, while an) 72 747.9 P |
4776 |
|
|
4 F |
4777 |
|
|
-0.14 (Enter) 433.45 747.9 P |
4778 |
|
|
0 F |
4779 |
|
|
-0.14 ( key submits) 460.09 747.9 P |
4780 |
|
|
(the form. In the example, the) 72 733.9 T |
4781 |
|
|
4 F |
4782 |
|
|
(Submit) 213.89 733.9 T |
4783 |
|
|
0 F |
4784 |
|
|
( and) 247.21 733.9 T |
4785 |
|
|
4 F |
4786 |
|
|
(Reset) 270.53 733.9 T |
4787 |
|
|
0 F |
4788 |
|
|
( buttons are speci\336ed explicitly with special) 296.51 733.9 T |
4789 |
|
|
-0.3 (purpose \336elds. The) 72 719.9 P |
4790 |
|
|
4 F |
4791 |
|
|
-0.3 (Submit) 165.7 719.9 P |
4792 |
|
|
0 F |
4793 |
|
|
-0.3 ( button is used to email the form or send its contents to the server as) 199.01 719.9 P |
4794 |
|
|
-0.23 (speci\336ed by the) 72 705.9 P |
4795 |
|
|
2 10 Q |
4796 |
|
|
-0.47 (ACTION) 149.58 705.9 P |
4797 |
|
|
0 12 Q |
4798 |
|
|
-0.23 ( attribute, while the) 185.56 705.9 P |
4799 |
|
|
4 F |
4800 |
|
|
-0.23 (Reset) 280.89 705.9 P |
4801 |
|
|
0 F |
4802 |
|
|
-0.23 ( button resets the \336elds to their initial values.) 306.87 705.9 P |
4803 |
|
|
(When the form consists of a single text \336eld, it may be appropriate to leave such buttons out) 72 691.9 T |
4804 |
|
|
(and rely on the) 72 677.9 T |
4805 |
|
|
4 F |
4806 |
|
|
(Enter) 146.61 677.9 T |
4807 |
|
|
0 F |
4808 |
|
|
( key) 173.26 677.9 T |
4809 |
|
|
(.) 192.8 677.9 T |
4810 |
|
|
(The) 72 658.9 T |
4811 |
|
|
2 10 Q |
4812 |
|
|
(INPUT) 93.65 658.9 T |
4813 |
|
|
0 12 Q |
4814 |
|
|
( element has the following attributes:) 123.63 658.9 T |
4815 |
|
|
2 10 Q |
4816 |
|
|
(NAME) 90 639.9 T |
4817 |
|
|
0 12 Q |
4818 |
|
|
-0.53 (Symbolic name used when transferring the form\325) 162 639.9 P |
4819 |
|
|
-0.53 (s contents. This attribute is) 394 639.9 P |
4820 |
|
|
(always needed and should uniquely identify this \336eld.) 162 625.9 T |
4821 |
|
|
2 10 Q |
4822 |
|
|
(TYPE) 90 606.9 T |
4823 |
|
|
0 12 Q |
4824 |
|
|
(De\336nes the type of data the \336eld accepts. Defaults to free text.) 162 606.9 T |
4825 |
|
|
2 10 Q |
4826 |
|
|
(SIZE) 90 587.9 T |
4827 |
|
|
0 12 Q |
4828 |
|
|
(Speci\336es the size or precision of the \336eld according to its type.) 162 587.9 T |
4829 |
|
|
2 10 Q |
4830 |
|
|
(MAXLENGTH) 90 568.9 T |
4831 |
|
|
0 12 Q |
4832 |
|
|
-0.44 (The maximum number of characters that will be accepted as input. This can) 162 568.9 P |
4833 |
|
|
(be greater that speci\336ed by) 162 554.9 T |
4834 |
|
|
2 10 Q |
4835 |
|
|
(SIZE) 294.23 554.9 T |
4836 |
|
|
0 12 Q |
4837 |
|
|
(, in which case the \336eld will scroll appro-) 318.21 554.9 T |
4838 |
|
|
(priately) 162 540.9 T |
4839 |
|
|
(. The default is unlimited.) 197.86 540.9 T |
4840 |
|
|
2 10 Q |
4841 |
|
|
(VALUE) 90 521.9 T |
4842 |
|
|
0 12 Q |
4843 |
|
|
(The initial value for the \336eld, or the value when checked for checkboxes) 162 521.9 T |
4844 |
|
|
(and radio buttons. This attribute is required for radio buttons.) 162 507.9 T |
4845 |
|
|
2 10 Q |
4846 |
|
|
(CHECKED) 90 488.9 T |
4847 |
|
|
0 12 Q |
4848 |
|
|
(When present indicates that a checkbox or radio button is selected.) 162 488.9 T |
4849 |
|
|
2 10 Q |
4850 |
|
|
(DISABLED) 90 469.9 T |
4851 |
|
|
0 12 Q |
4852 |
|
|
(When present indicates that this \336eld is temporarily disabled. Browsers) 162 469.9 T |
4853 |
|
|
(should show this by \322greying it\323 out in some manner) 162 455.9 T |
4854 |
|
|
(.) 414.86 455.9 T |
4855 |
|
|
2 10 Q |
4856 |
|
|
(ERROR) 90 436.9 T |
4857 |
|
|
0 12 Q |
4858 |
|
|
0 (When present indicates that the \336eld\325) 162 436.9 P |
4859 |
|
|
0 (s initial value is in error in some way) 340.2 436.9 P |
4860 |
|
|
0 (,) 517.3 436.9 P |
4861 |
|
|
-0.24 (e.g. because it is inconsistent with the values of other \336elds. Servers should) 162 422.9 P |
4862 |
|
|
(include an explanatory error message with the form\325) 162 408.9 T |
4863 |
|
|
(s text.) 412.81 408.9 T |
4864 |
|
|
2 10 Q |
4865 |
|
|
(SRC) 90 389.9 T |
4866 |
|
|
0 12 Q |
4867 |
|
|
(A URL or URN specifying an image - for use only with) 162 389.9 T |
4868 |
|
|
2 10 Q |
4869 |
|
|
(TYPE=IMAGEMAP.) 433.15 389.9 T |
4870 |
|
|
(ALIGN) 90 370.9 T |
4871 |
|
|
0 12 Q |
4872 |
|
|
(V) 162 370.9 T |
4873 |
|
|
(ertical alignment of the image - for use only with) 169.33 370.9 T |
4874 |
|
|
2 10 Q |
4875 |
|
|
(TYPE=IMAGEMAP.) 407.83 370.9 T |
4876 |
|
|
0 12 Q |
4877 |
|
|
( The following types of \336elds can be de\336ned with the) 72 346.9 T |
4878 |
|
|
2 10 Q |
4879 |
|
|
(TYPE) 330.83 346.9 T |
4880 |
|
|
0 12 Q |
4881 |
|
|
( attribute) 354.82 346.9 T |
4882 |
|
|
4 F |
4883 |
|
|
(\050upper or lower case\051) 400.79 346.9 T |
4884 |
|
|
0 F |
4885 |
|
|
(:) 505.05 346.9 T |
4886 |
|
|
2 10 Q |
4887 |
|
|
(TEXT) 90 327.9 T |
4888 |
|
|
0 12 Q |
4889 |
|
|
(Single line text entry \336elds. Use the) 162 327.9 T |
4890 |
|
|
2 10 Q |
4891 |
|
|
(SIZE) 336.56 327.9 T |
4892 |
|
|
0 12 Q |
4893 |
|
|
( attribute to specify the visible) 360.55 327.9 T |
4894 |
|
|
(width in characters, e.g.) 162 313.9 T |
4895 |
|
|
2 10 Q |
4896 |
|
|
(SIZE=\32324\323) 279.57 313.9 T |
4897 |
|
|
0 12 Q |
4898 |
|
|
( for a 24 character \336eld. The) 333.54 313.9 T |
4899 |
|
|
2 10 Q |
4900 |
|
|
(MAX) 472.75 313.9 T |
4901 |
|
|
0 12 Q |
4902 |
|
|
(attribute can be used to specify an upper limit to the number of characters) 162 299.9 T |
4903 |
|
|
-0.27 (that can be entered into a text \336eld, e.g.) 162 285.9 P |
4904 |
|
|
2 10 Q |
4905 |
|
|
-0.54 (MAX=72) 351.43 285.9 P |
4906 |
|
|
0 12 Q |
4907 |
|
|
-0.27 (. Use the) 387.41 285.9 P |
4908 |
|
|
2 10 Q |
4909 |
|
|
-0.54 (TEXTAREA) 431.89 285.9 P |
4910 |
|
|
0 12 Q |
4911 |
|
|
-0.27 ( element) 479.87 285.9 P |
4912 |
|
|
(for text \336elds which can accept multiple lines \050see below\051.) 162 271.9 T |
4913 |
|
|
2 10 Q |
4914 |
|
|
(INT) 90 252.9 T |
4915 |
|
|
0 12 Q |
4916 |
|
|
(For entering integer numbers, the maximum number of digits can be speci-) 162 252.9 T |
4917 |
|
|
-0.39 (\336ed with the) 162 238.9 P |
4918 |
|
|
2 10 Q |
4919 |
|
|
-0.79 (SIZE) 223.79 238.9 P |
4920 |
|
|
0 12 Q |
4921 |
|
|
-0.39 ( attribute \050excluding the sign character\051, e.g.) 247.77 238.9 P |
4922 |
|
|
2 10 Q |
4923 |
|
|
-0.79 (size=3) 460.19 238.9 P |
4924 |
|
|
0 12 Q |
4925 |
|
|
-0.39 ( for a) 496.17 238.9 P |
4926 |
|
|
(three digit number) 162 224.9 T |
4927 |
|
|
(.) 249.95 224.9 T |
4928 |
|
|
2 10 Q |
4929 |
|
|
(FLOAT) 90 205.9 T |
4930 |
|
|
0 12 Q |
4931 |
|
|
(For \336elds which can accept \337oating point numbers.) 162 205.9 T |
4932 |
|
|
2 10 Q |
4933 |
|
|
(DATE) 90 186.9 T |
4934 |
|
|
0 12 Q |
4935 |
|
|
(Fields which can accept a recognized date format.) 162 186.9 T |
4936 |
|
|
2 10 Q |
4937 |
|
|
(URL) 90 167.9 T |
4938 |
|
|
0 12 Q |
4939 |
|
|
(For \336elds which expect document references as URLs or URNs.) 162 167.9 T |
4940 |
|
|
2 10 Q |
4941 |
|
|
(CHECKBOX) 90 148.9 T |
4942 |
|
|
0 12 Q |
4943 |
|
|
(Used for simple Boolean attributes, or for attributes which can take multi-) 162 148.9 T |
4944 |
|
|
-0.05 (ple values at the same time. The latter is represented by a number of check-) 162 134.9 P |
4945 |
|
|
(box \336elds each of which has the same) 162 120.9 T |
4946 |
|
|
2 10 Q |
4947 |
|
|
(NAME) 346.53 120.9 T |
4948 |
|
|
0 12 Q |
4949 |
|
|
(.) 370.52 120.9 T |
4950 |
|
|
FMENDPAGE |
4951 |
|
|
%%EndPage: "23" 28 |
4952 |
|
|
%%Page: "24" 28 |
4953 |
|
|
595.3 841.9 0 FMBEGINPAGE |
4954 |
|
|
0 10 Q |
4955 |
|
|
0 X |
4956 |
|
|
0 K |
4957 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
4958 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
4959 |
|
|
(24) 292.65 70.23 T |
4960 |
|
|
2 F |
4961 |
|
|
(RADIO) 90 761.9 T |
4962 |
|
|
0 12 Q |
4963 |
|
|
-0.15 (For attributes which can take a single value from a set of alternatives. Each) 162 761.9 P |
4964 |
|
|
(radio button \336eld in the group should be given the same) 162 747.9 T |
4965 |
|
|
2 10 Q |
4966 |
|
|
(NAME) 432.83 747.9 T |
4967 |
|
|
0 12 Q |
4968 |
|
|
(.) 456.82 747.9 T |
4969 |
|
|
2 10 Q |
4970 |
|
|
(RANGE) 90 728.9 T |
4971 |
|
|
0 12 Q |
4972 |
|
|
-0.25 (This allows you to specify an integer range with the) 162 728.9 P |
4973 |
|
|
2 10 Q |
4974 |
|
|
-0.49 (MIN) 411.35 728.9 P |
4975 |
|
|
0 12 Q |
4976 |
|
|
-0.25 ( and) 429.34 728.9 P |
4977 |
|
|
2 10 Q |
4978 |
|
|
-0.49 (MAX) 452.17 728.9 P |
4979 |
|
|
0 12 Q |
4980 |
|
|
-0.25 ( attributes,) 470.15 728.9 P |
4981 |
|
|
(e.g.) 162 714.9 T |
4982 |
|
|
2 10 Q |
4983 |
|
|
(MIN=1) 182.32 714.9 T |
4984 |
|
|
(MAX=100) 215.3 714.9 T |
4985 |
|
|
0 12 Q |
4986 |
|
|
(. Users can select any value in this range.) 257.28 714.9 T |
4987 |
|
|
2 10 Q |
4988 |
|
|
(IMAGE) 90 695.9 T |
4989 |
|
|
0 12 Q |
4990 |
|
|
(This allows you to specify an image \336eld upon which you can click with a) 162 695.9 T |
4991 |
|
|
(pointing device. The) 162 681.9 T |
4992 |
|
|
2 10 Q |
4993 |
|
|
(SRC) 263.93 681.9 T |
4994 |
|
|
0 12 Q |
4995 |
|
|
( and) 281.92 681.9 T |
4996 |
|
|
2 10 Q |
4997 |
|
|
(ALIGN) 305.24 681.9 T |
4998 |
|
|
0 12 Q |
4999 |
|
|
( attributes are exactly the same as for) 335.22 681.9 T |
5000 |
|
|
(the) 162 667.9 T |
5001 |
|
|
2 10 Q |
5002 |
|
|
(IMG) 179.65 667.9 T |
5003 |
|
|
0 12 Q |
5004 |
|
|
( and) 197.64 667.9 T |
5005 |
|
|
2 10 Q |
5006 |
|
|
(IMAGE) 220.96 667.9 T |
5007 |
|
|
0 12 Q |
5008 |
|
|
( elements. The symbolic names for the x and y coordi-) 250.94 667.9 T |
5009 |
|
|
(nates of the click event are speci\336ed with) 162 653.9 T |
5010 |
|
|
4 F |
5011 |
|
|
(name) 363.18 653.9 T |
5012 |
|
|
0 F |
5013 |
|
|
(.x and) 389.15 653.9 T |
5014 |
|
|
4 F |
5015 |
|
|
(name) 421.46 653.9 T |
5016 |
|
|
0 F |
5017 |
|
|
(.y for the) 447.44 653.9 T |
5018 |
|
|
4 F |
5019 |
|
|
(name) 494.07 653.9 T |
5020 |
|
|
0 F |
5021 |
|
|
(given with the) 162 639.9 T |
5022 |
|
|
2 10 Q |
5023 |
|
|
(NAME) 233.62 639.9 T |
5024 |
|
|
0 12 Q |
5025 |
|
|
( attribute. The) 257.61 639.9 T |
5026 |
|
|
2 10 Q |
5027 |
|
|
(VALUE) 328.23 639.9 T |
5028 |
|
|
0 12 Q |
5029 |
|
|
( attribute is ignored.) 358.21 639.9 T |
5030 |
|
|
2 10 Q |
5031 |
|
|
(SCRIBBLE) 90 620.9 T |
5032 |
|
|
0 12 Q |
5033 |
|
|
-0.22 (A \336eld upon which you can write with a pen or mouse. The size of the \336eld) 162 620.9 P |
5034 |
|
|
(in millimeters is given as) 162 606.9 T |
5035 |
|
|
2 10 Q |
5036 |
|
|
(SIZE=) 285.6 606.9 T |
5037 |
|
|
6 F |
5038 |
|
|
(width) 315.59 606.9 T |
5039 |
|
|
2 F |
5040 |
|
|
(,) 345.57 606.9 T |
5041 |
|
|
6 F |
5042 |
|
|
(height) 351.57 606.9 T |
5043 |
|
|
0 12 Q |
5044 |
|
|
(. The units are absolute as) 387.55 606.9 T |
5045 |
|
|
(they relate to the dimensions of the human hand, rather than pixels of vary-) 162 592.9 T |
5046 |
|
|
-0.12 (ing resolution. The scribble may involve time and pressure data in addition) 162 578.9 P |
5047 |
|
|
(to the basic ink data. Y) 162 564.9 T |
5048 |
|
|
(ou can use scribble for signatures or sketches. The) 271.39 564.9 T |
5049 |
|
|
-0.13 (\336eld can be initialised by setting the) 162 550.9 P |
5050 |
|
|
2 10 Q |
5051 |
|
|
-0.26 (SRC) 337.32 550.9 P |
5052 |
|
|
0 12 Q |
5053 |
|
|
-0.13 ( attribute to a URL which contains) 355.31 550.9 P |
5054 |
|
|
(the ink) 162 536.9 T |
5055 |
|
|
0 10 Q |
5056 |
|
|
(1) 194.98 541.7 T |
5057 |
|
|
0 12 Q |
5058 |
|
|
(. The) 199.98 536.9 T |
5059 |
|
|
2 10 Q |
5060 |
|
|
(VALUE) 227.62 536.9 T |
5061 |
|
|
0 12 Q |
5062 |
|
|
( attribute is ignored.) 257.61 536.9 T |
5063 |
|
|
2 10 Q |
5064 |
|
|
(AUDIO) 90 517.9 T |
5065 |
|
|
0 12 Q |
5066 |
|
|
(This provides a way of entering spoken messages into a form. Browsers) 162 517.9 T |
5067 |
|
|
(might show an icon which when clicked pops-up a set of tape controls that) 162 503.9 T |
5068 |
|
|
(you can use to record and replay messages. The initial message can be set) 162 489.9 T |
5069 |
|
|
(by specifying a URL with the) 162 475.9 T |
5070 |
|
|
2 10 Q |
5071 |
|
|
(SRC) 307.24 475.9 T |
5072 |
|
|
0 12 Q |
5073 |
|
|
( attribute. The) 325.23 475.9 T |
5074 |
|
|
2 10 Q |
5075 |
|
|
(VALUE) 395.85 475.9 T |
5076 |
|
|
0 12 Q |
5077 |
|
|
( attribute is ignored.) 425.83 475.9 T |
5078 |
|
|
2 10 Q |
5079 |
|
|
(SUBMIT) 90 456.9 T |
5080 |
|
|
0 12 Q |
5081 |
|
|
(This is a button that when pressed submits the form. It of) 162 456.9 T |
5082 |
|
|
(fers authors con-) 435.62 456.9 T |
5083 |
|
|
(trol over the location of this button. Y) 162 442.9 T |
5084 |
|
|
(ou can use an image as a submit but-) 342.69 442.9 T |
5085 |
|
|
(ton by specifying a URL with the) 162 428.9 T |
5086 |
|
|
2 10 Q |
5087 |
|
|
(SRC) 325.57 428.9 T |
5088 |
|
|
0 12 Q |
5089 |
|
|
( attribute.) 343.56 428.9 T |
5090 |
|
|
2 10 Q |
5091 |
|
|
(RESET) 90 409.9 T |
5092 |
|
|
0 12 Q |
5093 |
|
|
-0.22 (This is a button that when pressed resets the form\325) 162 409.9 P |
5094 |
|
|
-0.22 (s \336elds to their initial val-) 400.82 409.9 P |
5095 |
|
|
(ues as speci\336ed by the) 162 395.9 T |
5096 |
|
|
2 10 Q |
5097 |
|
|
(VALUE) 272.26 395.9 T |
5098 |
|
|
0 12 Q |
5099 |
|
|
( attribute. Y) 302.24 395.9 T |
5100 |
|
|
(ou can use an image as a reeset) 358.67 395.9 T |
5101 |
|
|
(button by specifying a URL with the) 162 381.9 T |
5102 |
|
|
2 10 Q |
5103 |
|
|
(SRC) 340.89 381.9 T |
5104 |
|
|
0 12 Q |
5105 |
|
|
( attribute.) 358.88 381.9 T |
5106 |
|
|
(When you need to let users enter more than one line of text, you should use the TEXT) 72 362.9 T |
5107 |
|
|
(AREA) 484.08 362.9 T |
5108 |
|
|
(element, e.g.) 72 348.9 T |
5109 |
|
|
2 10 Q |
5110 |
|
|
(<TEXTAREA NAME=\323address\323 ROWS=64 COLS=6>) 90 331.23 T |
5111 |
|
|
(Hewlett Packard Laboratories) 108 319.23 T |
5112 |
|
|
(1501 Page Mill Road) 108 307.23 T |
5113 |
|
|
(Palo Alto, California 94304-1126) 108 295.23 T |
5114 |
|
|
(</TEXTAREA>) 90 283.23 T |
5115 |
|
|
0 12 Q |
5116 |
|
|
-0.1 (The text up to the end tag is used to initialize the \336eld\325) 72 264.9 P |
5117 |
|
|
-0.1 (s value. This end tag is always required) 331.93 264.9 P |
5118 |
|
|
(even if the \336eld is initially blank. The) 72 250.9 T |
5119 |
|
|
2 10 Q |
5120 |
|
|
(ROWS) 255.56 250.9 T |
5121 |
|
|
0 12 Q |
5122 |
|
|
( and) 279.55 250.9 T |
5123 |
|
|
2 10 Q |
5124 |
|
|
(COLS) 302.86 250.9 T |
5125 |
|
|
0 12 Q |
5126 |
|
|
( attributes determine the visible dimen-) 326.85 250.9 T |
5127 |
|
|
(sion of the \336eld in characters. Browsers are recommended to allow text to grow beyond these) 72 236.9 T |
5128 |
|
|
(limits by scrolling as needed. In the initial design for forms, multi-line text \336elds were sup-) 72 222.9 T |
5129 |
|
|
(ported by the) 72 208.9 T |
5130 |
|
|
2 10 Q |
5131 |
|
|
(INPUT) 138.29 208.9 T |
5132 |
|
|
0 12 Q |
5133 |
|
|
( element with) 168.27 208.9 T |
5134 |
|
|
2 10 Q |
5135 |
|
|
(TYPE=TEXT) 236.56 208.9 T |
5136 |
|
|
0 12 Q |
5137 |
|
|
(. Unfortunately) 289.64 208.9 T |
5138 |
|
|
(, this causes problems for \336elds) 362.14 208.9 T |
5139 |
|
|
-0.26 (with long text values as SGML limits the length of attribute literals. The HTML+ DTD allows) 72 194.9 P |
5140 |
|
|
(for up to 1024 characters \050the SGML default is only 240 characters!\051.) 72 180.9 T |
5141 |
|
|
(The) 72 161.9 T |
5142 |
|
|
2 10 Q |
5143 |
|
|
(RADIO) 93.65 161.9 T |
5144 |
|
|
0 12 Q |
5145 |
|
|
( and) 123.63 161.9 T |
5146 |
|
|
2 10 Q |
5147 |
|
|
(CHECKBOX) 146.95 161.9 T |
5148 |
|
|
0 12 Q |
5149 |
|
|
( \336elds can be used to specify multiple choice forms in which every) 194.92 161.9 T |
5150 |
|
|
72 132 523.3 146.98 C |
5151 |
|
|
81 144.96 225 144.96 2 L |
5152 |
|
|
0.5 H |
5153 |
|
|
2 Z |
5154 |
|
|
0 X |
5155 |
|
|
0 K |
5156 |
|
|
N |
5157 |
|
|
0 0 595.3 841.9 C |
5158 |
|
|
0 10 Q |
5159 |
|
|
0 X |
5160 |
|
|
0 K |
5161 |
|
|
(1. Ink is commonly transferred in the JOT format de\336ned by Slate, Lotus, GO, Microsoft, Apple, Gen-) 90 125.34 T |
5162 |
|
|
(eral Magic and others. Phone Slate T) 90 113.34 T |
5163 |
|
|
(echnical Support on +1 \050602\051 991-6844 for more information.) 237.25 113.34 T |
5164 |
|
|
FMENDPAGE |
5165 |
|
|
%%EndPage: "24" 29 |
5166 |
|
|
%%Page: "25" 29 |
5167 |
|
|
595.3 841.9 0 FMBEGINPAGE |
5168 |
|
|
0 10 Q |
5169 |
|
|
0 X |
5170 |
|
|
0 K |
5171 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
5172 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
5173 |
|
|
(25) 292.65 70.23 T |
5174 |
|
|
0 12 Q |
5175 |
|
|
(alternative is visible as part of the form. An alternative is to use the) 72 761.9 T |
5176 |
|
|
2 10 Q |
5177 |
|
|
(SELECT) 397.44 761.9 T |
5178 |
|
|
0 12 Q |
5179 |
|
|
( element which is) 433.42 761.9 T |
5180 |
|
|
(generally rendered in a more compact fashion as a pull down combo list. Every alternative is) 72 747.9 T |
5181 |
|
|
(represented by the) 72 733.9 T |
5182 |
|
|
2 10 Q |
5183 |
|
|
(OPTION) 162.92 733.9 T |
5184 |
|
|
0 12 Q |
5185 |
|
|
( element, e.g.) 198.9 733.9 T |
5186 |
|
|
2 10 Q |
5187 |
|
|
(<SELECT NAME=\323f) 90 716.23 T |
5188 |
|
|
(lavor\323>) 179.95 716.23 T |
5189 |
|
|
(<OPTION>Vanilla) 108 704.23 T |
5190 |
|
|
(<OPTION>Strawberry) 108 692.23 T |
5191 |
|
|
(<OPTION>Rum and Raisin) 108 680.23 T |
5192 |
|
|
(<OPTION>Peach and Orange) 108 668.23 T |
5193 |
|
|
(</SELECT>) 90 656.23 T |
5194 |
|
|
0 12 Q |
5195 |
|
|
(The) 72 637.9 T |
5196 |
|
|
2 10 Q |
5197 |
|
|
(SEVERAL) 93.65 637.9 T |
5198 |
|
|
0 12 Q |
5199 |
|
|
( attribute is needed when users are allowed to make several selections, e.g.) 135.62 637.9 T |
5200 |
|
|
2 10 Q |
5201 |
|
|
(<SELECT SEVERAL>) 72 623.9 T |
5202 |
|
|
0 12 Q |
5203 |
|
|
(. The) 167.95 623.9 T |
5204 |
|
|
2 10 Q |
5205 |
|
|
(ERROR) 195.59 623.9 T |
5206 |
|
|
0 12 Q |
5207 |
|
|
( attribute can be used to indicate that the initial selection is in) 225.58 623.9 T |
5208 |
|
|
(error in some way) 72 609.9 T |
5209 |
|
|
(, e.g. because it is inconsistent with the values of other \336elds.) 158.15 609.9 T |
5210 |
|
|
(The) 72 590.9 T |
5211 |
|
|
2 10 Q |
5212 |
|
|
(OPTION) 93.65 590.9 T |
5213 |
|
|
0 12 Q |
5214 |
|
|
( element can take the following attributes:) 129.63 590.9 T |
5215 |
|
|
2 10 Q |
5216 |
|
|
(SELECTED) 90 571.9 T |
5217 |
|
|
0 12 Q |
5218 |
|
|
(Indicates that this option is initially selected.) 162 571.9 T |
5219 |
|
|
2 10 Q |
5220 |
|
|
(DISABLED) 90 552.9 T |
5221 |
|
|
0 12 Q |
5222 |
|
|
(When present indicates that this option is temporarily disabled. Browsers) 162 552.9 T |
5223 |
|
|
(should show this by \322greying it\323 out in some manner) 162 538.9 T |
5224 |
|
|
(.) 414.86 538.9 T |
5225 |
|
|
1 F |
5226 |
|
|
(10.1) 72 510.9 T |
5227 |
|
|
(Sending form data to an HTTP server) 99 510.9 T |
5228 |
|
|
0 F |
5229 |
|
|
-0.42 (The form contents are expressed as a property list of attribute names and values. Radio buttons) 72 491.9 P |
5230 |
|
|
(and checkboxes are left out of the list when unchecked. This ensures that only the selected) 72 477.9 T |
5231 |
|
|
-0.01 (radio button contributes a) 72 463.9 P |
5232 |
|
|
4 F |
5233 |
|
|
-0.01 (name=value) 197.87 463.9 P |
5234 |
|
|
0 F |
5235 |
|
|
-0.01 ( pair) 257.92 463.9 P |
5236 |
|
|
-0.01 (. Omitting the) 278.9 463.9 P |
5237 |
|
|
2 10 Q |
5238 |
|
|
-0.03 (VALUE) 348.83 463.9 P |
5239 |
|
|
0 12 Q |
5240 |
|
|
-0.01 ( attribute for a checkbox \336eld) 378.81 463.9 P |
5241 |
|
|
(causes the \336eld when checked to appear as a) 72 449.9 T |
5242 |
|
|
4 F |
5243 |
|
|
(name) 288.14 449.9 T |
5244 |
|
|
0 F |
5245 |
|
|
( without a value \050this is appropriate for) 314.12 449.9 T |
5246 |
|
|
(Boolean attributes\051. Currently) 72 435.9 T |
5247 |
|
|
(, there are two ways of transferring form contents to an HTTP) 214.79 435.9 T |
5248 |
|
|
(server:) 72 421.9 T |
5249 |
|
|
(\245) 90 402.9 T |
5250 |
|
|
(As a suf) 108 402.9 T |
5251 |
|
|
(\336x on the URL given by the) 147.09 402.9 T |
5252 |
|
|
2 10 Q |
5253 |
|
|
(ACTION) 284.67 402.9 T |
5254 |
|
|
0 12 Q |
5255 |
|
|
( attribute) 320.65 402.9 T |
5256 |
|
|
(\245) 90 383.9 T |
5257 |
|
|
(As a multipart MIME message) 108 383.9 T |
5258 |
|
|
(In the \336rst approach, the property list is encoded as a sequence of) 72 364.9 T |
5259 |
|
|
4 F |
5260 |
|
|
(name=value) 388.42 364.9 T |
5261 |
|
|
0 F |
5262 |
|
|
( elements sepa-) 448.47 364.9 T |
5263 |
|
|
(rated by the \322&\323 character) 72 350.9 T |
5264 |
|
|
(. The values for the form\325) 197.88 350.9 T |
5265 |
|
|
(s \336elds are sent as a search string, e.g.) 320.45 350.9 T |
5266 |
|
|
2 10 Q |
5267 |
|
|
(URL?org=Acme%20Foods&commerce&users=42) 90 333.23 T |
5268 |
|
|
0 12 Q |
5269 |
|
|
(Note that \322=\323, \322&\323 and space characters in attribute names and values should be escaped by) 72 314.9 T |
5270 |
|
|
(\322%\323 followed by the hexadecimal code for the character in question, e.g. \322%20\323 should be) 72 300.9 T |
5271 |
|
|
(used in place of the space character) 72 286.9 T |
5272 |
|
|
(.) 241.18 286.9 T |
5273 |
|
|
2 10 Q |
5274 |
|
|
(IMAGE) 247.18 286.9 T |
5275 |
|
|
0 12 Q |
5276 |
|
|
( \336elds are only included in the list when clicked,) 277.16 286.9 T |
5277 |
|
|
(and give rise to something matching:) 72 272.9 T |
5278 |
|
|
2 10 Q |
5279 |
|
|
(URL?name.x=23&name.y=29) 90 255.23 T |
5280 |
|
|
0 12 Q |
5281 |
|
|
-0.25 (They can be used as iconic controls for other images or data. The) 72 236.9 P |
5282 |
|
|
4 F |
5283 |
|
|
-0.25 (object-name) 384.44 236.9 P |
5284 |
|
|
2 10 Q |
5285 |
|
|
-0.51 (.) 443.72 236.9 P |
5286 |
|
|
4 12 Q |
5287 |
|
|
-0.25 (pr) 449.72 236.9 P |
5288 |
|
|
-0.25 (operty-name) 459.94 236.9 P |
5289 |
|
|
0 F |
5290 |
|
|
(notation paves the way for more complex input controls in the future. In the near future, for-) 72 222.9 T |
5291 |
|
|
-0.13 (mat negotiation will not change the number of pixels in an image, so using pixel based coordi-) 72 208.9 P |
5292 |
|
|
(nates is okay) 72 194.9 T |
5293 |
|
|
(. In the longer term, scaled coordinates in the range 0 to 1.0 may prove safer) 133.18 194.9 T |
5294 |
|
|
(.) 498.23 194.9 T |
5295 |
|
|
(Multipart MIME messages are necessary if the form contains scribble or audio \336elds. Form) 72 175.9 T |
5296 |
|
|
(data can be sent in the same) 72 161.9 T |
5297 |
|
|
4 F |
5298 |
|
|
(name=value) 208.89 161.9 T |
5299 |
|
|
0 F |
5300 |
|
|
( representation as described above. For scribble and) 268.94 161.9 T |
5301 |
|
|
-0.32 (audio \336elds, the) 72 147.9 P |
5302 |
|
|
4 F |
5303 |
|
|
-0.32 (value) 150.34 147.9 P |
5304 |
|
|
0 F |
5305 |
|
|
-0.32 ( identi\336es a subsequent part in the multipart message, as speci\336ed by the) 176.31 147.9 P |
5306 |
|
|
2 10 Q |
5307 |
|
|
-0.23 (Content-ID:) 72 133.9 P |
5308 |
|
|
0 12 Q |
5309 |
|
|
-0.11 ( header for each part. Another approach is to send just the SGML elements used) 137.96 133.9 P |
5310 |
|
|
(to de\336ne form \336elds, i.e. the) 72 119.9 T |
5311 |
|
|
2 10 Q |
5312 |
|
|
(INPUT) 210.25 119.9 T |
5313 |
|
|
0 12 Q |
5314 |
|
|
(,) 239.34 119.9 T |
5315 |
|
|
2 10 Q |
5316 |
|
|
(TEXTAREA) 245.34 119.9 T |
5317 |
|
|
0 12 Q |
5318 |
|
|
( and) 293.31 119.9 T |
5319 |
|
|
2 10 Q |
5320 |
|
|
(SELECT) 316.63 119.9 T |
5321 |
|
|
0 12 Q |
5322 |
|
|
( elements. The) 352.61 119.9 T |
5323 |
|
|
2 10 Q |
5324 |
|
|
(Content-ID:) 425.89 119.9 T |
5325 |
|
|
0 12 Q |
5326 |
|
|
( head-) 491.85 119.9 T |
5327 |
|
|
FMENDPAGE |
5328 |
|
|
%%EndPage: "25" 30 |
5329 |
|
|
%%Page: "26" 30 |
5330 |
|
|
595.3 841.9 0 FMBEGINPAGE |
5331 |
|
|
0 10 Q |
5332 |
|
|
0 X |
5333 |
|
|
0 K |
5334 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
5335 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
5336 |
|
|
(26) 292.65 70.23 T |
5337 |
|
|
0 12 Q |
5338 |
|
|
(ers are used to de\336ne dummy URLs. It may be possible for servers to use this approach to) 72 761.9 T |
5339 |
|
|
(update forms being viewed by a browser without having to send the entire document.) 72 747.9 T |
5340 |
|
|
1 F |
5341 |
|
|
(10.2) 72 719.9 T |
5342 |
|
|
(Sending a form via Electronic Mail) 99 719.9 T |
5343 |
|
|
0 F |
5344 |
|
|
(In this case, the form needs to be viewable on ordinary mail readers. The form should be con-) 72 700.9 T |
5345 |
|
|
(verted to ASCII and mailed as a plain text message, preceded by the headers as speci\336ed by) 72 686.9 T |
5346 |
|
|
-0.06 (the) 72 672.9 P |
5347 |
|
|
2 10 Q |
5348 |
|
|
-0.11 (MH) 89.6 672.9 P |
5349 |
|
|
0 12 Q |
5350 |
|
|
-0.06 ( element. Each) 101.59 672.9 P |
5351 |
|
|
2 10 Q |
5352 |
|
|
-0.11 (INPUT) 175.36 672.9 P |
5353 |
|
|
0 12 Q |
5354 |
|
|
-0.06 ( \336eld is copied as text and delimited by the \322[\322 and \322]\323 characters.) 205.34 672.9 P |
5355 |
|
|
(An longer term alternative is to send the HTML+ document as a MIME message, along with) 72 658.9 T |
5356 |
|
|
(the current values for each \336eld.) 72 644.9 T |
5357 |
|
|
1 14 Q |
5358 |
|
|
(1) 72 615.57 T |
5359 |
|
|
(1) 79.01 615.57 T |
5360 |
|
|
(Literal and Preformatted T) 90 615.57 T |
5361 |
|
|
(ext) 263.13 615.57 T |
5362 |
|
|
0 12 Q |
5363 |
|
|
(Preformatted text started of) 72 595.9 T |
5364 |
|
|
(f in HTML with a simple mechanism for showing computer out-) 203.35 595.9 T |
5365 |
|
|
-0.4 (put, for which the spaces and line breaks were signi\336cant in determining the layout. The desire) 72 581.9 P |
5366 |
|
|
-0.45 (to of) 72 567.9 P |
5367 |
|
|
-0.45 (fer Unix manual pages as hypertext forced a rethink. The next version supported character) 93.65 567.9 P |
5368 |
|
|
(emphasis and embedded hypertext buttons. HTML+ adds the capability to use variable pitch) 72 553.9 T |
5369 |
|
|
(fonts and to set up tab stops.) 72 539.9 T |
5370 |
|
|
(The LIT element is rendered in a proportional font, e.g.) 72 520.9 T |
5371 |
|
|
2 10 Q |
5372 |
|
|
(<LIT>) 90 503.23 T |
5373 |
|
|
(From Oberon in fairyland,) 90 491.23 T |
5374 |
|
|
(The king of ghosts and shadows there,) 108 479.23 T |
5375 |
|
|
(Mad Robin I, at his command,) 90 467.23 T |
5376 |
|
|
(Am sent to view the night sports here.) 108 455.23 T |
5377 |
|
|
(What revel rout) 126 443.23 T |
5378 |
|
|
(is kept about,) 126 431.23 T |
5379 |
|
|
(In every corner where I go,) 108 419.23 T |
5380 |
|
|
(I will o\325ersee) 126 407.23 T |
5381 |
|
|
(And merry be) 126 395.23 T |
5382 |
|
|
(And make good sport, with ho, ho, ho!) 108 383.23 T |
5383 |
|
|
(</LIT>) 90 371.23 T |
5384 |
|
|
0 12 Q |
5385 |
|
|
(This is rendered literally as:) 72 352.9 T |
5386 |
|
|
(From Oberon in fairyland,) 90 333.9 T |
5387 |
|
|
(The king of ghosts and shadows there,) 108 319.9 T |
5388 |
|
|
(Mad Robin I, at his command,) 90 305.9 T |
5389 |
|
|
(Am sent to view the night sports here.) 108 291.9 T |
5390 |
|
|
(What revel rout) 126 277.9 T |
5391 |
|
|
(Is kept about,) 126 263.9 T |
5392 |
|
|
(In every corner where I go,) 108 249.9 T |
5393 |
|
|
(I will o\325ersee) 126 235.9 T |
5394 |
|
|
(And merry be) 126 221.9 T |
5395 |
|
|
(And make good sport, with a ho, ho, ho!) 108 207.9 T |
5396 |
|
|
(The ability to set tab stops in) 72 188.9 T |
5397 |
|
|
2 10 Q |
5398 |
|
|
(LITeral) 213.59 188.9 T |
5399 |
|
|
0 12 Q |
5400 |
|
|
( text makes it much easier to write \336lters that convert) 255.57 188.9 T |
5401 |
|
|
(documents written on word processors into HTML+. T) 72 174.9 T |
5402 |
|
|
(ab stops can be set by the) 335.09 174.9 T |
5403 |
|
|
2 10 Q |
5404 |
|
|
(TAB) 460 174.9 T |
5405 |
|
|
0 12 Q |
5406 |
|
|
( element) 477.99 174.9 T |
5407 |
|
|
(and apply for the scope of the) 72 160.9 T |
5408 |
|
|
2 10 Q |
5409 |
|
|
(LIT) 217.55 160.9 T |
5410 |
|
|
0 12 Q |
5411 |
|
|
( element, e.g.) 235.54 160.9 T |
5412 |
|
|
2 10 Q |
5413 |
|
|
(<tab at=40 align=right>) 90 143.23 T |
5414 |
|
|
FMENDPAGE |
5415 |
|
|
%%EndPage: "26" 31 |
5416 |
|
|
%%Page: "27" 31 |
5417 |
|
|
595.3 841.9 0 FMBEGINPAGE |
5418 |
|
|
0 10 Q |
5419 |
|
|
0 X |
5420 |
|
|
0 K |
5421 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
5422 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
5423 |
|
|
(27) 292.65 70.23 T |
5424 |
|
|
0 12 Q |
5425 |
|
|
(The) 72 761.9 T |
5426 |
|
|
2 10 Q |
5427 |
|
|
(AT) 93.65 761.9 T |
5428 |
|
|
0 12 Q |
5429 |
|
|
( attribute speci\336es the position of the tab stop, as measured from the left mar) 105.64 761.9 T |
5430 |
|
|
(gin in) 472.84 761.9 T |
5431 |
|
|
-0.13 (terms of the width of a capital M.) 72 747.9 P |
5432 |
|
|
0 10 Q |
5433 |
|
|
-0.11 (1) 231.62 752.7 P |
5434 |
|
|
0 12 Q |
5435 |
|
|
-0.13 ( The) 236.62 747.9 P |
5436 |
|
|
2 10 Q |
5437 |
|
|
-0.27 (ALIGN) 260.99 747.9 P |
5438 |
|
|
0 12 Q |
5439 |
|
|
-0.13 ( attribute can be) 290.98 747.9 P |
5440 |
|
|
2 10 Q |
5441 |
|
|
-0.27 (LEFT) 370.38 747.9 P |
5442 |
|
|
0 12 Q |
5443 |
|
|
-0.13 (,) 393.48 747.9 P |
5444 |
|
|
2 10 Q |
5445 |
|
|
-0.27 (CENTER) 399.34 747.9 P |
5446 |
|
|
0 12 Q |
5447 |
|
|
-0.13 ( or) 435.32 747.9 P |
5448 |
|
|
2 10 Q |
5449 |
|
|
-0.27 (RIGHT) 451.04 747.9 P |
5450 |
|
|
0 12 Q |
5451 |
|
|
-0.13 (, default-) 480.13 747.9 P |
5452 |
|
|
-0.22 (ing to) 72 733.9 P |
5453 |
|
|
2 10 Q |
5454 |
|
|
-0.44 (LEFT) 102.22 733.9 P |
5455 |
|
|
0 12 Q |
5456 |
|
|
-0.22 (. These have the conventional meaning as used on most word processors. If greater) 125.32 733.9 P |
5457 |
|
|
(control over fonts and layout is needed then authors should make a hypertext link to a docu-) 72 719.9 T |
5458 |
|
|
(ment written in a page description format like Adobe\325) 72 705.9 T |
5459 |
|
|
(s PDF) 329.82 705.9 T |
5460 |
|
|
(.) 358.52 705.9 T |
5461 |
|
|
-0.26 (For computer output or plain text \336les, you should use the PRE element which is rendered in a) 72 686.9 P |
5462 |
|
|
(\336xed pitch font. The following is part of the man page for the Unix ls command:) 72 672.9 T |
5463 |
|
|
2 10 Q |
5464 |
|
|
(<PRE>) 90 655.23 T |
5465 |
|
|
( The next 9 characters are interpreted as three sets of three) 90 643.23 T |
5466 |
|
|
( bits each which identify access permissions for owner,) 90 631.23 T |
5467 |
|
|
( group, and others as follows:) 90 619.23 T |
5468 |
|
|
( +------------------ 0400 read by owner \050<B>r</B> or <B>-</B>\051) 90 595.23 T |
5469 |
|
|
( | +---------------- 0200 write by owner \050<B>w</B> or <B>-</B>\051) 90 583.23 T |
5470 |
|
|
( | | +-------------- 0100 execute \050search directory\051 by owner) 90 571.23 T |
5471 |
|
|
( | | |) 90 559.23 T |
5472 |
|
|
(\050<B>x</B>, <B>s</B>, <B>S</N>, or <B>-</B>\051) 243 559.23 T |
5473 |
|
|
( | | | +------------ 0040 read by group \050<B>r</B> or <B>-</B>\051) 90 547.23 T |
5474 |
|
|
( | | | | +---------- 0020 write by group \050<B>w</B> or <B>-</B>\051) 90 535.23 T |
5475 |
|
|
( | | | | | +-------- 0010 execute/search by group) 90 523.23 T |
5476 |
|
|
( | | | | | |) 90 511.23 T |
5477 |
|
|
(\050<B>x</B>, <B>s</B>, <B>S</B>, or <B>-</B>\051) 243 511.23 T |
5478 |
|
|
( | | | | | | +------ 0004 read by others \050<B>r</B> or <B>-</B>\051) 90 499.23 T |
5479 |
|
|
( | | | | | | | +---- 0002 write by others \050<B>w</B> or <B>-</B>\051) 90 487.23 T |
5480 |
|
|
( | | | | | | | | +-- 0001 execute/search by others) 90 475.23 T |
5481 |
|
|
( | | | | | | | | |) 90 463.23 T |
5482 |
|
|
(\050<B>x</B>, <B>t</B>, <B>T</B>, or <B>-</B>\051) 243 463.23 T |
5483 |
|
|
( | | | | | | | | |) 90 451.23 T |
5484 |
|
|
( r w x r w x r w x) 90 439.23 T |
5485 |
|
|
(</PRE>) 90 415.23 T |
5486 |
|
|
0 12 Q |
5487 |
|
|
(This is rendered as) 72 396.9 T |
5488 |
|
|
2 10 Q |
5489 |
|
|
( The next 9 characters are interpreted as three sets of three) 90 379.23 T |
5490 |
|
|
( bits each which identify access permissions for owner,) 90 367.23 T |
5491 |
|
|
( group, and others as follows:) 90 355.23 T |
5492 |
|
|
( +------------------ 0400 read by owner \050) 90 331.23 T |
5493 |
|
|
8 F |
5494 |
|
|
(r) 335.86 331.23 T |
5495 |
|
|
2 F |
5496 |
|
|
( or) 341.86 331.23 T |
5497 |
|
|
8 F |
5498 |
|
|
(-) 365.85 331.23 T |
5499 |
|
|
2 F |
5500 |
|
|
(\051) 371.85 331.23 T |
5501 |
|
|
( | +---------------- 0200 write by owner \050) 90 319.23 T |
5502 |
|
|
8 F |
5503 |
|
|
(w) 341.86 319.23 T |
5504 |
|
|
2 F |
5505 |
|
|
( or) 347.86 319.23 T |
5506 |
|
|
8 F |
5507 |
|
|
(-) 371.85 319.23 T |
5508 |
|
|
2 F |
5509 |
|
|
(\051) 377.84 319.23 T |
5510 |
|
|
( | | +-------------- 0100 execute \050search directory\051 by owner) 90 307.23 T |
5511 |
|
|
( | | |) 90 295.23 T |
5512 |
|
|
(\050) 243 295.23 T |
5513 |
|
|
8 F |
5514 |
|
|
(x) 249 295.23 T |
5515 |
|
|
2 F |
5516 |
|
|
(,) 254.99 295.23 T |
5517 |
|
|
8 F |
5518 |
|
|
(s) 266.99 295.23 T |
5519 |
|
|
2 F |
5520 |
|
|
(,) 272.98 295.23 T |
5521 |
|
|
8 F |
5522 |
|
|
(S) 284.98 295.23 T |
5523 |
|
|
2 F |
5524 |
|
|
(, or) 290.97 295.23 T |
5525 |
|
|
8 F |
5526 |
|
|
(-) 320.96 295.23 T |
5527 |
|
|
2 F |
5528 |
|
|
(\051) 326.95 295.23 T |
5529 |
|
|
( | | | +------------ 0040 read by group \050) 90 283.23 T |
5530 |
|
|
8 F |
5531 |
|
|
(r) 335.86 283.23 T |
5532 |
|
|
2 F |
5533 |
|
|
( or) 341.86 283.23 T |
5534 |
|
|
8 F |
5535 |
|
|
(-) 365.85 283.23 T |
5536 |
|
|
2 F |
5537 |
|
|
(\051) 371.85 283.23 T |
5538 |
|
|
( | | | | +---------- 0020 write by group \050) 90 271.23 T |
5539 |
|
|
8 F |
5540 |
|
|
(w) 341.86 271.23 T |
5541 |
|
|
2 F |
5542 |
|
|
( or) 347.86 271.23 T |
5543 |
|
|
8 F |
5544 |
|
|
(-) 371.85 271.23 T |
5545 |
|
|
2 F |
5546 |
|
|
(\051) 377.84 271.23 T |
5547 |
|
|
( | | | | | +-------- 0010 execute/search by group) 90 259.23 T |
5548 |
|
|
( | | | | | |) 90 247.23 T |
5549 |
|
|
(\050) 243 247.23 T |
5550 |
|
|
8 F |
5551 |
|
|
(x) 249 247.23 T |
5552 |
|
|
2 F |
5553 |
|
|
(,) 254.99 247.23 T |
5554 |
|
|
8 F |
5555 |
|
|
(s) 266.99 247.23 T |
5556 |
|
|
2 F |
5557 |
|
|
(,) 272.98 247.23 T |
5558 |
|
|
8 F |
5559 |
|
|
(S) 284.98 247.23 T |
5560 |
|
|
2 F |
5561 |
|
|
(, or) 290.97 247.23 T |
5562 |
|
|
8 F |
5563 |
|
|
(-) 320.96 247.23 T |
5564 |
|
|
2 F |
5565 |
|
|
(\051) 326.95 247.23 T |
5566 |
|
|
( | | | | | | +------ 0004 read by others \050) 90 235.23 T |
5567 |
|
|
8 F |
5568 |
|
|
(r) 341.86 235.23 T |
5569 |
|
|
2 F |
5570 |
|
|
( or) 347.86 235.23 T |
5571 |
|
|
8 F |
5572 |
|
|
(-) 371.85 235.23 T |
5573 |
|
|
2 F |
5574 |
|
|
(\051) 377.84 235.23 T |
5575 |
|
|
( | | | | | | | +---- 0002 write by others \050) 90 223.23 T |
5576 |
|
|
8 F |
5577 |
|
|
(w) 347.86 223.23 T |
5578 |
|
|
2 F |
5579 |
|
|
( or) 353.86 223.23 T |
5580 |
|
|
8 F |
5581 |
|
|
(-) 377.84 223.23 T |
5582 |
|
|
2 F |
5583 |
|
|
(\051) 383.84 223.23 T |
5584 |
|
|
( | | | | | | | | +-- 0001 execute/search by others) 90 211.23 T |
5585 |
|
|
( | | | | | | | | |) 90 199.23 T |
5586 |
|
|
(\050) 243 199.23 T |
5587 |
|
|
8 F |
5588 |
|
|
(x) 249 199.23 T |
5589 |
|
|
2 F |
5590 |
|
|
(,) 254.99 199.23 T |
5591 |
|
|
8 F |
5592 |
|
|
(t) 266.99 199.23 T |
5593 |
|
|
2 F |
5594 |
|
|
(,) 272.98 199.23 T |
5595 |
|
|
8 F |
5596 |
|
|
(T) 284.98 199.23 T |
5597 |
|
|
2 F |
5598 |
|
|
(, or) 290.97 199.23 T |
5599 |
|
|
8 F |
5600 |
|
|
(-) 320.96 199.23 T |
5601 |
|
|
2 F |
5602 |
|
|
(\051) 326.95 199.23 T |
5603 |
|
|
( | | | | | | | | |) 90 187.23 T |
5604 |
|
|
( r w x r w x r w x) 90 175.23 T |
5605 |
|
|
72 120 523.3 134.98 C |
5606 |
|
|
81 132.96 225 132.96 2 L |
5607 |
|
|
0.5 H |
5608 |
|
|
2 Z |
5609 |
|
|
0 X |
5610 |
|
|
0 K |
5611 |
|
|
N |
5612 |
|
|
0 0 595.3 841.9 C |
5613 |
|
|
0 10 Q |
5614 |
|
|
0 X |
5615 |
|
|
0 K |
5616 |
|
|
-0.19 (1. Chosen as one of the widest in most proportional fonts and should produce good results in most cases.) 90 113.34 P |
5617 |
|
|
FMENDPAGE |
5618 |
|
|
%%EndPage: "27" 32 |
5619 |
|
|
%%Page: "28" 32 |
5620 |
|
|
595.3 841.9 0 FMBEGINPAGE |
5621 |
|
|
0 10 Q |
5622 |
|
|
0 X |
5623 |
|
|
0 K |
5624 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
5625 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
5626 |
|
|
(28) 292.65 70.23 T |
5627 |
|
|
0 12 Q |
5628 |
|
|
(The SEE ALSO section of the Unix manual pages can be processed to make references to) 72 761.9 T |
5629 |
|
|
(other manual pages into hypertext buttons using the) 72 747.9 T |
5630 |
|
|
2 10 Q |
5631 |
|
|
(<A>) 323.18 747.9 T |
5632 |
|
|
0 12 Q |
5633 |
|
|
( element \050see section 5.2\051. The exam-) 341.17 747.9 T |
5634 |
|
|
(ple shows how character emphasis can be added to literal or preformatted text.) 72 733.9 T |
5635 |
|
|
1 14 Q |
5636 |
|
|
(12) 72 704.57 T |
5637 |
|
|
(Mathematical Equations) 90 704.57 T |
5638 |
|
|
0 12 Q |
5639 |
|
|
(Currently) 72 684.9 T |
5640 |
|
|
(, the best way of including equations in HTML documents is to \336rst write the docu-) 117.19 684.9 T |
5641 |
|
|
-0.35 (ment in) 72 670.9 P |
5642 |
|
|
4 F |
5643 |
|
|
-0.35 (LaT) 110.61 670.9 P |
5644 |
|
|
-0.35 (eX) 128.84 670.9 P |
5645 |
|
|
0 F |
5646 |
|
|
-0.35 ( and then use the) 141.49 670.9 P |
5647 |
|
|
4 F |
5648 |
|
|
-0.35 (latex2html) 223.33 670.9 P |
5649 |
|
|
0 F |
5650 |
|
|
-0.35 ( \336lter to create the corresponding HTML document,) 273.97 670.9 P |
5651 |
|
|
(together with the equations as a number of bitmap \336les) 72 656.9 T |
5652 |
|
|
0 10 Q |
5653 |
|
|
(1) 335.49 661.7 T |
5654 |
|
|
0 12 Q |
5655 |
|
|
(. The previous draft of the HTML+) 340.49 656.9 T |
5656 |
|
|
-0.27 (speci\336cation described a way of embedding LaT) 72 642.9 P |
5657 |
|
|
-0.27 (eX equations in HTML+ documents. Unfortu-) 302.69 642.9 P |
5658 |
|
|
(nately) 72 628.9 T |
5659 |
|
|
(, it now seems too cumbersome to form a practical solution, and has been dropped.) 100.53 628.9 T |
5660 |
|
|
(The following is a preliminary proposal for representing equations directly as HTML+ using) 72 609.9 T |
5661 |
|
|
-0.35 (an SGML-based notation, inspired by the approach taken by LaT) 72 595.9 P |
5662 |
|
|
-0.35 (eX. It is intended to cover the) 380.49 595.9 P |
5663 |
|
|
(majority of users needs, rather than aiming for complete coverage. This makes it practical to) 72 581.9 T |
5664 |
|
|
(use a simpli\336ed notation compared with richer notations, e.g. the ISO 12083 Maths DTD. An) 72 567.9 T |
5665 |
|
|
(experimental browser supporting the) 72 553.9 T |
5666 |
|
|
2 10 Q |
5667 |
|
|
(MATH) 251.21 553.9 T |
5668 |
|
|
0 12 Q |
5669 |
|
|
( element is being developed at CERN.) 275.19 553.9 T |
5670 |
|
|
(Consider the equation:) 72 534.9 T |
5671 |
|
|
(This can be represented as:) 72 434.9 T |
5672 |
|
|
2 10 Q |
5673 |
|
|
(<math>) 90 417.23 T |
5674 |
|
|
(H\050s\051 = ∫<sub>0</sub><sup>&inf) 108 405.23 T |
5675 |
|
|
(in;</sup> e<sup>-st</sup> h\050t\051 dt) 305.89 405.23 T |
5676 |
|
|
(</math>) 90 393.23 T |
5677 |
|
|
0 12 Q |
5678 |
|
|
(The mathematical symbols are given with their standard ISO entity names.) 72 374.9 T |
5679 |
|
|
2 10 Q |
5680 |
|
|
(SUB) 433.76 374.9 T |
5681 |
|
|
0 12 Q |
5682 |
|
|
( and) 451.75 374.9 T |
5683 |
|
|
2 10 Q |
5684 |
|
|
(SUP) 475.06 374.9 T |
5685 |
|
|
0 12 Q |
5686 |
|
|
( are) 493.05 374.9 T |
5687 |
|
|
(used to specify subscripts and superscripts. For integral signs and related operators, the sub-) 72 360.9 T |
5688 |
|
|
-0.46 (script/superscript text is centered over the symbol, otherwise it appears to the right as shown in) 72 346.9 P |
5689 |
|
|
(the preceding example. The) 72 332.9 T |
5690 |
|
|
2 10 Q |
5691 |
|
|
(BOX) 208.22 332.9 T |
5692 |
|
|
0 12 Q |
5693 |
|
|
( and) 226.21 332.9 T |
5694 |
|
|
2 10 Q |
5695 |
|
|
(OVER) 249.53 332.9 T |
5696 |
|
|
0 12 Q |
5697 |
|
|
( elements allow you to de\336ne more complex equa-) 273.51 332.9 T |
5698 |
|
|
(tions, as in:) 72 318.9 T |
5699 |
|
|
(which is represented by:) 72 218.9 T |
5700 |
|
|
2 10 Q |
5701 |
|
|
(<math>) 90 201.23 T |
5702 |
|
|
(C <box>dV<sub>out</sub><over>dt</box> = I<sub>b</sub>) 108 189.23 T |
5703 |
|
|
(&tanh;\050<box>κ\050V<sub>in</sub>-V<sub>out</sub>\051<over>2</box>\051) 108 177.23 T |
5704 |
|
|
(</math>) 90 165.23 T |
5705 |
|
|
72 132 523.3 146.98 C |
5706 |
|
|
81 144.96 225 144.96 2 L |
5707 |
|
|
0.5 H |
5708 |
|
|
2 Z |
5709 |
|
|
0 X |
5710 |
|
|
0 K |
5711 |
|
|
N |
5712 |
|
|
0 0 595.3 841.9 C |
5713 |
|
|
0 10 Q |
5714 |
|
|
0 X |
5715 |
|
|
0 K |
5716 |
|
|
(1. When including formulae as inline images, it is worth giving textual equivalents of the formulae for) 90 125.34 T |
5717 |
|
|
(clients with text only displays, i.e. the) 90 113.34 T |
5718 |
|
|
4 F |
5719 |
|
|
(LaT) 243.8 113.34 T |
5720 |
|
|
(eX) 259 113.34 T |
5721 |
|
|
0 F |
5722 |
|
|
( expressions, or the) 269.54 113.34 T |
5723 |
|
|
4 F |
5724 |
|
|
(Mathematica) 349.21 113.34 T |
5725 |
|
|
0 F |
5726 |
|
|
( equivalent.) 401.95 113.34 T |
5727 |
|
|
72 108 523.3 769.9 C |
5728 |
|
|
78 444.9 517.3 516.9 C |
5729 |
|
|
4 14 Q |
5730 |
|
|
0 X |
5731 |
|
|
0 K |
5732 |
|
|
(H) 234.35 478.4 T |
5733 |
|
|
(s) 253.52 478.4 T |
5734 |
|
|
9 F |
5735 |
|
|
(\050) 247.61 478.4 T |
5736 |
|
|
(\051) 259.71 478.4 T |
5737 |
|
|
4 F |
5738 |
|
|
(e) 297.93 478.4 T |
5739 |
|
|
4 12 Q |
5740 |
|
|
(s) 311.19 485.11 T |
5741 |
|
|
(t) 316.56 485.11 T |
5742 |
|
|
9 F |
5743 |
|
|
(-) 304.15 485.11 T |
5744 |
|
|
4 14 Q |
5745 |
|
|
(h) 320.72 478.4 T |
5746 |
|
|
(t) 336.78 478.4 T |
5747 |
|
|
9 F |
5748 |
|
|
(\050) 330.88 478.4 T |
5749 |
|
|
(\051) 341.42 478.4 T |
5750 |
|
|
4 F |
5751 |
|
|
(d) 349.24 478.4 T |
5752 |
|
|
(t) 357.06 478.4 T |
5753 |
|
|
0 12 Q |
5754 |
|
|
(0) 289.66 457.97 T |
5755 |
|
|
9 F |
5756 |
|
|
(\245) 288.38 500.19 T |
5757 |
|
|
9 24 Q |
5758 |
|
|
(\362) 289.37 471.72 T |
5759 |
|
|
9 14 Q |
5760 |
|
|
(=) 273.7 478.4 T |
5761 |
|
|
72 108 523.3 769.9 C |
5762 |
|
|
0 0 595.3 841.9 C |
5763 |
|
|
72 108 523.3 769.9 C |
5764 |
|
|
78 228.9 517.3 300.9 C |
5765 |
|
|
4 14 Q |
5766 |
|
|
0 X |
5767 |
|
|
0 K |
5768 |
|
|
(C) 193.55 262.4 T |
5769 |
|
|
(d) 204.87 275.25 T |
5770 |
|
|
(V) 212.69 275.25 T |
5771 |
|
|
4 12 Q |
5772 |
|
|
(o) 221.78 269.89 T |
5773 |
|
|
(u) 228.48 269.89 T |
5774 |
|
|
(t) 235.18 269.89 T |
5775 |
|
|
4 14 Q |
5776 |
|
|
(d) 215.84 253.85 T |
5777 |
|
|
(t) 223.66 253.85 T |
5778 |
|
|
(I) 261.37 262.4 T |
5779 |
|
|
4 12 Q |
5780 |
|
|
(b) 266.57 257.04 T |
5781 |
|
|
9 14 Q |
5782 |
|
|
(k) 308.71 275.25 T |
5783 |
|
|
4 F |
5784 |
|
|
(V) 325.46 275.25 T |
5785 |
|
|
4 12 Q |
5786 |
|
|
(i) 334.55 269.89 T |
5787 |
|
|
(n) 338.59 269.89 T |
5788 |
|
|
4 14 Q |
5789 |
|
|
(V) 359.27 275.25 T |
5790 |
|
|
4 12 Q |
5791 |
|
|
(o) 368.36 269.89 T |
5792 |
|
|
(u) 375.06 269.89 T |
5793 |
|
|
(t) 381.76 269.89 T |
5794 |
|
|
9 14 Q |
5795 |
|
|
(-) 348.09 275.25 T |
5796 |
|
|
(\050) 319.55 275.25 T |
5797 |
|
|
(\051) 385.85 275.25 T |
5798 |
|
|
0 F |
5799 |
|
|
(2) 347.28 253.88 T |
5800 |
|
|
9 F |
5801 |
|
|
(\050) 301.64 262.4 T |
5802 |
|
|
(\051) 394.75 262.4 T |
5803 |
|
|
0 F |
5804 |
|
|
(t) 274.21 262.4 T |
5805 |
|
|
(a) 278.1 262.4 T |
5806 |
|
|
(n) 284.31 262.4 T |
5807 |
|
|
(h) 291.31 262.4 T |
5808 |
|
|
9 F |
5809 |
|
|
(=) 246.69 262.4 T |
5810 |
|
|
204.87 265.42 238.27 265.42 2 L |
5811 |
|
|
0.33 H |
5812 |
|
|
0 Z |
5813 |
|
|
N |
5814 |
|
|
308.71 265.42 392.59 265.42 2 L |
5815 |
|
|
N |
5816 |
|
|
72 108 523.3 769.9 C |
5817 |
|
|
0 0 595.3 841.9 C |
5818 |
|
|
FMENDPAGE |
5819 |
|
|
%%EndPage: "28" 33 |
5820 |
|
|
%%Page: "29" 33 |
5821 |
|
|
595.3 841.9 0 FMBEGINPAGE |
5822 |
|
|
0 10 Q |
5823 |
|
|
0 X |
5824 |
|
|
0 K |
5825 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
5826 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
5827 |
|
|
(29) 292.65 70.23 T |
5828 |
|
|
0 12 Q |
5829 |
|
|
(The) 72 761.9 T |
5830 |
|
|
2 10 Q |
5831 |
|
|
(BOX) 93.65 761.9 T |
5832 |
|
|
0 12 Q |
5833 |
|
|
( element can be used to generally group items and can be thought of as non-printing) 111.64 761.9 T |
5834 |
|
|
(parentheses. The) 72 747.9 T |
5835 |
|
|
2 10 Q |
5836 |
|
|
(OVER) 155.59 747.9 T |
5837 |
|
|
0 12 Q |
5838 |
|
|
( element is optional and divides the box into numerator and denomina-) 179.58 747.9 T |
5839 |
|
|
(tor) 72 733.9 T |
5840 |
|
|
(. The) 84.67 733.9 T |
5841 |
|
|
2 10 Q |
5842 |
|
|
(ARRAY) 112.31 733.9 T |
5843 |
|
|
0 12 Q |
5844 |
|
|
( element is used to specify arrays for expressions like:) 142.29 733.9 T |
5845 |
|
|
(The) 72 619.9 T |
5846 |
|
|
2 10 Q |
5847 |
|
|
(ARRAY) 93.65 619.9 T |
5848 |
|
|
0 12 Q |
5849 |
|
|
( element has a single attribute) 123.63 619.9 T |
5850 |
|
|
2 10 Q |
5851 |
|
|
(ALIGN) 269.53 619.9 T |
5852 |
|
|
0 12 Q |
5853 |
|
|
( which speci\336es the number of columns and) 299.52 619.9 T |
5854 |
|
|
(the alignment of items within the columns. For each column there is a single letter that speci-) 72 605.9 T |
5855 |
|
|
-0.4 (\336es how items in that column should be positioned:) 72 591.9 P |
5856 |
|
|
2 10 Q |
5857 |
|
|
-0.81 (c) 318.57 591.9 P |
5858 |
|
|
0 12 Q |
5859 |
|
|
-0.4 ( for centered,) 324.56 591.9 P |
5860 |
|
|
2 10 Q |
5861 |
|
|
-0.81 (l) 389.95 591.9 P |
5862 |
|
|
0 12 Q |
5863 |
|
|
-0.4 ( for \337ush left or) 395.95 591.9 P |
5864 |
|
|
2 10 Q |
5865 |
|
|
-0.81 (r) 472.2 591.9 P |
5866 |
|
|
0 12 Q |
5867 |
|
|
-0.4 ( for \337ush) 478.2 591.9 P |
5868 |
|
|
(right. Each item in the array must follow an) 72 577.9 T |
5869 |
|
|
2 10 Q |
5870 |
|
|
(<ITEM>) 284.52 577.9 T |
5871 |
|
|
0 12 Q |
5872 |
|
|
( element.) 320.5 577.9 T |
5873 |
|
|
(The preceding example is represented by:) 72 558.9 T |
5874 |
|
|
2 10 Q |
5875 |
|
|
(<math>) 90 541.23 T |
5876 |
|
|
(\050<array align=\323c\323> <item>) 108 529.23 T |
5877 |
|
|
(&ldet;<array align=\323cc\323>) 126 517.23 T |
5878 |
|
|
(<item>x<sub>11</sub>) 144 505.23 T |
5879 |
|
|
(<item>x<sub>12</sub>) 144 493.23 T |
5880 |
|
|
(<item>x<sub>21</sub>) 144 481.23 T |
5881 |
|
|
(<item>x<sub>22</sub>) 144 469.23 T |
5882 |
|
|
(</array><rd>&rdet;) 126 457.23 T |
5883 |
|
|
(<item> y <item> z) 126 445.23 T |
5884 |
|
|
(</array>\051) 108 433.23 T |
5885 |
|
|
(</math>) 90 421.23 T |
5886 |
|
|
0 12 Q |
5887 |
|
|
-0.31 (The browser is responsible for working out the vertical and horizontal spacing required for the) 72 402.9 P |
5888 |
|
|
-0.02 (array) 72 388.9 P |
5889 |
|
|
-0.02 (. Parentheses) 95.86 388.9 P |
5890 |
|
|
0 10 Q |
5891 |
|
|
-0.02 (1) 158.45 393.7 P |
5892 |
|
|
0 12 Q |
5893 |
|
|
-0.02 ( are stretched to match the size of the array) 163.45 388.9 P |
5894 |
|
|
-0.02 (. Arrays can be used only in the) 368.61 388.9 P |
5895 |
|
|
(context of the) 72 374.9 T |
5896 |
|
|
2 10 Q |
5897 |
|
|
(MATH) 140.95 374.9 T |
5898 |
|
|
0 12 Q |
5899 |
|
|
( element. The) 164.94 374.9 T |
5900 |
|
|
2 10 Q |
5901 |
|
|
(TABLE) 233.55 374.9 T |
5902 |
|
|
0 12 Q |
5903 |
|
|
( element should be used for other contexts.) 263.54 374.9 T |
5904 |
|
|
-0.23 (Spaces are signi\336cant within the) 72 355.9 P |
5905 |
|
|
2 10 Q |
5906 |
|
|
-0.47 (MATH) 229.07 355.9 P |
5907 |
|
|
0 12 Q |
5908 |
|
|
-0.23 ( element, and used for disambiguation, as can be seen in) 253.05 355.9 P |
5909 |
|
|
(the following two examples:) 72 341.9 T |
5910 |
|
|
(Authors can adjust the default horizontal spacing with the ISO entities:) 72 231.9 T |
5911 |
|
|
2 10 Q |
5912 |
|
|
( ) 415.44 231.9 T |
5913 |
|
|
0 12 Q |
5914 |
|
|
( for thin) 463.42 231.9 T |
5915 |
|
|
-0.07 (space \0501/6 em\051 and) 72 217.9 P |
5916 |
|
|
2 10 Q |
5917 |
|
|
-0.15 ( ) 165.63 217.9 P |
5918 |
|
|
0 12 Q |
5919 |
|
|
-0.07 ( for hair space. Horizontal, diagonal and vertical ellipsis are pos-) 213.6 217.9 P |
5920 |
|
|
(sible with) 72 203.9 T |
5921 |
|
|
2 10 Q |
5922 |
|
|
(…) 121.98 203.9 T |
5923 |
|
|
(&dellip;) 172.95 203.9 T |
5924 |
|
|
0 12 Q |
5925 |
|
|
( and) 220.92 203.9 T |
5926 |
|
|
2 10 Q |
5927 |
|
|
(⋮) 244.24 203.9 T |
5928 |
|
|
0 12 Q |
5929 |
|
|
( respectively) 292.21 203.9 T |
5930 |
|
|
(. Common functions like) 352.38 203.9 T |
5931 |
|
|
2 10 Q |
5932 |
|
|
(sin) 474.65 203.9 T |
5933 |
|
|
0 12 Q |
5934 |
|
|
(,) 492.64 203.9 T |
5935 |
|
|
2 10 Q |
5936 |
|
|
(log) 498.64 203.9 T |
5937 |
|
|
0 12 Q |
5938 |
|
|
(and) 72 189.9 T |
5939 |
|
|
2 10 Q |
5940 |
|
|
(tanh) 92.32 189.9 T |
5941 |
|
|
0 12 Q |
5942 |
|
|
( should be rendered in a non-italic font. These functions are de\336ned by their entity) 116.3 189.9 T |
5943 |
|
|
(namesakes. Additional elements are needed to represent roots and for over and under lining.) 72 175.9 T |
5944 |
|
|
72 132 523.3 146.98 C |
5945 |
|
|
81 144.96 225 144.96 2 L |
5946 |
|
|
0.5 H |
5947 |
|
|
2 Z |
5948 |
|
|
0 X |
5949 |
|
|
0 K |
5950 |
|
|
N |
5951 |
|
|
0 0 595.3 841.9 C |
5952 |
|
|
0 10 Q |
5953 |
|
|
0 X |
5954 |
|
|
0 K |
5955 |
|
|
(1. These are { } [ ] \050 \051 and symbols from \322ISO 8879-1986//ENTITIES Added Math Symbols: Delimit-) 90 125.34 T |
5956 |
|
|
(ers//EN\323. Note that) 90 113.34 T |
5957 |
|
|
2 F |
5958 |
|
|
(&ldet;) 169.39 113.34 T |
5959 |
|
|
0 F |
5960 |
|
|
( and) 205.37 113.34 T |
5961 |
|
|
2 F |
5962 |
|
|
(&rdet;) 224.8 113.34 T |
5963 |
|
|
0 F |
5964 |
|
|
( are used when the \322|\323 symbol is used for parentheses.) 260.78 113.34 T |
5965 |
|
|
72 108 523.3 769.9 C |
5966 |
|
|
78.01 634.9 517.28 715.9 C |
5967 |
|
|
4 12 Q |
5968 |
|
|
0 X |
5969 |
|
|
0 K |
5970 |
|
|
(x) 282.14 694.38 T |
5971 |
|
|
0 9 Q |
5972 |
|
|
(1) 287.92 690.62 T |
5973 |
|
|
(1) 292.42 690.62 T |
5974 |
|
|
4 12 Q |
5975 |
|
|
(x) 300.91 694.38 T |
5976 |
|
|
0 9 Q |
5977 |
|
|
(1) 306.7 690.62 T |
5978 |
|
|
(2) 311.19 690.62 T |
5979 |
|
|
4 12 Q |
5980 |
|
|
(x) 282.14 676.46 T |
5981 |
|
|
0 9 Q |
5982 |
|
|
(2) 287.92 672.7 T |
5983 |
|
|
(1) 292.42 672.7 T |
5984 |
|
|
4 12 Q |
5985 |
|
|
(x) 300.91 676.46 T |
5986 |
|
|
0 9 Q |
5987 |
|
|
(2) 306.7 672.7 T |
5988 |
|
|
(2) 311.19 672.7 T |
5989 |
|
|
4 12 Q |
5990 |
|
|
(y) 295.75 656.55 T |
5991 |
|
|
(z) 296.08 641.87 T |
5992 |
|
|
9 F |
5993 |
|
|
(\350) 265.04 646.72 T |
5994 |
|
|
(\370) 326.29 646.72 T |
5995 |
|
|
(\347) 265.04 658.84 T |
5996 |
|
|
(\367) 326.29 658.84 T |
5997 |
|
|
(\347) 265.04 670.95 T |
5998 |
|
|
(\367) 326.29 670.95 T |
5999 |
|
|
(\347) 265.04 683.07 T |
6000 |
|
|
(\367) 326.29 683.07 T |
6001 |
|
|
(\346) 265.04 697.68 T |
6002 |
|
|
(\366) 326.29 697.68 T |
6003 |
|
|
275.64 669.75 275.64 708.58 2 L |
6004 |
|
|
0.33 H |
6005 |
|
|
0 Z |
6006 |
|
|
N |
6007 |
|
|
320.18 669.75 320.18 708.58 2 L |
6008 |
|
|
N |
6009 |
|
|
72 108 523.3 769.9 C |
6010 |
|
|
0 0 595.3 841.9 C |
6011 |
|
|
72 108 523.3 769.9 C |
6012 |
|
|
78 246.9 517.3 337.9 C |
6013 |
|
|
4 12 Q |
6014 |
|
|
0 X |
6015 |
|
|
0 K |
6016 |
|
|
(x) 176.61 265.65 T |
6017 |
|
|
4 9 Q |
6018 |
|
|
(j) 174.11 271.71 T |
6019 |
|
|
(i) 174.11 261.03 T |
6020 |
|
|
9 18 Q |
6021 |
|
|
(\362) 168.18 260.96 T |
6022 |
|
|
2 10 Q |
6023 |
|
|
(∫ <sub>i</sub><sup>j></sup>x) 255.1 265.9 T |
6024 |
|
|
4 12 Q |
6025 |
|
|
(x) 173.37 305.98 T |
6026 |
|
|
4 9 Q |
6027 |
|
|
(i) 168.65 290.23 T |
6028 |
|
|
(j) 168.65 322.13 T |
6029 |
|
|
9 18 Q |
6030 |
|
|
(\362) 167.44 301.3 T |
6031 |
|
|
2 10 Q |
6032 |
|
|
(∫<sub>i</sub><sup>j</sup> x) 257.77 305.32 T |
6033 |
|
|
72 108 523.3 769.9 C |
6034 |
|
|
0 0 595.3 841.9 C |
6035 |
|
|
FMENDPAGE |
6036 |
|
|
%%EndPage: "29" 34 |
6037 |
|
|
%%Page: "30" 34 |
6038 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6039 |
|
|
0 10 Q |
6040 |
|
|
0 X |
6041 |
|
|
0 K |
6042 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6043 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6044 |
|
|
(30) 292.65 70.23 T |
6045 |
|
|
0 12 Q |
6046 |
|
|
-0.18 (An open question is how to render maths on dumb terminals. One approach is to translate into) 72 761.9 P |
6047 |
|
|
(an existing convention such as) 72 747.9 T |
6048 |
|
|
4 F |
6049 |
|
|
(Mathematica) 221.57 747.9 T |
6050 |
|
|
0 F |
6051 |
|
|
(. Another is to write equations as they would be) 284.86 747.9 T |
6052 |
|
|
(spoken aloud. For GUI displays, browsers need to be able to show characters in at least two) 72 733.9 T |
6053 |
|
|
(point sizes as well as being able to stretch parentheses and integral signs etc. to various sizes.) 72 719.9 T |
6054 |
|
|
0 (The processing time needed to size and position symbols suggests that caching may be useful) 72 705.9 P |
6055 |
|
|
(to speed up subsequent scrolling and refresh operations.) 72 691.9 T |
6056 |
|
|
(Comments from mathematicians are welcomed. W) 72 672.9 T |
6057 |
|
|
(idespread support for formulae is likely to) 315.35 672.9 T |
6058 |
|
|
(be delayed until most platforms support the relevant symbols fonts \050or Unicode\051.) 72 658.9 T |
6059 |
|
|
1 14 Q |
6060 |
|
|
(13) 72 629.57 T |
6061 |
|
|
(Indexing) 90 629.57 T |
6062 |
|
|
0 12 Q |
6063 |
|
|
-0.27 (A good index plays an important role in helping you \336nd your way to the material you need. It) 72 609.9 P |
6064 |
|
|
(allows you to type in one or more keywords to see a list of matching topics. The ability to) 72 595.9 T |
6065 |
|
|
-0.24 (view an index directly allows you to gain a feeling for what is covered, and lets you dip in and) 72 581.9 P |
6066 |
|
|
(out of the associated document. Full text indexes like W) 72 567.9 T |
6067 |
|
|
(AIS are easy to create, but don\325) 340.5 567.9 T |
6068 |
|
|
(t give) 491.82 567.9 T |
6069 |
|
|
(you this \337exibility since the index itself cannot be viewed directly) 72 553.9 T |
6070 |
|
|
(.) 387.69 553.9 T |
6071 |
|
|
(Generating a conventional index for a document is a skilled task, and HTML+ allows authors) 72 534.9 T |
6072 |
|
|
(to include directives for automatically creating hypertext indexes. These directives can be) 72 520.9 T |
6073 |
|
|
(included in many HTML+ elements, such as headers, paragraphs and character emphasis) 72 506.9 T |
6074 |
|
|
(using the) 72 492.9 T |
6075 |
|
|
2 10 Q |
6076 |
|
|
(INDEX) 118.64 492.9 T |
6077 |
|
|
0 12 Q |
6078 |
|
|
( attribute. This allows each such element to be referenced in the index under) 148.63 492.9 T |
6079 |
|
|
(primary or secondary keys, e.g.) 72 478.9 T |
6080 |
|
|
3 10 Q |
6081 |
|
|
(<h3 id=\323z23\323 index=\323Radiation damage/shielding from as dif) 90 461.23 T |
6082 |
|
|
(\336cult\323>Radiation shielding</h3>) 354.52 461.23 T |
6083 |
|
|
0 12 Q |
6084 |
|
|
(This can be used to generate an index like:) 72 442.9 T |
6085 |
|
|
(Radiation damage) 108 423.9 T |
6086 |
|
|
(classical tar) 135 409.9 T |
6087 |
|
|
(get theory) 191.07 409.9 T |
6088 |
|
|
(dominance of) 135 395.9 T |
6089 |
|
|
(in molecular mills) 135 381.9 T |
6090 |
|
|
(shielding from as dif) 135 367.9 T |
6091 |
|
|
(\336cult) 234.39 367.9 T |
6092 |
|
|
(simple lifetime model) 135 353.9 T |
6093 |
|
|
(track-structure lifetime model) 135 339.9 T |
6094 |
|
|
(Radicals) 108 325.9 T |
6095 |
|
|
4 F |
6096 |
|
|
(and so on ...) 135 311.9 T |
6097 |
|
|
0 F |
6098 |
|
|
-0.21 (In many cases, a given key will be associated with more than one part of the document. In this) 72 292.9 P |
6099 |
|
|
(case you can either use secondary keys to disambiguate the references, as shown above, or) 72 278.9 T |
6100 |
|
|
(allow the indexing program to generate its own names for each reference, e.g. \050a\051, \050b\051, \050c\051, ...) 72 264.9 T |
6101 |
|
|
(The indexing program creates an HTML+ \336le that can then be linked to the documents it was) 72 245.9 T |
6102 |
|
|
(produced from. The program may also generate a list of references from occurrences of the) 72 231.9 T |
6103 |
|
|
2 10 Q |
6104 |
|
|
(CITE) 72 217.9 T |
6105 |
|
|
0 12 Q |
6106 |
|
|
( element. These can be simply ordered alphabetically) 95.99 217.9 T |
6107 |
|
|
(. Sophisticated bibliographic refer-) 350.34 217.9 T |
6108 |
|
|
(ences are beyond the scope of HTML+ as they require a much richer system of markup.) 72 203.9 T |
6109 |
|
|
1 14 Q |
6110 |
|
|
(14) 72 174.57 T |
6111 |
|
|
(Document declarations) 90 174.57 T |
6112 |
|
|
0 12 Q |
6113 |
|
|
(It is recommended that HTML+ documents start with the following external identi\336er) 72 154.9 T |
6114 |
|
|
0 10 Q |
6115 |
|
|
(1) 484.17 159.7 T |
6116 |
|
|
0 12 Q |
6117 |
|
|
(, indi-) 489.16 154.9 T |
6118 |
|
|
(cating that the document conforms to the HTML+ DTD. This will ensure that other SGML) 72 140.9 T |
6119 |
|
|
72 120 523.3 134.98 C |
6120 |
|
|
81 132.96 225 132.96 2 L |
6121 |
|
|
0.5 H |
6122 |
|
|
2 Z |
6123 |
|
|
0 X |
6124 |
|
|
0 K |
6125 |
|
|
N |
6126 |
|
|
0 0 595.3 841.9 C |
6127 |
|
|
0 10 Q |
6128 |
|
|
0 X |
6129 |
|
|
0 K |
6130 |
|
|
(1. The of) 90 113.34 T |
6131 |
|
|
(\336cial identi\336er will be de\336ned when HTML+ reaches the status of an of) 126.18 113.34 T |
6132 |
|
|
(\336cial standard.) 413.1 113.34 T |
6133 |
|
|
FMENDPAGE |
6134 |
|
|
%%EndPage: "30" 35 |
6135 |
|
|
%%Page: "31" 35 |
6136 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6137 |
|
|
0 10 Q |
6138 |
|
|
0 X |
6139 |
|
|
0 K |
6140 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6141 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6142 |
|
|
(31) 292.65 70.23 T |
6143 |
|
|
0 12 Q |
6144 |
|
|
(parsers can process HTML+ documents, without needing to include the DTD with each docu-) 72 761.9 T |
6145 |
|
|
(ment.) 72 747.9 T |
6146 |
|
|
2 10 Q |
6147 |
|
|
(<!DOCTYPE htmlplus PUBLIC \322-//Internet/RFC xxxx//EN\323>) 90 730.23 T |
6148 |
|
|
0 12 Q |
6149 |
|
|
-0.12 (There are several elements that can only occur at the start of the document before any headers) 72 711.9 P |
6150 |
|
|
(or text elements:) 72 697.9 T |
6151 |
|
|
1 F |
6152 |
|
|
(14.1) 72 669.9 T |
6153 |
|
|
(HTMLPLUS) 99 669.9 T |
6154 |
|
|
0 F |
6155 |
|
|
-0.12 (This element if present must follow immediately after the) 72 650.9 P |
6156 |
|
|
2 10 Q |
6157 |
|
|
-0.23 (DOCTYPE) 350.45 650.9 P |
6158 |
|
|
0 12 Q |
6159 |
|
|
-0.12 ( declaration. It can be used) 392.43 650.9 P |
6160 |
|
|
(to disable form \336lling:) 72 636.9 T |
6161 |
|
|
2 10 Q |
6162 |
|
|
(<htmplus forms=off>) 90 619.23 T |
6163 |
|
|
0 12 Q |
6164 |
|
|
(Another idea is to provide a) 72 600.9 T |
6165 |
|
|
2 10 Q |
6166 |
|
|
(VERSION) 208.57 600.9 T |
6167 |
|
|
0 12 Q |
6168 |
|
|
( attribute for specifying the version number of HTML+) 250.55 600.9 T |
6169 |
|
|
(in used by this document. This would provide an alternative to including the version number) 72 586.9 T |
6170 |
|
|
(in the public name given with the) 72 572.9 T |
6171 |
|
|
2 10 Q |
6172 |
|
|
(DOCTYPE) 235.57 572.9 T |
6173 |
|
|
0 12 Q |
6174 |
|
|
( element.) 277.54 572.9 T |
6175 |
|
|
1 F |
6176 |
|
|
(14.2) 72 544.9 T |
6177 |
|
|
(The HEAD and BODY elements) 99 544.9 T |
6178 |
|
|
0 F |
6179 |
|
|
(These may be used to delimit the document declarations and document body with the HEAD) 72 525.9 T |
6180 |
|
|
(and BODY elements respectively) 72 511.9 T |
6181 |
|
|
(, e.g.) 232.1 511.9 T |
6182 |
|
|
2 10 Q |
6183 |
|
|
(<HEAD>) 90 494.23 T |
6184 |
|
|
(<ISINDEX>) 108 482.23 T |
6185 |
|
|
(<LINK REL=\323Next\323 HREF=\323...\323>) 108 470.23 T |
6186 |
|
|
(etc.) 108 458.23 T |
6187 |
|
|
(</HEAD>) 90 446.23 T |
6188 |
|
|
(<BODY>) 90 429.23 T |
6189 |
|
|
(body elements go here) 108 417.23 T |
6190 |
|
|
(</BODY>) 90 405.23 T |
6191 |
|
|
1 12 Q |
6192 |
|
|
(14.3) 72 377.9 T |
6193 |
|
|
(TITLE) 99 377.9 T |
6194 |
|
|
0 F |
6195 |
|
|
(This element is used to de\336ne the title of the current document. and is often used as the win-) 72 358.9 T |
6196 |
|
|
-0.32 (dow banner for window-based displays. There may be only one title in any node, and it should) 72 344.9 P |
6197 |
|
|
(identify the content of the node in a fairly wide context. No markup is permitted within title) 72 330.9 T |
6198 |
|
|
(text, although character entity references may be used for accented characters etc.) 72 316.9 T |
6199 |
|
|
1 F |
6200 |
|
|
(14.4) 72 288.9 T |
6201 |
|
|
(ISINDEX) 99 288.9 T |
6202 |
|
|
0 F |
6203 |
|
|
(The) 72 269.9 T |
6204 |
|
|
2 10 Q |
6205 |
|
|
(ISINDEX) 93.65 269.9 T |
6206 |
|
|
0 12 Q |
6207 |
|
|
( element speci\336es that the URL given with the) 135.62 269.9 T |
6208 |
|
|
2 10 Q |
6209 |
|
|
(HREF) 361.15 269.9 T |
6210 |
|
|
0 12 Q |
6211 |
|
|
( attribute is) 385.14 269.9 T |
6212 |
|
|
4 F |
6213 |
|
|
(sear) 442.11 269.9 T |
6214 |
|
|
(chable) 462.31 269.9 T |
6215 |
|
|
0 F |
6216 |
|
|
(, e.g.) 494.29 269.9 T |
6217 |
|
|
2 10 Q |
6218 |
|
|
(<ISINDEX HREF=\323glossary.html\323>) 72 255.9 T |
6219 |
|
|
0 12 Q |
6220 |
|
|
(. If the) 251.9 255.9 T |
6221 |
|
|
2 10 Q |
6222 |
|
|
(HREF) 286.54 255.9 T |
6223 |
|
|
0 12 Q |
6224 |
|
|
( attribute is missing, the URL for this docu-) 310.52 255.9 T |
6225 |
|
|
(ment is assumed. Servers may also indicate that the current document is) 72 241.9 T |
6226 |
|
|
4 F |
6227 |
|
|
(sear) 420.1 241.9 T |
6228 |
|
|
(chable) 440.31 241.9 T |
6229 |
|
|
0 F |
6230 |
|
|
( via the) 472.28 241.9 T |
6231 |
|
|
(HTTP headers returned with the document. Browsers should allow users to enter a search) 72 227.9 T |
6232 |
|
|
(string of one or more keywords. When the user presses the) 72 213.9 T |
6233 |
|
|
4 F |
6234 |
|
|
(Return) 356.45 213.9 T |
6235 |
|
|
0 F |
6236 |
|
|
( key) 389.09 213.9 T |
6237 |
|
|
(, the browser maps any) 408.63 213.9 T |
6238 |
|
|
(spaces to \322+\323, and appends this string to the designated URL and sends it to the server) 72 199.9 T |
6239 |
|
|
(, e.g.) 485.01 199.9 T |
6240 |
|
|
2 10 Q |
6241 |
|
|
(URL?word+word+word) 90 182.23 T |
6242 |
|
|
0 12 Q |
6243 |
|
|
(This mechanism has to a lar) 72 163.9 T |
6244 |
|
|
(ge extent been superseded by the) 206.03 163.9 T |
6245 |
|
|
2 10 Q |
6246 |
|
|
(FORM) 367.23 163.9 T |
6247 |
|
|
0 12 Q |
6248 |
|
|
( element. There are still) 391.22 163.9 T |
6249 |
|
|
(good reasons for keeping it in HTML+. In particular) 72 149.9 T |
6250 |
|
|
(, when reading a long document, having) 323.11 149.9 T |
6251 |
|
|
(the search \336eld always visible, makes it much easier for people to enter search strings, than if) 72 135.9 T |
6252 |
|
|
(they \336rst had to scroll to the part of the document which included a search form.) 72 121.9 T |
6253 |
|
|
FMENDPAGE |
6254 |
|
|
%%EndPage: "31" 36 |
6255 |
|
|
%%Page: "32" 36 |
6256 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6257 |
|
|
0 10 Q |
6258 |
|
|
0 X |
6259 |
|
|
0 K |
6260 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6261 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6262 |
|
|
(32) 292.65 70.23 T |
6263 |
|
|
1 12 Q |
6264 |
|
|
(14.5) 72 761.9 T |
6265 |
|
|
(NEXTID) 99 761.9 T |
6266 |
|
|
0 F |
6267 |
|
|
(The) 72 742.9 T |
6268 |
|
|
2 10 Q |
6269 |
|
|
(NEXTID) 93.65 742.9 T |
6270 |
|
|
0 12 Q |
6271 |
|
|
( element is used by browsers that automatically generate identi\336ers for anchor) 129.63 742.9 T |
6272 |
|
|
(points. It speci\336es the next identi\336er to use, to avoid possible confusion with older \050deleted\051) 72 728.9 T |
6273 |
|
|
(values, e.g.) 72 714.9 T |
6274 |
|
|
2 10 Q |
6275 |
|
|
(<nextid n=\323id56\323>) 128.96 714.9 T |
6276 |
|
|
0 12 Q |
6277 |
|
|
(. The identi\336er should take the form of zero or more letters) 230.9 714.9 T |
6278 |
|
|
(followed by one or more digits. The numeric suf) 72 700.9 T |
6279 |
|
|
(\336x should be incremented to generate succes-) 304.62 700.9 T |
6280 |
|
|
(sive identi\336ers.) 72 686.9 T |
6281 |
|
|
1 F |
6282 |
|
|
(14.6) 72 658.9 T |
6283 |
|
|
(BASE) 99 658.9 T |
6284 |
|
|
0 F |
6285 |
|
|
(The) 72 639.9 T |
6286 |
|
|
2 10 Q |
6287 |
|
|
(HREF) 93.65 639.9 T |
6288 |
|
|
0 12 Q |
6289 |
|
|
( attribute of the) 117.64 639.9 T |
6290 |
|
|
2 10 Q |
6291 |
|
|
(BASE) 194.25 639.9 T |
6292 |
|
|
0 12 Q |
6293 |
|
|
( element gives the full URL of the document, and is added by) 218.24 639.9 T |
6294 |
|
|
(the browser when the user makes a local copy) 72 625.9 T |
6295 |
|
|
(. Keeping the full URL is essential when subse-) 291.71 625.9 T |
6296 |
|
|
(quently viewing the copied document as it allows relative URLs to be resolved to their origi-) 72 611.9 T |
6297 |
|
|
(nal references, e.g.) 72 597.9 T |
6298 |
|
|
2 10 Q |
6299 |
|
|
(<BASE HREF=) 165.24 597.9 T |
6300 |
|
|
6 F |
6301 |
|
|
(URL) 231.2 597.9 T |
6302 |
|
|
2 F |
6303 |
|
|
(>.) 249.19 597.9 T |
6304 |
|
|
1 12 Q |
6305 |
|
|
(14.7) 72 569.9 T |
6306 |
|
|
(LINK) 99 569.9 T |
6307 |
|
|
0 F |
6308 |
|
|
(This provides a means of describing the relationship between this document and other docu-) 72 550.9 T |
6309 |
|
|
(ments, and has the same attributes as the) 72 536.9 T |
6310 |
|
|
2 10 Q |
6311 |
|
|
(<A>) 269.53 536.9 T |
6312 |
|
|
0 12 Q |
6313 |
|
|
( element \050see section 5.2\051. A document can have) 287.52 536.9 T |
6314 |
|
|
-0.48 (multiple) 72 522.9 P |
6315 |
|
|
2 10 Q |
6316 |
|
|
-0.96 (LINK) 114.51 522.9 P |
6317 |
|
|
0 12 Q |
6318 |
|
|
-0.48 ( elements. T) 138.49 522.9 P |
6319 |
|
|
-0.48 (ypical uses are to indicate authorship, related indexes and glossaries,) 195.66 522.9 P |
6320 |
|
|
(older or more recent versions etc. Another use is to indicate a stylesheet that contains the) 72 508.9 T |
6321 |
|
|
(author) 72 494.9 T |
6322 |
|
|
(\325) 103.09 494.9 T |
6323 |
|
|
(s layout preferences, e.g. for headers and multi-columns displays. Links can also be) 106.42 494.9 T |
6324 |
|
|
-0.34 (used to indicate a static tree structure of documents with relationships such as \322parent\323, \322next\323) 72 480.9 P |
6325 |
|
|
(and \322previous\323, e.g.) 72 466.9 T |
6326 |
|
|
2 10 Q |
6327 |
|
|
(<LINK HREF=) 170.59 466.9 T |
6328 |
|
|
6 F |
6329 |
|
|
(URL) 236.55 466.9 T |
6330 |
|
|
2 F |
6331 |
|
|
( REL=\323next\323>) 254.54 466.9 T |
6332 |
|
|
0 12 Q |
6333 |
|
|
(The standard values for the) 72 447.9 T |
6334 |
|
|
2 10 Q |
6335 |
|
|
(REL) 205.56 447.9 T |
6336 |
|
|
0 12 Q |
6337 |
|
|
( attribute are) 223.55 447.9 T |
6338 |
|
|
4 F |
6339 |
|
|
(\050case insensitive\051:) 287.16 447.9 T |
6340 |
|
|
2 10 Q |
6341 |
|
|
(UseIndex) 90.33 428.9 T |
6342 |
|
|
0 12 Q |
6343 |
|
|
(The linked document can be used as an index for this document. There) 179.17 428.9 T |
6344 |
|
|
(may be several such indexes. The) 181.17 414.9 T |
6345 |
|
|
2 10 Q |
6346 |
|
|
(TITLE) 345.37 414.9 T |
6347 |
|
|
0 12 Q |
6348 |
|
|
( attribute should be used to) 375.35 414.9 T |
6349 |
|
|
(name each index, e.g. in menus and dialog boxes. This relationship) 181.17 400.9 T |
6350 |
|
|
(implies the document is) 181.17 386.9 T |
6351 |
|
|
4 F |
6352 |
|
|
(sear) 298.44 386.9 T |
6353 |
|
|
(chable) 318.65 386.9 T |
6354 |
|
|
0 F |
6355 |
|
|
(, and the browser should provide a) 350.62 386.9 T |
6356 |
|
|
(means for users to type in one or more keywords. The index may be a) 181.17 372.9 T |
6357 |
|
|
(full text W) 181.17 358.9 T |
6358 |
|
|
(AIS index or a conventional hypertext-based index.) 231.8 358.9 T |
6359 |
|
|
2 10 Q |
6360 |
|
|
(UseGlossary) 90.33 339.9 T |
6361 |
|
|
0 12 Q |
6362 |
|
|
(The linked document can be used to answer glossary queries for this) 179.17 339.9 T |
6363 |
|
|
(document. T) 181.17 325.9 T |
6364 |
|
|
(ypically invoked by a double click on a word) 240.95 325.9 T |
6365 |
|
|
0 10 Q |
6366 |
|
|
(1) 457.47 330.7 T |
6367 |
|
|
0 12 Q |
6368 |
|
|
(, or by drag) 462.47 325.9 T |
6369 |
|
|
-0.41 (selection, followed by clicking a menu item. There may be several such) 181.17 311.9 P |
6370 |
|
|
-0.31 (indexes. The) 181.17 297.9 P |
6371 |
|
|
2 10 Q |
6372 |
|
|
-0.61 (TITLE) 244.84 297.9 P |
6373 |
|
|
0 12 Q |
6374 |
|
|
-0.31 ( attribute should be used to name each index, e.g. in) 274.83 297.9 P |
6375 |
|
|
(menus and dialog boxes.) 181.17 283.9 T |
6376 |
|
|
2 10 Q |
6377 |
|
|
(Contents) 90.33 264.9 T |
6378 |
|
|
0 12 Q |
6379 |
|
|
(The linked document acts as a contents page for a number of related) 179.17 264.9 T |
6380 |
|
|
(documents. The browser should make this available as a button on a) 181.17 250.9 T |
6381 |
|
|
-0.33 (toolbar or as an entry in a navigation menu. The TITLE attribute can be) 181.17 236.9 P |
6382 |
|
|
(used to override the default \322Contents\323 name.) 181.17 222.9 T |
6383 |
|
|
2 10 Q |
6384 |
|
|
(Next) 90.33 203.9 T |
6385 |
|
|
0 12 Q |
6386 |
|
|
(The linked document is next on a path of documents. Browsers should) 179.17 203.9 T |
6387 |
|
|
(make this available as a button on a toolbar or as an entry in a naviga-) 181.17 189.9 T |
6388 |
|
|
(tion menu.) 181.17 175.9 T |
6389 |
|
|
72 120 523.3 134.98 C |
6390 |
|
|
81 132.96 225 132.96 2 L |
6391 |
|
|
0.5 H |
6392 |
|
|
2 Z |
6393 |
|
|
0 X |
6394 |
|
|
0 K |
6395 |
|
|
N |
6396 |
|
|
0 0 595.3 841.9 C |
6397 |
|
|
0 10 Q |
6398 |
|
|
0 X |
6399 |
|
|
0 K |
6400 |
|
|
(1. This may cause problems when the user double clicks a word which is part of a hypertext link.) 90 113.34 T |
6401 |
|
|
FMENDPAGE |
6402 |
|
|
%%EndPage: "32" 37 |
6403 |
|
|
%%Page: "33" 37 |
6404 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6405 |
|
|
0 10 Q |
6406 |
|
|
0 X |
6407 |
|
|
0 K |
6408 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6409 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6410 |
|
|
(33) 292.65 70.23 T |
6411 |
|
|
2 F |
6412 |
|
|
(Previous) 90.33 761.9 T |
6413 |
|
|
0 12 Q |
6414 |
|
|
(The linked document is the previous one to the current document on a) 179.17 761.9 T |
6415 |
|
|
-0.11 (path of documents. Browsers should make this available as a button on) 181.17 747.9 P |
6416 |
|
|
(a toolbar or as an entry in a navigation menu.) 181.17 733.9 T |
6417 |
|
|
2 10 Q |
6418 |
|
|
(Parent) 90.33 714.9 T |
6419 |
|
|
0 12 Q |
6420 |
|
|
-0.43 (The linked document is at the next level up in a hierarchy of documents.) 179.17 714.9 P |
6421 |
|
|
(Browsers should make this available as a button on a toolbar or as an) 181.17 700.9 T |
6422 |
|
|
(entry in a navigation menu. There may be several such parents. The) 181.17 686.9 T |
6423 |
|
|
2 10 Q |
6424 |
|
|
(TITLE) 181.17 672.9 T |
6425 |
|
|
0 12 Q |
6426 |
|
|
( attribute should be used to name each such document.) 211.15 672.9 T |
6427 |
|
|
2 10 Q |
6428 |
|
|
(Bookmark) 90.33 653.9 T |
6429 |
|
|
0 12 Q |
6430 |
|
|
-0.38 (The URL speci\336ed by the) 179.17 653.9 P |
6431 |
|
|
2 10 Q |
6432 |
|
|
-0.77 (HREF) 304.17 653.9 P |
6433 |
|
|
0 12 Q |
6434 |
|
|
-0.38 ( attribute is a bookmark, which is named) 328.15 653.9 P |
6435 |
|
|
(by the) 181.17 639.9 T |
6436 |
|
|
2 10 Q |
6437 |
|
|
(TITLE) 213.81 639.9 T |
6438 |
|
|
0 12 Q |
6439 |
|
|
( attribute. Browsers should make these available as but-) 243.8 639.9 T |
6440 |
|
|
(tons on a toolbar or as entries in a navigation menu.) 181.17 625.9 T |
6441 |
|
|
2 10 Q |
6442 |
|
|
(Made) 90.33 606.9 T |
6443 |
|
|
0 12 Q |
6444 |
|
|
(De\336nes who is the \322maker\323 of this document. The HREF attribute) 179.17 606.9 T |
6445 |
|
|
(should give an appropriate URL e.g. \322mailto:dsr@hplb.hpl.hp.com\323.) 181.17 592.9 T |
6446 |
|
|
(Browsers can use this to allow people to mail or post comments to the) 181.17 578.9 T |
6447 |
|
|
(author of the document.) 181.17 564.9 T |
6448 |
|
|
2 10 Q |
6449 |
|
|
(Help) 90.33 545.9 T |
6450 |
|
|
0 12 Q |
6451 |
|
|
(Associates a help document with this node.) 179.17 545.9 T |
6452 |
|
|
-0.4 (Sometimes it may be useful to specify a hypertext link separately from the text associated with) 72 526.9 P |
6453 |
|
|
(the start of the link. For example a sidebar could be associated with a given paragraph as fol-) 72 512.9 T |
6454 |
|
|
(lows:) 72 498.9 T |
6455 |
|
|
2 10 Q |
6456 |
|
|
(<LINK IDREF=\323z36\323 REL=\323Sidebar\323 HREF=\323sidebar.html\323>) 90 481.23 T |
6457 |
|
|
0 12 Q |
6458 |
|
|
(The) 72 462.9 T |
6459 |
|
|
2 10 Q |
6460 |
|
|
(IDREF) 93.65 462.9 T |
6461 |
|
|
0 12 Q |
6462 |
|
|
( attribute localizes the link to an element in the current document with a speci\336c) 123.63 462.9 T |
6463 |
|
|
(identi\336er \050as de\336ned with the) 72 448.9 T |
6464 |
|
|
2 10 Q |
6465 |
|
|
(ID) 215.57 448.9 T |
6466 |
|
|
0 12 Q |
6467 |
|
|
( attribute\051. In the absence of the) 227.57 448.9 T |
6468 |
|
|
2 10 Q |
6469 |
|
|
(IDREF) 382.77 448.9 T |
6470 |
|
|
0 12 Q |
6471 |
|
|
( attribute, the link is) 412.76 448.9 T |
6472 |
|
|
(associated with the current document as a whole.) 72 434.9 T |
6473 |
|
|
(Other suggestions for) 72 415.9 T |
6474 |
|
|
2 10 Q |
6475 |
|
|
(LINK) 178.26 415.9 T |
6476 |
|
|
0 12 Q |
6477 |
|
|
( currently lie outside this proposal, pending further work. In some) 202.25 415.9 T |
6478 |
|
|
-0.36 (cases,) 72 401.9 P |
6479 |
|
|
2 10 Q |
6480 |
|
|
-0.72 (LINK) 102.94 401.9 P |
6481 |
|
|
0 12 Q |
6482 |
|
|
-0.36 ( elements may be implied by the context in which this document was reached. This) 126.93 401.9 P |
6483 |
|
|
(is explained in section 15.) 72 387.9 T |
6484 |
|
|
1 14 Q |
6485 |
|
|
(15) 72 358.57 T |
6486 |
|
|
(Dealing with Large Documents) 90 358.57 T |
6487 |
|
|
0 12 Q |
6488 |
|
|
(Many classic works are available over the Internet, now that their copyright has expired.) 72 338.9 T |
6489 |
|
|
-0.45 (Downloading these as lar) 72 324.9 P |
6490 |
|
|
-0.45 (ge documents is time consuming, and a better strategy is to split them) 192.01 324.9 P |
6491 |
|
|
(up into smaller pieces. Other people have lots of paper documents and wish to make them) 72 310.9 T |
6492 |
|
|
(available electronically) 72 296.9 T |
6493 |
|
|
(. While it is easy to scan these documents in, the size of the images) 182.79 296.9 T |
6494 |
|
|
(makes them tedious to transfer over the network. Once again, time can be saved by avoiding) 72 282.9 T |
6495 |
|
|
(the need to download the whole document at once. HTML+ makes it easy to do this with) 72 268.9 T |
6496 |
|
|
(explicit or implicit links between the pieces that make up the complete document.) 72 254.9 T |
6497 |
|
|
(A book might have the following pieces:) 72 235.9 T |
6498 |
|
|
(\245) 90 216.9 T |
6499 |
|
|
(\324Cover page\325) 108 216.9 T |
6500 |
|
|
(\245) 90 197.9 T |
6501 |
|
|
(About the author) 108 197.9 T |
6502 |
|
|
(\245) 90 178.9 T |
6503 |
|
|
(Copyright and publishing details) 108 178.9 T |
6504 |
|
|
(\245) 90 159.9 T |
6505 |
|
|
(T) 108 159.9 T |
6506 |
|
|
(able of contents) 114.49 159.9 T |
6507 |
|
|
(\245) 90 140.9 T |
6508 |
|
|
(Foreword) 108 140.9 T |
6509 |
|
|
(\245) 90 121.9 T |
6510 |
|
|
(Preface) 108 121.9 T |
6511 |
|
|
FMENDPAGE |
6512 |
|
|
%%EndPage: "33" 38 |
6513 |
|
|
%%Page: "34" 38 |
6514 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6515 |
|
|
0 10 Q |
6516 |
|
|
0 X |
6517 |
|
|
0 K |
6518 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6519 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6520 |
|
|
(34) 292.65 70.23 T |
6521 |
|
|
0 12 Q |
6522 |
|
|
(\245) 90 761.9 T |
6523 |
|
|
(Acknowledgement) 108 761.9 T |
6524 |
|
|
(\245) 90 742.9 T |
6525 |
|
|
(One or more chapters) 108 742.9 T |
6526 |
|
|
(\245) 90 723.9 T |
6527 |
|
|
(One or more appendices) 108 723.9 T |
6528 |
|
|
(\245) 90 704.9 T |
6529 |
|
|
(Bibliography) 108 704.9 T |
6530 |
|
|
(\245) 90 685.9 T |
6531 |
|
|
(Glossary) 108 685.9 T |
6532 |
|
|
(\245) 90 666.9 T |
6533 |
|
|
(Index) 108 666.9 T |
6534 |
|
|
(Each of these could be held as separate HTML+ subdocuments. The table of contents should) 72 647.9 T |
6535 |
|
|
-0.34 (obviously include hypertext links to other parts of the book rather than page numbers. Y) 72 633.9 P |
6536 |
|
|
-0.34 (ou can) 489.35 633.9 P |
6537 |
|
|
-0.31 (de\336ne a linear sequence through each of these subdocuments by including) 72 619.9 P |
6538 |
|
|
2 10 Q |
6539 |
|
|
-0.63 (LINK) 427.29 619.9 P |
6540 |
|
|
0 12 Q |
6541 |
|
|
-0.31 ( elements with) 451.28 619.9 P |
6542 |
|
|
2 10 Q |
6543 |
|
|
-0.51 (REL=NEXT) 72 605.9 P |
6544 |
|
|
0 12 Q |
6545 |
|
|
-0.25 ( and) 119.97 605.9 P |
6546 |
|
|
2 10 Q |
6547 |
|
|
-0.51 (REL=PREVIOUS) 142.78 605.9 P |
6548 |
|
|
0 12 Q |
6549 |
|
|
-0.25 (. This will allow readers to read through each part of the book in) 214.74 605.9 P |
6550 |
|
|
(turn. Y) 72 591.9 T |
6551 |
|
|
(ou should also include LINKs to the table of contents \050) 104.78 591.9 T |
6552 |
|
|
2 10 Q |
6553 |
|
|
(REL=CONTENTS) 367.94 591.9 T |
6554 |
|
|
0 12 Q |
6555 |
|
|
(\051 and other key) 439.9 591.9 T |
6556 |
|
|
(parts \050using) 72 577.9 T |
6557 |
|
|
2 10 Q |
6558 |
|
|
(REL=BOOKMARK) 131.29 577.9 T |
6559 |
|
|
0 12 Q |
6560 |
|
|
(\051.) 203.26 577.9 T |
6561 |
|
|
-0.25 (Generating a hypertext version of the index may prove time consuming, and it may be simpler) 72 558.9 P |
6562 |
|
|
-0.05 (to of) 72 544.9 P |
6563 |
|
|
-0.05 (fer a full text search facility instead. The) 94.05 544.9 P |
6564 |
|
|
2 10 Q |
6565 |
|
|
-0.11 (INDEX) 291.12 544.9 P |
6566 |
|
|
0 12 Q |
6567 |
|
|
-0.05 ( attribute can be used with many HTML+) 321.1 544.9 P |
6568 |
|
|
(elements to facilitate automatic generation of a conventional looking index, see section 13.) 72 530.9 T |
6569 |
|
|
-0.05 (Implicit links are useful when you want to reuse a given subdocument in another independent) 72 511.9 P |
6570 |
|
|
-0.33 (book, and for non-HTML+ formats such as scanned page images. T) 72 497.9 P |
6571 |
|
|
-0.33 (o de\336ne implicit links, you) 393.02 497.9 P |
6572 |
|
|
(need to \336rst create a HTML+ document such as a table of contents, and to make each entry) 72 483.9 T |
6573 |
|
|
(into a hypertext link using the) 72 469.9 T |
6574 |
|
|
2 10 Q |
6575 |
|
|
(<A>) 218.58 469.9 T |
6576 |
|
|
0 12 Q |
6577 |
|
|
( element with the attribute) 236.57 469.9 T |
6578 |
|
|
2 10 Q |
6579 |
|
|
(REL=\323SUBDOCUMENT\323) 365.49 469.9 T |
6580 |
|
|
0 12 Q |
6581 |
|
|
(. When the) 467.43 469.9 T |
6582 |
|
|
-0.02 (user follows one of these links, the browser scans the current document to locate the next) 72 455.9 P |
6583 |
|
|
2 10 Q |
6584 |
|
|
-0.04 (<A>) 502.33 455.9 P |
6585 |
|
|
0 12 Q |
6586 |
|
|
-0.22 (element with the subdocument relationship. If it reaches the end of the document it looks for a) 72 441.9 P |
6587 |
|
|
2 10 Q |
6588 |
|
|
-0.06 (LINK) 72 427.9 P |
6589 |
|
|
0 12 Q |
6590 |
|
|
-0.03 ( element with) 95.99 427.9 P |
6591 |
|
|
2 10 Q |
6592 |
|
|
-0.06 (REL=NEXT) 164.18 427.9 P |
6593 |
|
|
0 12 Q |
6594 |
|
|
-0.03 (. This procedure is used to imply a) 211.27 427.9 P |
6595 |
|
|
2 10 Q |
6596 |
|
|
-0.06 (LINK) 379.9 427.9 P |
6597 |
|
|
0 12 Q |
6598 |
|
|
-0.03 ( element in the retrieved) 403.88 427.9 P |
6599 |
|
|
(subdocument. A similar process is used to imply a) 72 413.9 T |
6600 |
|
|
2 10 Q |
6601 |
|
|
(LINK) 316.52 413.9 T |
6602 |
|
|
0 12 Q |
6603 |
|
|
( element with) 340.51 413.9 T |
6604 |
|
|
2 10 Q |
6605 |
|
|
(REL=PREVIOUS) 408.8 413.9 T |
6606 |
|
|
0 12 Q |
6607 |
|
|
(. The) 480.76 413.9 T |
6608 |
|
|
(other links for the current document are simply inherited, i.e. any bookmarks, glossary or) 72 399.9 T |
6609 |
|
|
(index links that hold for the table of contents, also hold for the subdocument.) 72 385.9 T |
6610 |
|
|
(The browser then retrieves the subdocument and mer) 72 366.9 T |
6611 |
|
|
(ges the implied LINKs with any that are) 326.58 366.9 T |
6612 |
|
|
(given explicitly) 72 352.9 T |
6613 |
|
|
0 10 Q |
6614 |
|
|
(1) 146.96 357.7 T |
6615 |
|
|
0 12 Q |
6616 |
|
|
(. If the user now presses the \322Next\323 button on the toolbar \050or menu\051, the) 151.96 352.9 T |
6617 |
|
|
-0.21 (browser follows the implicit link to the next subdocument. The browser needs to look again at) 72 338.9 P |
6618 |
|
|
-0.3 (the parent document to \336nd the new) 72 324.9 P |
6619 |
|
|
4 F |
6620 |
|
|
-0.3 (next) 245.43 324.9 P |
6621 |
|
|
0 F |
6622 |
|
|
-0.3 ( subdocument. This mechanism is dif) 265.41 324.9 P |
6623 |
|
|
-0.3 (\336cult to explain,) 442.91 324.9 P |
6624 |
|
|
(but simple to write documents for) 72 310.9 T |
6625 |
|
|
(. All that authors need to do, is to remember to include the) 233.57 310.9 T |
6626 |
|
|
(subdocument relationship when de\336ning hypertext links.) 72 296.9 T |
6627 |
|
|
-0.07 (For a hundred page scanned document where each page is held as a separate \336le, the \322table of) 72 277.9 P |
6628 |
|
|
(contents\323 is going to be pretty dull, and there is little point creating it as an HTML+ node.) 72 263.9 T |
6629 |
|
|
(Instead, you should use an HTTP server which passes the missing) 72 249.9 T |
6630 |
|
|
2 10 Q |
6631 |
|
|
(LINK) 391.12 249.9 T |
6632 |
|
|
0 12 Q |
6633 |
|
|
( elements as header) 415.11 249.9 T |
6634 |
|
|
-0.07 (\336elds for each page image. The suggested representation for these header \336elds uses the same) 72 235.9 P |
6635 |
|
|
(attributes and syntax as the) 72 221.9 T |
6636 |
|
|
2 10 Q |
6637 |
|
|
(LINK) 204.91 221.9 T |
6638 |
|
|
0 12 Q |
6639 |
|
|
( element:) 228.9 221.9 T |
6640 |
|
|
2 10 Q |
6641 |
|
|
(WWW-Link: REL=\323Next\323 HREF=\323http://info.cern.ch/....\323) 90 204.23 T |
6642 |
|
|
0 12 Q |
6643 |
|
|
0 (There could be several) 72 185.9 P |
6644 |
|
|
2 10 Q |
6645 |
|
|
0 (WWW-Link:) 183.89 185.9 P |
6646 |
|
|
0 12 Q |
6647 |
|
|
0 ( headers, one for each implied) 237.86 185.9 P |
6648 |
|
|
2 10 Q |
6649 |
|
|
0 (LINK) 385.39 185.9 P |
6650 |
|
|
0 12 Q |
6651 |
|
|
0 (. This idea puts the bur-) 409.38 185.9 P |
6652 |
|
|
(den on the server to supply such links as appropriate to each requested document.) 72 171.9 T |
6653 |
|
|
72 120 523.3 134.98 C |
6654 |
|
|
81 132.96 225 132.96 2 L |
6655 |
|
|
0.5 H |
6656 |
|
|
2 Z |
6657 |
|
|
0 X |
6658 |
|
|
0 K |
6659 |
|
|
N |
6660 |
|
|
0 0 595.3 841.9 C |
6661 |
|
|
0 10 Q |
6662 |
|
|
0 X |
6663 |
|
|
0 K |
6664 |
|
|
(1. An explicit) 90 113.34 T |
6665 |
|
|
2 F |
6666 |
|
|
(LINK) 147.19 113.34 T |
6667 |
|
|
0 F |
6668 |
|
|
( for the) 171.18 113.34 T |
6669 |
|
|
4 F |
6670 |
|
|
(next) 202.54 113.34 T |
6671 |
|
|
0 F |
6672 |
|
|
( or) 219.19 113.34 T |
6673 |
|
|
4 F |
6674 |
|
|
(pr) 232.51 113.34 T |
6675 |
|
|
(evious) 241.03 113.34 T |
6676 |
|
|
0 F |
6677 |
|
|
( document overrides an implicit one.) 266.56 113.34 T |
6678 |
|
|
FMENDPAGE |
6679 |
|
|
%%EndPage: "34" 39 |
6680 |
|
|
%%Page: "35" 39 |
6681 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6682 |
|
|
0 10 Q |
6683 |
|
|
0 X |
6684 |
|
|
0 K |
6685 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6686 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6687 |
|
|
(35) 292.65 70.23 T |
6688 |
|
|
1 14 Q |
6689 |
|
|
(16) 72 760.57 T |
6690 |
|
|
(Acknowledgements) 90 760.57 T |
6691 |
|
|
0 12 Q |
6692 |
|
|
(I would like to thank the many people on the) 72 740.9 T |
6693 |
|
|
4 F |
6694 |
|
|
(www-talk) 289.86 740.9 T |
6695 |
|
|
0 F |
6696 |
|
|
( mailing list who have contributed to) 335.84 740.9 T |
6697 |
|
|
(the design of HTML+ and to the management of HP Labs for their support during this work.) 72 726.9 T |
6698 |
|
|
(David Raggett, Hewlett Packard Laboratories, October 1993.) 72 707.9 T |
6699 |
|
|
1 14 Q |
6700 |
|
|
(17) 72 678.57 T |
6701 |
|
|
(References) 90 678.57 T |
6702 |
|
|
0 12 Q |
6703 |
|
|
(\322) 72 658.9 T |
6704 |
|
|
4 F |
6705 |
|
|
(Hypertext Markup Language \050HTML\051) 77.32 658.9 T |
6706 |
|
|
0 F |
6707 |
|
|
(\323, T) 259.53 658.9 T |
6708 |
|
|
(im Berners-Lee, January 1993.) 277.76 658.9 T |
6709 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/html-spec.ps) 108 644.9 T |
6710 |
|
|
(or http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html) 108 630.9 T |
6711 |
|
|
(\322) 72 611.9 T |
6712 |
|
|
4 F |
6713 |
|
|
(Uniform Resour) 77.32 611.9 T |
6714 |
|
|
(ce Locators) 154.5 611.9 T |
6715 |
|
|
0 F |
6716 |
|
|
(\323, T) 210.8 611.9 T |
6717 |
|
|
(im Berners-Lee, January 1992.) 229.03 611.9 T |
6718 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/url7a.ps) 108 597.9 T |
6719 |
|
|
(or http://info.cern.ch/hypertext/WWW/Addressing/Addressing.html) 108 583.9 T |
6720 |
|
|
(\322) 72 564.9 T |
6721 |
|
|
4 F |
6722 |
|
|
(Pr) 77.32 564.9 T |
6723 |
|
|
(otocol for the Retrieval and Manipulation of T) 88.88 564.9 T |
6724 |
|
|
(exual and Hypermedia Information) 310.66 564.9 T |
6725 |
|
|
0 F |
6726 |
|
|
(\323,) 480.21 564.9 T |
6727 |
|
|
(T) 108 550.9 T |
6728 |
|
|
(im Berners-Lee, 1993.) 114.91 550.9 T |
6729 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/http-spec.ps) 108 536.9 T |
6730 |
|
|
(or http://info.cern.ch/hypertext/WWW/Protocols/HTTP/HTTP2.html) 108 522.9 T |
6731 |
|
|
(\322) 72 503.9 T |
6732 |
|
|
4 F |
6733 |
|
|
(The SGML Handbook) 77.32 503.9 T |
6734 |
|
|
0 F |
6735 |
|
|
(\323, Charles F) 182.59 503.9 T |
6736 |
|
|
(. GoldFarb, pub. 1990 by the Clarendon Press, Oxford.) 239.26 503.9 T |
6737 |
|
|
FMENDPAGE |
6738 |
|
|
%%EndPage: "35" 40 |
6739 |
|
|
%%Page: "36" 40 |
6740 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6741 |
|
|
0 10 Q |
6742 |
|
|
0 X |
6743 |
|
|
0 K |
6744 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6745 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6746 |
|
|
(36) 292.65 70.23 T |
6747 |
|
|
FMENDPAGE |
6748 |
|
|
%%EndPage: "36" 41 |
6749 |
|
|
%%Page: "37" 41 |
6750 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6751 |
|
|
0 10 Q |
6752 |
|
|
0 X |
6753 |
|
|
0 K |
6754 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6755 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6756 |
|
|
(37) 292.65 70.23 T |
6757 |
|
|
1 18 Q |
6758 |
|
|
(Appendix I) 251.66 757.9 T |
6759 |
|
|
3 12 Q |
6760 |
|
|
-0.04 (The HTML+ Document T) 144 725.9 P |
6761 |
|
|
-0.04 (ype De\336nition \050DTD\051. The prelim-) 275.52 725.9 P |
6762 |
|
|
(inaries are taken from the HTML DTD and declares the) 144 711.9 T |
6763 |
|
|
(character set as Latin-1, disables markup minimisation) 144 697.9 T |
6764 |
|
|
(and sets limits for tag/attribute names to 34 characters,) 144 683.9 T |
6765 |
|
|
(and attribute values to a maximum of 1024 characters.) 144 669.9 T |
6766 |
|
|
2 10 Q |
6767 |
|
|
(<!SGML \322ISO 8879:1986\323) 72 652.23 T |
6768 |
|
|
(--) 72 640.23 T |
6769 |
|
|
(Document Type Def) 72 628.23 T |
6770 |
|
|
(inition for the HyperText Markup Language Plus) 173.94 628.23 T |
6771 |
|
|
(for use with the World Wide Web application \050HTML+ DTD\051. These) 72 616.23 T |
6772 |
|
|
(initial settings are take from the HTML DTD.) 72 604.23 T |
6773 |
|
|
( NOTE: This is a def) 72 580.23 T |
6774 |
|
|
(inition of HTML with respect to) 233.91 580.23 T |
6775 |
|
|
( SGML, and assumes an understanding of SGML terms.) 72 568.23 T |
6776 |
|
|
(--) 72 556.23 T |
6777 |
|
|
(CHARSET) 72 544.23 T |
6778 |
|
|
( BASESET \322ISO 646:1983//CHARSET) 72 532.23 T |
6779 |
|
|
( International Reference Version \050IRV\051//ESC 2/5 4/0\323) 72 520.23 T |
6780 |
|
|
( DESCSET 0 9 UNUSED) 72 508.23 T |
6781 |
|
|
( 9 2 9) 72 496.23 T |
6782 |
|
|
( 11 2 UNUSED) 72 484.23 T |
6783 |
|
|
( 13 1 13) 72 472.23 T |
6784 |
|
|
( 14 18 UNUSED) 72 460.23 T |
6785 |
|
|
( 32 95 32) 72 448.23 T |
6786 |
|
|
( 127 1 UNUSED) 72 436.23 T |
6787 |
|
|
( BASESET \322ISO Registration Number 100//CHARSET) 72 424.23 T |
6788 |
|
|
( ECMA-94 Right Part of Latin Alphabet Nr. 1//ESC 2/13 4/1\323) 72 412.23 T |
6789 |
|
|
( DESCSET 128 32 UNUSED) 72 400.23 T |
6790 |
|
|
( 160 95 32) 72 388.23 T |
6791 |
|
|
( 255 1 UNUSED) 72 376.23 T |
6792 |
|
|
(CAPACITY SGMLREF) 72 352.23 T |
6793 |
|
|
( TOTALCAP 150000) 72 340.23 T |
6794 |
|
|
( GRPCAP 150000) 72 328.23 T |
6795 |
|
|
(SCOPE DOCUMENT) 72 304.23 T |
6796 |
|
|
(SYNTAX) 72 292.23 T |
6797 |
|
|
( SHUNCHAR CONTROLS 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18) 72 280.23 T |
6798 |
|
|
( 19 20 21 22 23 24 25 26 27 28 29 30 31 127 255) 72 268.23 T |
6799 |
|
|
( BASESET \322ISO 646:1983//CHARSET) 72 256.23 T |
6800 |
|
|
( International Reference Version \050IRV\051//ESC 2/5 4/0\323) 72 244.23 T |
6801 |
|
|
( DESCSET 0 128 0) 72 232.23 T |
6802 |
|
|
( FUNCTION RE 13) 72 220.23 T |
6803 |
|
|
( RS 10) 72 208.23 T |
6804 |
|
|
( SPACE 32) 72 196.23 T |
6805 |
|
|
( TAB SEPCHAR 9) 72 184.23 T |
6806 |
|
|
( NAMING LCNMSTRT \322\322) 72 172.23 T |
6807 |
|
|
( UCNMSTRT \322\322) 72 160.23 T |
6808 |
|
|
( LCNMCHAR \322.-\323) 72 148.23 T |
6809 |
|
|
( UCNMCHAR \322.-\323) 72 136.23 T |
6810 |
|
|
( NAMECASE GENERAL YES) 72 124.23 T |
6811 |
|
|
( ENTITY NO) 72 112.23 T |
6812 |
|
|
FMENDPAGE |
6813 |
|
|
%%EndPage: "37" 42 |
6814 |
|
|
%%Page: "38" 42 |
6815 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6816 |
|
|
0 10 Q |
6817 |
|
|
0 X |
6818 |
|
|
0 K |
6819 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6820 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6821 |
|
|
(38) 292.65 70.23 T |
6822 |
|
|
2 F |
6823 |
|
|
( DELIM GENERAL SGMLREF) 72 763.23 T |
6824 |
|
|
( SHORTREF SGMLREF) 72 751.23 T |
6825 |
|
|
( NAMES SGMLREF) 72 739.23 T |
6826 |
|
|
( QUANTITY SGMLREF) 72 727.23 T |
6827 |
|
|
( NAMELEN 34) 72 715.23 T |
6828 |
|
|
( TAGLVL 100) 72 703.23 T |
6829 |
|
|
( LITLEN 1024) 72 691.23 T |
6830 |
|
|
( GRPGTCNT 150) 72 679.23 T |
6831 |
|
|
( GRPCNT 64) 72 667.23 T |
6832 |
|
|
(FEATURES) 72 643.23 T |
6833 |
|
|
( MINIMIZE) 72 631.23 T |
6834 |
|
|
( DATATAG NO) 72 619.23 T |
6835 |
|
|
( OMITTAG NO) 72 607.23 T |
6836 |
|
|
( RANK NO) 72 595.23 T |
6837 |
|
|
( SHORTTAG NO) 72 583.23 T |
6838 |
|
|
( LINK) 72 571.23 T |
6839 |
|
|
( SIMPLE NO) 72 559.23 T |
6840 |
|
|
( IMPLICIT NO) 72 547.23 T |
6841 |
|
|
( EXPLICIT NO) 72 535.23 T |
6842 |
|
|
( OTHER) 72 523.23 T |
6843 |
|
|
( CONCUR NO) 72 511.23 T |
6844 |
|
|
( SUBDOC NO) 72 499.23 T |
6845 |
|
|
( FORMAL YES) 72 487.23 T |
6846 |
|
|
( APPINFO NONE) 72 475.23 T |
6847 |
|
|
(>) 72 463.23 T |
6848 |
|
|
(<!DOCTYPE HTMLPLUS [) 72 451.23 T |
6849 |
|
|
(<!-- DTD for HTML+) 72 439.23 T |
6850 |
|
|
(Markup minimisation should be avoided, otherwise the default <!SGML> decla-) 72 427.23 T |
6851 |
|
|
(ration is f) 72 415.23 T |
6852 |
|
|
(ine. Browsers should be forgiving of markup errors.) 137.96 415.23 T |
6853 |
|
|
(Common Attributes:) 72 391.23 T |
6854 |
|
|
(id the id attribute allows authors to name elements such as headers) 72 367.23 T |
6855 |
|
|
( and paragraphs as potential destinations for links. Note that) 72 355.23 T |
6856 |
|
|
( links don\325t specify points, but rather extended objects.) 72 343.23 T |
6857 |
|
|
(index allows authors to specify how given headers etc should be) 72 331.23 T |
6858 |
|
|
( indexed as primary or secondary keys, where \322/\323 separates primary) 72 319.23 T |
6859 |
|
|
( from secondary keys, \322;\323 separates multiple entries) 72 307.23 T |
6860 |
|
|
(-->) 72 295.23 T |
6861 |
|
|
(<!-- ENTITY DECLARATIONS) 72 283.23 T |
6862 |
|
|
( <!ENTITY % foo \322X | Y | Z\323> is a macro def) 72 271.23 T |
6863 |
|
|
(inition for parameters and in) 329.86 271.23 T |
6864 |
|
|
( subsequent statements, the string \322%foo;\323 is expanded to \322X | Y | Z\323) 72 259.23 T |
6865 |
|
|
( Various classes of SGML text types:) 72 235.23 T |
6866 |
|
|
( #CDATA text which doesn\325t include markup or entity references) 72 211.23 T |
6867 |
|
|
( #RCDATA text with entity references but no markup) 72 199.23 T |
6868 |
|
|
-0.32 ( #PCDATA text occurring in a context in which markup and entity references) 72 187.23 P |
6869 |
|
|
( may occur.) 72 175.23 T |
6870 |
|
|
(-->) 72 163.23 T |
6871 |
|
|
(<!ENTITY % URL \322CDATA\323 -- a URL or URN designating a hypertext node -->) 72 151.23 T |
6872 |
|
|
(<!ENTITY % emph1 \322I|B|U|S|SUP|SUB|TT\323>) 72 139.23 T |
6873 |
|
|
(<!ENTITY % emph2 \322Q|CITE|PERSON|ACRONYM|ABBREV|EM|STRONG\323>) 72 127.23 T |
6874 |
|
|
(<!ENTITY % emph3 \322CMD|ARG|KBD|VAR|DFN|CODE|SAMP|REMOVED|ADDED\323>) 72 115.23 T |
6875 |
|
|
FMENDPAGE |
6876 |
|
|
%%EndPage: "38" 43 |
6877 |
|
|
%%Page: "39" 43 |
6878 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6879 |
|
|
0 10 Q |
6880 |
|
|
0 X |
6881 |
|
|
0 K |
6882 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6883 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6884 |
|
|
(39) 292.65 70.23 T |
6885 |
|
|
2 F |
6886 |
|
|
(<!ENTITY % emph \322%emph1;|%emph2;|%emph3;\323>) 72 763.23 T |
6887 |
|
|
(<!ENTITY % misc \322RENDER|FOOTNOTE|MARGIN|INPUT|TEXTAREA|SELECT\323>) 72 751.23 T |
6888 |
|
|
(<!ENTITY % text \322#PCDATA|A|IMG|IMAGE|%emph;|%misc;|BR|CHANGED\323>) 72 739.23 T |
6889 |
|
|
(<!ENTITY % paras \322P|PRE|LIT|FIG\323>) 72 727.23 T |
6890 |
|
|
(<!ENTITY % lists \322UL|OL|DL|MENU|DIR\323>) 72 715.23 T |
6891 |
|
|
(<!ENTITY % block \322TABLE|FORM|MATH|NOTE|QUOTE|ABSTRACT|BYLINE|HR\323>) 72 703.23 T |
6892 |
|
|
(<!ENTITY % heading \322H1|H2|H3|H4|H5|H6\323>) 72 691.23 T |
6893 |
|
|
(<!ENTITY % table \322%text;|P|%heading;|%lists;\323>) 72 679.23 T |
6894 |
|
|
(<!ENTITY % math \322BOX|%text;\323>) 72 667.23 T |
6895 |
|
|
(<!ENTITY % main \322%heading;|%block;|%lists;|%paras;|%text;\323>) 72 655.23 T |
6896 |
|
|
(<!ENTITY % setup \322\050TITLE? & ISINDEX? & NEXTID? & LINK* & BASE?\051\323>) 72 643.23 T |
6897 |
|
|
(<!-- Basic types of elements:) 72 619.23 T |
6898 |
|
|
( <!ELEMENT tagname - - CONTENT> elements needing end tags) 72 607.23 T |
6899 |
|
|
( <!ELEMENT tagname - O CONTENT> elements with optional end tags) 72 595.23 T |
6900 |
|
|
( <!ELEMENT tagname - O EMPTY> elements without content or end tags) 72 583.23 T |
6901 |
|
|
(The content def) 72 559.23 T |
6902 |
|
|
(inition is:) 161.95 559.23 T |
6903 |
|
|
( - an entity def) 72 547.23 T |
6904 |
|
|
(inition as def) 209.92 547.23 T |
6905 |
|
|
(ined above) 293.88 547.23 T |
6906 |
|
|
( - a tagname) 72 535.23 T |
6907 |
|
|
( - \050brackets enclosing the above\051) 72 523.23 T |
6908 |
|
|
(These may be combined with the operators:) 72 511.23 T |
6909 |
|
|
( A* A occurs zero or more times) 72 499.23 T |
6910 |
|
|
( A+ A occurs one or more times) 72 487.23 T |
6911 |
|
|
( A|B implies either A or B) 72 475.23 T |
6912 |
|
|
( A? A occurs zero or one times) 72 463.23 T |
6913 |
|
|
( A,B implies f) 72 451.23 T |
6914 |
|
|
(irst A then B) 185.94 451.23 T |
6915 |
|
|
( A&B either or both A and B \050in either order\051) 72 439.23 T |
6916 |
|
|
(-->) 72 427.23 T |
6917 |
|
|
(<!ELEMENT HTMLPLUS O O \050\050HEAD, BODY\051 | \050\050%setup;\051, \050%main;\051*\051\051>) 72 403.23 T |
6918 |
|
|
(<!ATTLIST HTMLPLUS) 72 391.23 T |
6919 |
|
|
( version CDATA #IMPLIED -- the HTML+ version number --) 72 379.23 T |
6920 |
|
|
( forms \050on|off\051 on -- used to disable form f) 72 367.23 T |
6921 |
|
|
(illing -->) 407.82 367.23 T |
6922 |
|
|
(<!ELEMENT HEAD - - \050%setup;\051 -- delimits document wide properties -->) 72 343.23 T |
6923 |
|
|
(<!ELEMENT BODY - - \050%main;\051* -- delimits the document\325s body -->) 72 331.23 T |
6924 |
|
|
(<!-- Document title -->) 72 307.23 T |
6925 |
|
|
(<!ELEMENT TITLE - - \050#PCDATA | %emph;\051+>) 72 295.23 T |
6926 |
|
|
(<!ATTLIST TITLE) 72 283.23 T |
6927 |
|
|
( id ID #IMPLIED -- link destination --) 72 271.23 T |
6928 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 259.23 T |
6929 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 247.23 T |
6930 |
|
|
(<!-- Document headers -->) 72 223.23 T |
6931 |
|
|
(<!ELEMENT \050%heading;\051 - - \050#PCDATA | %emph;\051+>) 72 211.23 T |
6932 |
|
|
(<!ATTLIST \050%heading;\051) 72 199.23 T |
6933 |
|
|
( id ID #IMPLIED -- def) 72 187.23 T |
6934 |
|
|
(ines link destination --) 305.87 187.23 T |
6935 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 175.23 T |
6936 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 163.23 T |
6937 |
|
|
(<!-- character emphasis -->) 72 139.23 T |
6938 |
|
|
(<!ELEMENT \050%emph;\051 - - \050%text;\051*>) 72 127.23 T |
6939 |
|
|
(<!ATTLIST \050%emph;\051) 72 115.23 T |
6940 |
|
|
FMENDPAGE |
6941 |
|
|
%%EndPage: "39" 44 |
6942 |
|
|
%%Page: "40" 44 |
6943 |
|
|
595.3 841.9 0 FMBEGINPAGE |
6944 |
|
|
0 10 Q |
6945 |
|
|
0 X |
6946 |
|
|
0 K |
6947 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
6948 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
6949 |
|
|
(40) 292.65 70.23 T |
6950 |
|
|
2 F |
6951 |
|
|
( id ID #IMPLIED -- link destination --) 72 763.23 T |
6952 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 751.23 T |
6953 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 739.23 T |
6954 |
|
|
(<!ELEMENT \050FOOTNOTE|MARGIN\051 - - \050%text;\051* -\050FOOTNOTE|MARGIN\051>) 72 715.23 T |
6955 |
|
|
(<!ATTLIST \050FOOTNOTE|MARGIN\051) 72 703.23 T |
6956 |
|
|
( id ID #IMPLIED -- link destination --) 72 691.23 T |
6957 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 679.23 T |
6958 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 667.23 T |
6959 |
|
|
(<!ELEMENT RENDER -O \050EMPTY\051 -- how to render unknown elements -->) 72 643.23 T |
6960 |
|
|
(<!ATTLIST RENDER) 72 631.23 T |
6961 |
|
|
( tag CDATA #IMPLIED -- tag name --) 72 619.23 T |
6962 |
|
|
( style CDATA #IMPLIED -- comma separated list of styles -->) 72 607.23 T |
6963 |
|
|
(<!-- Paragraphs which act as containers for the following text -->) 72 583.23 T |
6964 |
|
|
(<!ELEMENT P - O \050L|%text;\051+>) 72 571.23 T |
6965 |
|
|
(<!ATTLIST P) 72 559.23 T |
6966 |
|
|
( id ID #IMPLIED -- link destination --) 72 547.23 T |
6967 |
|
|
( align \050left|indent|center|right|justify\051 left) 72 535.23 T |
6968 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 523.23 T |
6969 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 511.23 T |
6970 |
|
|
(<!ELEMENT L - O \050%text;\051+>) 72 499.23 T |
6971 |
|
|
(<!ATTLIST L) 72 487.23 T |
6972 |
|
|
( id ID #IMPLIED -- link destination --) 72 475.23 T |
6973 |
|
|
( align \050left|indent|center|right|justify\051 left) 72 463.23 T |
6974 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 451.23 T |
6975 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 439.23 T |
6976 |
|
|
(<!ELEMENT HR - O EMPTY -- Horizontal Rule -->) 72 415.23 T |
6977 |
|
|
(<!ELEMENT BR - O EMPTY -- line break in normal text-->) 72 403.23 T |
6978 |
|
|
(<!ELEMENT PRE - - \050TAB|%text;\051+ -- preformatted f) 72 379.23 T |
6979 |
|
|
(ixed pitch text -->) 365.84 379.23 T |
6980 |
|
|
(<!ATTLIST PRE) 72 367.23 T |
6981 |
|
|
( id ID #IMPLIED -- link destination --) 72 355.23 T |
6982 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 343.23 T |
6983 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 331.23 T |
6984 |
|
|
(<!ELEMENT LIT - - \050TAB|%text;\051+ -- literal variable pitch text -->) 72 307.23 T |
6985 |
|
|
(<!ATTLIST LIT) 72 295.23 T |
6986 |
|
|
( id ID #IMPLIED -- link destination --) 72 283.23 T |
6987 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 271.23 T |
6988 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 259.23 T |
6989 |
|
|
(<!ELEMENT TAB - O EMPTY -- tabs for imported text -->) 72 235.23 T |
6990 |
|
|
(<!ATTLIST TAB) 72 223.23 T |
6991 |
|
|
( at NUMBER #IMPLIED -- measured in widths of a capital M --) 72 211.23 T |
6992 |
|
|
( align \050left|center|right|decimal\051 left -- tab alignment -->) 72 199.23 T |
6993 |
|
|
(<!ELEMENT QUOTE - - \050P|%text;\051* -- block quote -->) 72 175.23 T |
6994 |
|
|
(<!ATTLIST QUOTE) 72 163.23 T |
6995 |
|
|
( id ID #IMPLIED -- link destination --) 72 151.23 T |
6996 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 139.23 T |
6997 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 127.23 T |
6998 |
|
|
FMENDPAGE |
6999 |
|
|
%%EndPage: "40" 45 |
7000 |
|
|
%%Page: "41" 45 |
7001 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7002 |
|
|
0 10 Q |
7003 |
|
|
0 X |
7004 |
|
|
0 K |
7005 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7006 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7007 |
|
|
(41) 292.65 70.23 T |
7008 |
|
|
2 F |
7009 |
|
|
(<!ELEMENT ABSTRACT - - \050P|%text;\051* -- document summary -->) 72 763.23 T |
7010 |
|
|
(<!ATTLIST ABSTRACT) 72 751.23 T |
7011 |
|
|
( id ID #IMPLIED -- link destination --) 72 739.23 T |
7012 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 727.23 T |
7013 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 715.23 T |
7014 |
|
|
(<!ELEMENT BYLINE - - \050P|%text;\051* -- info on author -->) 72 703.23 T |
7015 |
|
|
(<!ATTLIST BYLINE) 72 691.23 T |
7016 |
|
|
( id ID #IMPLIED -- link destination --) 72 679.23 T |
7017 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 667.23 T |
7018 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 655.23 T |
7019 |
|
|
(<!ELEMENT NOTE - - \050P|%text;\051* -- admonishment -->) 72 643.23 T |
7020 |
|
|
(<!ATTLIST NOTE) 72 631.23 T |
7021 |
|
|
( id ID #IMPLIED -- link destination --) 72 619.23 T |
7022 |
|
|
( role CDATA #IMPLIED -- e.g. Tip, Note, Warning, or Error --) 72 607.23 T |
7023 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 595.23 T |
7024 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 583.23 T |
7025 |
|
|
(<!ELEMENT \050ADDRESS|BLOCKQUOTE\051 - - \050%text;|P\051* --compatibility with HTML-->) 72 559.23 T |
7026 |
|
|
(<!-- Lists which can be nested -->) 72 535.23 T |
7027 |
|
|
(<!ELEMENT OL - - \050LI | UL | OL\051+ -- ordered list -->) 72 523.23 T |
7028 |
|
|
(<!ATTLIST OL) 72 511.23 T |
7029 |
|
|
( id ID #IMPLIED) 72 499.23 T |
7030 |
|
|
( compact \050compact\051 #IMPLIED) 72 487.23 T |
7031 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 475.23 T |
7032 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 463.23 T |
7033 |
|
|
(<!ELEMENT UL - - \050LI | UL | OL\051+ -- unordered list -->) 72 451.23 T |
7034 |
|
|
(<!ATTLIST UL) 72 439.23 T |
7035 |
|
|
( id ID #IMPLIED -- link destination --) 72 427.23 T |
7036 |
|
|
( compact \050compact\051 #IMPLIED -- reduced interitem spacing --) 72 415.23 T |
7037 |
|
|
( plain \050plain\051 #IMPLIED -- suppress bullets --) 72 403.23 T |
7038 |
|
|
( wrap \050vert|horiz\051 vert -- multicolumn list wrap style --) 72 391.23 T |
7039 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 379.23 T |
7040 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 367.23 T |
7041 |
|
|
(<!-- List items for UL and OL lists -->) 72 343.23 T |
7042 |
|
|
(<!ELEMENT LI - O \050DL|P|%text;\051+>) 72 331.23 T |
7043 |
|
|
(<!ATTLIST LI) 72 319.23 T |
7044 |
|
|
( id ID #IMPLIED) 72 307.23 T |
7045 |
|
|
( src %URL; #IMPLIED -- icon for use in place of bullet --) 72 295.23 T |
7046 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 283.23 T |
7047 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 271.23 T |
7048 |
|
|
(<!ELEMENT MENU - - \050LI\051* -- plain single column list -->) 72 247.23 T |
7049 |
|
|
(<!ATTLIST MENU) 72 235.23 T |
7050 |
|
|
( id ID #IMPLIED) 72 223.23 T |
7051 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 211.23 T |
7052 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 199.23 T |
7053 |
|
|
(<!ELEMENT DIR - - \050LI\051* -- plain multi column list -->) 72 187.23 T |
7054 |
|
|
(<!ATTLIST DIR) 72 175.23 T |
7055 |
|
|
( id ID #IMPLIED) 72 163.23 T |
7056 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 151.23 T |
7057 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 139.23 T |
7058 |
|
|
(<!-- Def) 72 115.23 T |
7059 |
|
|
(inition Lists \050terms + def) 119.97 115.23 T |
7060 |
|
|
(initions\051 -->) 275.89 115.23 T |
7061 |
|
|
FMENDPAGE |
7062 |
|
|
%%EndPage: "41" 46 |
7063 |
|
|
%%Page: "42" 46 |
7064 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7065 |
|
|
0 10 Q |
7066 |
|
|
0 X |
7067 |
|
|
0 K |
7068 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7069 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7070 |
|
|
(42) 292.65 70.23 T |
7071 |
|
|
2 F |
7072 |
|
|
(<!ELEMENT DL - - \050DT+,DD\051+>) 72 763.23 T |
7073 |
|
|
(<!ATTLIST DL) 72 751.23 T |
7074 |
|
|
( id ID #IMPLIED) 72 739.23 T |
7075 |
|
|
( compact \050compact\051 #IMPLIED) 72 727.23 T |
7076 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 715.23 T |
7077 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 703.23 T |
7078 |
|
|
(<!ELEMENT DT - O \050%text;\051+ -- term text -- >) 72 679.23 T |
7079 |
|
|
(<!ELEMENT DD - O \050P|UL|OL|DL|%text;\051+ -- def) 72 667.23 T |
7080 |
|
|
(inition text -- >) 335.86 667.23 T |
7081 |
|
|
(<!ATTLIST \050DT|DD\051) 72 655.23 T |
7082 |
|
|
( id ID #IMPLIED) 72 643.23 T |
7083 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 631.23 T |
7084 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 619.23 T |
7085 |
|
|
(<!ELEMENT CAPTION - - \050%text;\051+ -- table or f) 72 595.23 T |
7086 |
|
|
(igure caption -->) 341.85 595.23 T |
7087 |
|
|
(<!ATTLIST CAPTION) 72 583.23 T |
7088 |
|
|
( id ID #IMPLIED) 72 571.23 T |
7089 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 559.23 T |
7090 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 547.23 T |
7091 |
|
|
-0.41 (<!ELEMENT TABLE - - \050CAPTION?, \050TH|TD|TR|TB\051*\051 -- mixed headers and data -->) 72 523.23 P |
7092 |
|
|
(<!ATTLIST TABLE) 72 511.23 T |
7093 |
|
|
( id ID #IMPLIED) 72 499.23 T |
7094 |
|
|
( border \050border\051 #IMPLIED -- draw borders --) 72 487.23 T |
7095 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 475.23 T |
7096 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 463.23 T |
7097 |
|
|
(<!ELEMENT TH - O \050%table;\051* -- a header cell -->) 72 439.23 T |
7098 |
|
|
(<!ATTLIST TH) 72 427.23 T |
7099 |
|
|
( colspan NUMBER 1 -- columns spanned --) 72 415.23 T |
7100 |
|
|
( rowspan NUMBER 1 --. rows spanned --) 72 403.23 T |
7101 |
|
|
( align \050left|center|right\051 center -- alignment in cell --) 72 391.23 T |
7102 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 379.23 T |
7103 |
|
|
(<!ELEMENT TD - O \050%table;\051* -- a data cell -->) 72 367.23 T |
7104 |
|
|
(<!ATTLIST TD) 72 355.23 T |
7105 |
|
|
( colspan NUMBER 1 -- columns spanned --) 72 343.23 T |
7106 |
|
|
( rowspan NUMBER 1 --. rows spanned --) 72 331.23 T |
7107 |
|
|
( align \050left|center|right\051 center -- alignment in cell --) 72 319.23 T |
7108 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 307.23 T |
7109 |
|
|
(<!ELEMENT TR - O \050EMPTY\051 -- row separator -->) 72 295.23 T |
7110 |
|
|
(<!ATTLIST TR id ID #IMPLIED>) 72 283.23 T |
7111 |
|
|
(<!ELEMENT FORM - - \050MH, \050%main;\051*\051 -\050FORM\051 -- forms can\325t be nested -->) 72 259.23 T |
7112 |
|
|
(<!ATTLIST FORM) 72 247.23 T |
7113 |
|
|
( id ID #IMPLIED) 72 235.23 T |
7114 |
|
|
( action %URL; #IMPLIED -- defaults for URL for current doc --) 72 223.23 T |
7115 |
|
|
( method CDATA #IMPLIED -- PUT, POST, DELETE etc. --) 72 211.23 T |
7116 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 199.23 T |
7117 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 187.23 T |
7118 |
|
|
(<!ELEMENT MH - - CDATA -- one or more RFC 822 header f) 72 163.23 T |
7119 |
|
|
(ields -->) 395.82 163.23 T |
7120 |
|
|
-0.37 (<!ATTLIST MH hidden \050hidden\051 #IMPLIED -- hide the mail headers from view -->) 72 151.23 P |
7121 |
|
|
(<!ELEMENT INPUT - O EMPTY>) 72 127.23 T |
7122 |
|
|
(<!ATTLIST INPUT) 72 115.23 T |
7123 |
|
|
FMENDPAGE |
7124 |
|
|
%%EndPage: "42" 47 |
7125 |
|
|
%%Page: "43" 47 |
7126 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7127 |
|
|
0 10 Q |
7128 |
|
|
0 X |
7129 |
|
|
0 K |
7130 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7131 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7132 |
|
|
(43) 292.65 70.23 T |
7133 |
|
|
2 F |
7134 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 763.23 T |
7135 |
|
|
( type CDATA #IMPLIED -- a wide variety of f) 72 751.23 T |
7136 |
|
|
(ield types --) 401.82 751.23 T |
7137 |
|
|
( size CDATA #IMPLIED -- visible size of text f) 72 739.23 T |
7138 |
|
|
(ields --) 419.81 739.23 T |
7139 |
|
|
( min NUMBER #IMPLIED -- for range controls --) 72 727.23 T |
7140 |
|
|
( max NUMBER #IMPLIED -- for range controls or text f) 72 715.23 T |
7141 |
|
|
(ields --) 455.79 715.23 T |
7142 |
|
|
( value CDATA #IMPLIED -- attribute value \050altered by user\051 --) 72 703.23 T |
7143 |
|
|
( checked \050checked\051 #IMPLIED -- for check boxes and radio buttons --) 72 691.23 T |
7144 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 679.23 T |
7145 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 667.23 T |
7146 |
|
|
( src %URL; #IMPLIED -- for certain f) 72 655.23 T |
7147 |
|
|
(ields e.g. IMAGEs --) 365.84 655.23 T |
7148 |
|
|
( align \050top|middle|bottom\051 top -- for IMAGE f) 72 643.23 T |
7149 |
|
|
(ields only --) 383.83 643.23 T |
7150 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 631.23 T |
7151 |
|
|
(<!ELEMENT TEXTAREA - - CDATA -- multi-line text f) 72 607.23 T |
7152 |
|
|
(ields -->) 365.84 607.23 T |
7153 |
|
|
(<!ATTLIST TEXTAREA) 72 595.23 T |
7154 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 583.23 T |
7155 |
|
|
( cols NUMBER #IMPLIED -- visible width in characters --) 72 571.23 T |
7156 |
|
|
( rows NUMBER #IMPLIED -- visible height in characters --) 72 559.23 T |
7157 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 547.23 T |
7158 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 535.23 T |
7159 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 523.23 T |
7160 |
|
|
(<!ELEMENT SELECT - - \050OPTION+\051 -- combo style selection lists -->) 72 499.23 T |
7161 |
|
|
(<!ATTLIST SELECT) 72 487.23 T |
7162 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 475.23 T |
7163 |
|
|
( several \050several\051 #IMPLIED -- permits multiple selections --) 72 463.23 T |
7164 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 451.23 T |
7165 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 439.23 T |
7166 |
|
|
(<!ELEMENT OPTION - - CDATA>) 72 415.23 T |
7167 |
|
|
(<!ATTLIST OPTION) 72 403.23 T |
7168 |
|
|
( selected \050selected\051 #IMPLIED -- if initially selected --) 72 391.23 T |
7169 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 379.23 T |
7170 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 367.23 T |
7171 |
|
|
(<!ELEMENT FIG - - \050CAPTION?,\050%text;\051*\051>) 72 343.23 T |
7172 |
|
|
(<!ATTLIST FIG) 72 331.23 T |
7173 |
|
|
( id ID #IMPLIED) 72 319.23 T |
7174 |
|
|
( align \050left|center|right|f) 72 307.23 T |
7175 |
|
|
(loat\051 f) 287.88 307.23 T |
7176 |
|
|
(loat -- position --) 329.86 307.23 T |
7177 |
|
|
( ismap \050ismap\051 #IMPLIED -- server can handle mouse clicks/drags --) 72 295.23 T |
7178 |
|
|
( src %URL; #IMPLIED -- link to image data --) 72 283.23 T |
7179 |
|
|
( index CDATA #IMPLIED -- entries for index compilation --) 72 271.23 T |
7180 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 259.23 T |
7181 |
|
|
(<!ELEMENT IMG - O EMPTY>) 72 247.23 T |
7182 |
|
|
(<!ATTLIST IMG) 72 235.23 T |
7183 |
|
|
( src %URL; #REQUIRED -- where to get image data --) 72 223.23 T |
7184 |
|
|
( align \050top|middle|bottom\051 top -- top, middle or bottom --) 72 211.23 T |
7185 |
|
|
( seethru CDATA #IMPLIED -- for chromakey --) 72 199.23 T |
7186 |
|
|
( alt CDATA #IMPLIED -- description for text-only displays --) 72 187.23 T |
7187 |
|
|
( ismap \050ismap\051 #IMPLIED -- send mouse clicks/drags to server -->) 72 175.23 T |
7188 |
|
|
(<!ELEMENT IMAGE - - \050A|%text;\051*>) 72 163.23 T |
7189 |
|
|
(<!ATTLIST IMAGE) 72 151.23 T |
7190 |
|
|
( src %URL; #REQUIRED -- where to get image data --) 72 139.23 T |
7191 |
|
|
( align \050top|middle|bottom\051 top -- top, middle or bottom --) 72 127.23 T |
7192 |
|
|
( seethru CDATA #IMPLIED -- for transparency --) 72 115.23 T |
7193 |
|
|
FMENDPAGE |
7194 |
|
|
%%EndPage: "43" 48 |
7195 |
|
|
%%Page: "44" 48 |
7196 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7197 |
|
|
0 10 Q |
7198 |
|
|
0 X |
7199 |
|
|
0 K |
7200 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7201 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7202 |
|
|
(44) 292.65 70.23 T |
7203 |
|
|
2 F |
7204 |
|
|
( ismap \050ismap\051 #IMPLIED -- send mouse clicks/drags to server --) 72 763.23 T |
7205 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 751.23 T |
7206 |
|
|
(<!-- proposal for representing formulae -->) 72 727.23 T |
7207 |
|
|
(<!ELEMENT MATH - - \050%math;\051*>) 72 715.23 T |
7208 |
|
|
(<!ATTLIST MATH id ID #IMPLIED>) 72 703.23 T |
7209 |
|
|
(<!ELEMENT BOX - - \050\050%math;\051*, OVER?, \050%math;\051*\051>) 72 691.23 T |
7210 |
|
|
(<!ELEMENT OVER - O EMPTY>) 72 679.23 T |
7211 |
|
|
(<!ELEMENT CHANGED - O EMPTY -- for change bars -->) 72 655.23 T |
7212 |
|
|
(<!ATTLIST CHANGED -- one of id and idref is always required --) 72 643.23 T |
7213 |
|
|
( id ID #IMPLIED -- signals start of changes --) 72 631.23 T |
7214 |
|
|
( idref IDREF #IMPLIED -- signals end of changes -->) 72 619.23 T |
7215 |
|
|
(<!-- Hypertext Links from points within document nodes -->) 72 595.23 T |
7216 |
|
|
(<!ELEMENT A - - \050#PCDATA | IMG | EM | EMBED\051*>) 72 583.23 T |
7217 |
|
|
(<!ATTLIST A) 72 571.23 T |
7218 |
|
|
( id ID #IMPLIED -- as target of link --) 72 559.23 T |
7219 |
|
|
( name CDATA #IMPLIED -- for backwards compatibility with HTML--) 72 547.23 T |
7220 |
|
|
( shape CDATA #IMPLIED -- list of points for shaped buttons --) 72 535.23 T |
7221 |
|
|
( href %URL; #IMPLIED -- destination node --) 72 523.23 T |
7222 |
|
|
( rel CDATA #IMPLIED -- forward relationship type --) 72 511.23 T |
7223 |
|
|
( rev CDATA #IMPLIED -- reverse relationship type --) 72 499.23 T |
7224 |
|
|
( methods CDATA #IMPLIED -- supported public methods --) 72 487.23 T |
7225 |
|
|
( effect CDATA #IMPLIED -- replace/new/overlay/embed --) 72 475.23 T |
7226 |
|
|
( print CDATA #IMPLIED -- reference/footnote/section --) 72 463.23 T |
7227 |
|
|
( title CDATA #IMPLIED -- when otherwise unavailable --) 72 451.23 T |
7228 |
|
|
( type CDATA #IMPLIED -- for presentation cues --) 72 439.23 T |
7229 |
|
|
( size NAMES #IMPLIED -- for progress cues --) 72 427.23 T |
7230 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 415.23 T |
7231 |
|
|
(<!-- Other kinds of relationships between documents -->) 72 403.23 T |
7232 |
|
|
(<!ELEMENT LINK - O EMPTY>) 72 391.23 T |
7233 |
|
|
(<!ATTLIST LINK) 72 367.23 T |
7234 |
|
|
( idref IDREF #IMPLIED -- starting point --) 72 355.23 T |
7235 |
|
|
( href %URL; #IMPLIED -- destination node --) 72 343.23 T |
7236 |
|
|
( rel CDATA #IMPLIED -- forward relationship type --) 72 331.23 T |
7237 |
|
|
( rev CDATA #IMPLIED -- reverse relationship type --) 72 319.23 T |
7238 |
|
|
( methods CDATA #IMPLIED -- supported public methods -->) 72 307.23 T |
7239 |
|
|
(<!-- Original document URL for resolving relative URLs -->) 72 283.23 T |
7240 |
|
|
(<!ELEMENT BASE - O EMPTY>) 72 271.23 T |
7241 |
|
|
(<!ATTLIST BASE HREF %URL; #IMPLIED>) 72 259.23 T |
7242 |
|
|
(<!-- Signif) 72 247.23 T |
7243 |
|
|
(ies the document\325s URL accepts queries -->) 137.96 247.23 T |
7244 |
|
|
(<!ELEMENT ISINDEX - O \050EMPTY\051>) 72 235.23 T |
7245 |
|
|
(<!ATTLIST ISINDEX href %URL; #IMPLIED -- defaults to document\325s URL -->) 72 223.23 T |
7246 |
|
|
-0.8 (<!-- For use with autonumbering editors - don\325t reuse ids, allocate next one) 72 211.23 P |
7247 |
|
|
(starting from this one -->) 72 199.23 T |
7248 |
|
|
(<!ELEMENT NEXTID - O \050EMPTY\051>) 72 187.23 T |
7249 |
|
|
(<!ATTLIST NEXTID N NAME #REQUIRED>) 72 175.23 T |
7250 |
|
|
(<!-- Mnemonic character entities for 8 bit ANSI Latin-1) 72 151.23 T |
7251 |
|
|
( ignore when using other character sets -->) 72 139.23 T |
7252 |
|
|
(<!ENTITY iexcl \322¡\323 -- inverted exclamation mark -->) 72 127.23 T |
7253 |
|
|
(<!ENTITY cent \322¡\323 -- cent sign -->) 72 115.23 T |
7254 |
|
|
FMENDPAGE |
7255 |
|
|
%%EndPage: "44" 49 |
7256 |
|
|
%%Page: "45" 49 |
7257 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7258 |
|
|
0 10 Q |
7259 |
|
|
0 X |
7260 |
|
|
0 K |
7261 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7262 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7263 |
|
|
(45) 292.65 70.23 T |
7264 |
|
|
2 F |
7265 |
|
|
(<!ENTITY pound \322£\323 -- pound sign -->) 72 763.23 T |
7266 |
|
|
(<!ENTITY yen \322¥\323 -- yen sign -->) 72 751.23 T |
7267 |
|
|
(<!ENTITY brvbar \322¦\323 -- broken vertical bar -->) 72 739.23 T |
7268 |
|
|
(<!ENTITY sect \322§\323 -- section sign -->) 72 727.23 T |
7269 |
|
|
(<!ENTITY copy \322©\323 -- copyright sign -->) 72 715.23 T |
7270 |
|
|
(<!ENTITY laquo \322«\323 -- angle quotation mark, left -->) 72 703.23 T |
7271 |
|
|
(<!ENTITY raquo \322»\323 -- angle quotation mark, right -->) 72 691.23 T |
7272 |
|
|
(<!ENTITY not \322¬\323 -- negation sign -->) 72 679.23 T |
7273 |
|
|
(<!ENTITY reg \322®\323 -- circled R registered sign -->) 72 667.23 T |
7274 |
|
|
(<!ENTITY deg \322°\323 -- degree sign -->) 72 655.23 T |
7275 |
|
|
(<!ENTITY plusmn \322±\323 -- plus or minus sign -->) 72 643.23 T |
7276 |
|
|
(<!ENTITY sup2 \322²\323 -- superscript 2 -->) 72 631.23 T |
7277 |
|
|
(<!ENTITY sup3 \322³\323 -- superscript 3 -->) 72 619.23 T |
7278 |
|
|
(<!ENTITY micro \322µ\323 -- micro sign -->) 72 607.23 T |
7279 |
|
|
(<!ENTITY para \322¶\323 -- paragraph sign -->) 72 595.23 T |
7280 |
|
|
(<!ENTITY sup1 \322¹\323 -- superscript 1 -->) 72 583.23 T |
7281 |
|
|
(<!ENTITY middot \322·\323 -- center dot -->) 72 571.23 T |
7282 |
|
|
(<!ENTITY frac14 \322¼\323 -- fraction 1/4 -->) 72 559.23 T |
7283 |
|
|
(<!ENTITY frac12 \322½\323 -- fraction 1/2 -->) 72 547.23 T |
7284 |
|
|
(<!ENTITY iquest \322¿\323 -- inverted question mark -->) 72 535.23 T |
7285 |
|
|
(<!ENTITY frac34 \322¾\323 -- fraction 3/4 -->) 72 523.23 T |
7286 |
|
|
(<!ENTITY AElig \322Æ\323 -- capital AE diphthong \050ligature\051 -->) 72 511.23 T |
7287 |
|
|
(<!ENTITY Aacute \322Á\323 -- capital A, acute accent -->) 72 499.23 T |
7288 |
|
|
(<!ENTITY Acirc \322Â\323 -- capital A, circumf) 72 487.23 T |
7289 |
|
|
(lex accent -->) 341.85 487.23 T |
7290 |
|
|
(<!ENTITY Agrave \322À\323 -- capital A, grave accent -->) 72 475.23 T |
7291 |
|
|
(<!ENTITY Aring \322Å\323 -- capital A, ring -->) 72 463.23 T |
7292 |
|
|
(<!ENTITY Atilde \322Ã\323 -- capital A, tilde -->) 72 451.23 T |
7293 |
|
|
(<!ENTITY Auml \322Ä\323 -- capital A, dieresis or umlaut mark -->) 72 439.23 T |
7294 |
|
|
(<!ENTITY Ccedil \322Ç\323 -- capital C, cedilla -->) 72 427.23 T |
7295 |
|
|
(<!ENTITY ETH \322Ð\323 -- capital Eth, Icelandic -->) 72 415.23 T |
7296 |
|
|
(<!ENTITY Eacute \322É\323 -- capital E, acute accent -->) 72 403.23 T |
7297 |
|
|
(<!ENTITY Ecirc \322Ê\323 -- capital E, circumf) 72 391.23 T |
7298 |
|
|
(lex accent -->) 341.85 391.23 T |
7299 |
|
|
(<!ENTITY Egrave \322È\323 -- capital E, grave accent -->) 72 379.23 T |
7300 |
|
|
(<!ENTITY Euml \322Ë\323 -- capital E, dieresis or umlaut mark -->) 72 367.23 T |
7301 |
|
|
(<!ENTITY Iacute \322Í\323 -- capital I, acute accent -->) 72 355.23 T |
7302 |
|
|
(<!ENTITY Icirc \322Î\323 -- capital I, circumf) 72 343.23 T |
7303 |
|
|
(lex accent -->) 341.85 343.23 T |
7304 |
|
|
(<!ENTITY Igrave \322Ì\323 -- capital I, grave accent -->) 72 331.23 T |
7305 |
|
|
(<!ENTITY Iuml \322Ï\323 -- capital I, dieresis or umlaut mark -->) 72 319.23 T |
7306 |
|
|
(<!ENTITY Ntilde \322Ñ\323 -- capital N, tilde -->) 72 307.23 T |
7307 |
|
|
(<!ENTITY Oacute \322Ó\323 -- capital O, acute accent -->) 72 295.23 T |
7308 |
|
|
(<!ENTITY Ocirc \322Ô\323 -- capital O, circumf) 72 283.23 T |
7309 |
|
|
(lex accent -->) 341.85 283.23 T |
7310 |
|
|
(<!ENTITY Ograve \322Ò\323 -- capital O, grave accent -->) 72 271.23 T |
7311 |
|
|
(<!ENTITY Oslash \322Ø\323 -- capital O, slash -->) 72 259.23 T |
7312 |
|
|
(<!ENTITY Otilde \322Õ\323 -- capital O, tilde -->) 72 247.23 T |
7313 |
|
|
(<!ENTITY Ouml \322Ö\323 -- capital O, dieresis or umlaut mark -->) 72 235.23 T |
7314 |
|
|
(<!ENTITY THORN \322Þ\323 -- capital THORN, Icelandic -->) 72 223.23 T |
7315 |
|
|
(<!ENTITY Uacute \322Ú\323 -- capital U, acute accent -->) 72 211.23 T |
7316 |
|
|
(<!ENTITY Ucirc \322Û\323 -- capital U, circumf) 72 199.23 T |
7317 |
|
|
(lex accent -->) 341.85 199.23 T |
7318 |
|
|
(<!ENTITY Ugrave \322Ù\323 -- capital U, grave accent -->) 72 187.23 T |
7319 |
|
|
(<!ENTITY Uuml \322Ü\323 -- capital U, dieresis or umlaut mark -->) 72 175.23 T |
7320 |
|
|
(<!ENTITY Yacute \322Ý\323 -- capital Y, acute accent -->) 72 163.23 T |
7321 |
|
|
(<!ENTITY aacute \322á\323 -- small a, acute accent -->) 72 151.23 T |
7322 |
|
|
(<!ENTITY acirc \322â\323 -- small a, circumf) 72 139.23 T |
7323 |
|
|
(lex accent -->) 329.86 139.23 T |
7324 |
|
|
(<!ENTITY aelig \322æ\323 -- small ae diphthong \050ligature\051 -->) 72 127.23 T |
7325 |
|
|
(<!ENTITY agrave \322à\323 -- small a, grave accent -->) 72 115.23 T |
7326 |
|
|
FMENDPAGE |
7327 |
|
|
%%EndPage: "45" 50 |
7328 |
|
|
%%Page: "46" 50 |
7329 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7330 |
|
|
0 10 Q |
7331 |
|
|
0 X |
7332 |
|
|
0 K |
7333 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7334 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7335 |
|
|
(46) 292.65 70.23 T |
7336 |
|
|
2 F |
7337 |
|
|
(<!ENTITY amp \322&\323 -- ampersand -->) 72 763.23 T |
7338 |
|
|
(<!ENTITY aring \322å\323 -- small a, ring -->) 72 751.23 T |
7339 |
|
|
(<!ENTITY atilde \322ã\323 -- small a, tilde -->) 72 739.23 T |
7340 |
|
|
(<!ENTITY auml \322ä\323 -- small a, dieresis or umlaut mark -->) 72 727.23 T |
7341 |
|
|
(<!ENTITY ccedil \322ç\323 -- small c, cedilla -->) 72 715.23 T |
7342 |
|
|
(<!ENTITY eacute \322é\323 -- small e, acute accent -->) 72 703.23 T |
7343 |
|
|
(<!ENTITY ecirc \322ê\323 -- small e, circumf) 72 691.23 T |
7344 |
|
|
(lex accent -->) 329.86 691.23 T |
7345 |
|
|
(<!ENTITY egrave \322è\323 -- small e, grave accent -->) 72 679.23 T |
7346 |
|
|
(<!ENTITY eth \322ð\323 -- small eth, Icelandic -->) 72 667.23 T |
7347 |
|
|
(<!ENTITY euml \322ë\323 -- small e, dieresis or umlaut mark -->) 72 655.23 T |
7348 |
|
|
(<!ENTITY gt \322>\323 -- greater than -->) 72 643.23 T |
7349 |
|
|
(<!ENTITY iacute \322í\323 -- small i, acute accent -->) 72 631.23 T |
7350 |
|
|
(<!ENTITY icirc \322î\323 -- small i, circumf) 72 619.23 T |
7351 |
|
|
(lex accent -->) 329.86 619.23 T |
7352 |
|
|
(<!ENTITY igrave \322ì\323 -- small i, grave accent -->) 72 607.23 T |
7353 |
|
|
(<!ENTITY iuml \322ï\323 -- small i, dieresis or umlaut mark -->) 72 595.23 T |
7354 |
|
|
(<!ENTITY lt \322<\323 -- less than -->) 72 583.23 T |
7355 |
|
|
(<!ENTITY ntilde \322ñ\323 -- small n, tilde -->) 72 571.23 T |
7356 |
|
|
(<!ENTITY oacute \322ó\323 -- small o, acute accent -->) 72 559.23 T |
7357 |
|
|
(<!ENTITY ocirc \322ô\323 -- small o, circumf) 72 547.23 T |
7358 |
|
|
(lex accent -->) 329.86 547.23 T |
7359 |
|
|
(<!ENTITY ograve \322ò\323 -- small o, grave accent -->) 72 535.23 T |
7360 |
|
|
(<!ENTITY oslash \322ø\323 -- small o, slash -->) 72 523.23 T |
7361 |
|
|
(<!ENTITY otilde \322õ\323 -- small o, tilde -->) 72 511.23 T |
7362 |
|
|
(<!ENTITY ouml \322ö\323 -- small o, dieresis or umlaut mark -->) 72 499.23 T |
7363 |
|
|
(<!ENTITY szlig \322ß\323 -- small sharp s, German \050sz ligature\051 -->) 72 487.23 T |
7364 |
|
|
(<!ENTITY thorn \322þ\323 -- small thorn, Icelandic -->) 72 475.23 T |
7365 |
|
|
(<!ENTITY uacute \322ú\323 -- small u, acute accent -->) 72 463.23 T |
7366 |
|
|
(<!ENTITY ucirc \322û\323 -- small u, circumf) 72 451.23 T |
7367 |
|
|
(lex accent -->) 329.86 451.23 T |
7368 |
|
|
(<!ENTITY ugrave \322ù\323 -- small u, grave accent -->) 72 439.23 T |
7369 |
|
|
(<!ENTITY uuml \322ü\323 -- small u, dieresis or umlaut mark -->) 72 427.23 T |
7370 |
|
|
(<!ENTITY yacute \322ý\323 -- small y, acute accent -->) 72 415.23 T |
7371 |
|
|
(<!ENTITY yuml \322ÿ\323 -- small y, dieresis or umlaut mark -->) 72 403.23 T |
7372 |
|
|
(<!-- The END -->) 72 379.23 T |
7373 |
|
|
(]>) 72 367.23 T |
7374 |
|
|
FMENDPAGE |
7375 |
|
|
%%EndPage: "46" 51 |
7376 |
|
|
%%Page: "47" 51 |
7377 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7378 |
|
|
0 10 Q |
7379 |
|
|
0 X |
7380 |
|
|
0 K |
7381 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7382 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7383 |
|
|
(47) 292.65 70.23 T |
7384 |
|
|
1 18 Q |
7385 |
|
|
(Appendix II) 257.52 739.9 T |
7386 |
|
|
3 12 Q |
7387 |
|
|
(The proposed character entities for HTML+ and their corresponding char-) 108 707.9 T |
7388 |
|
|
(acter codes for Unicode and the Adobe Latin-1 & Symbol character sets.) 108 693.9 T |
7389 |
|
|
5 F |
7390 |
|
|
(Symbol) 43.67 635.9 T |
7391 |
|
|
(ISO) 106.67 642.9 T |
7392 |
|
|
(8879) 105.01 628.9 T |
7393 |
|
|
(Adobe name) 156.85 635.9 T |
7394 |
|
|
(Adobe) 244.34 642.9 T |
7395 |
|
|
(Hex) 250.67 628.9 T |
7396 |
|
|
(Unicode) 294.01 635.9 T |
7397 |
|
|
(Unicode name) 413.52 635.9 T |
7398 |
|
|
5 18 Q |
7399 |
|
|
(ISO Latin 1 Entities) 219.78 600.9 T |
7400 |
|
|
0 12 Q |
7401 |
|
|
(") 42 576.9 T |
7402 |
|
|
(quot) 96 576.9 T |
7403 |
|
|
(quotedbl) 150 576.9 T |
7404 |
|
|
(22) 240 576.9 T |
7405 |
|
|
(0022) 294 576.9 T |
7406 |
|
|
0 10 Q |
7407 |
|
|
(QUOT) 348 578.23 T |
7408 |
|
|
(A) 374.95 578.23 T |
7409 |
|
|
(TION MARK) 381.06 578.23 T |
7410 |
|
|
0 12 Q |
7411 |
|
|
(&) 42 554.9 T |
7412 |
|
|
(amp) 96 554.9 T |
7413 |
|
|
(ampersand) 150 554.9 T |
7414 |
|
|
(26) 240 554.9 T |
7415 |
|
|
(0026) 294 554.9 T |
7416 |
|
|
0 10 Q |
7417 |
|
|
(AMPERSAND) 348 556.23 T |
7418 |
|
|
0 12 Q |
7419 |
|
|
(<) 42 532.9 T |
7420 |
|
|
(lt) 96 532.9 T |
7421 |
|
|
(less) 150 532.9 T |
7422 |
|
|
(3C) 240 532.9 T |
7423 |
|
|
(003C) 294 532.9 T |
7424 |
|
|
0 10 Q |
7425 |
|
|
(LESS-THAN SIGN) 348 534.23 T |
7426 |
|
|
0 12 Q |
7427 |
|
|
(>) 42 510.9 T |
7428 |
|
|
(gt) 96 510.9 T |
7429 |
|
|
(greater) 150 510.9 T |
7430 |
|
|
(3E) 240 510.9 T |
7431 |
|
|
(003E) 294 510.9 T |
7432 |
|
|
0 10 Q |
7433 |
|
|
(GREA) 348 512.23 T |
7434 |
|
|
(TER-THAN SIGN) 374.1 512.23 T |
7435 |
|
|
0 12 Q |
7436 |
|
|
(nbsp) 96 488.9 T |
7437 |
|
|
(A0) 240 488.9 T |
7438 |
|
|
(00A0) 294 488.9 T |
7439 |
|
|
0 10 Q |
7440 |
|
|
(NON-BREAKING SP) 348 490.23 T |
7441 |
|
|
(ACE) 437.3 490.23 T |
7442 |
|
|
0 14 Q |
7443 |
|
|
(\301) 42 465.57 T |
7444 |
|
|
0 12 Q |
7445 |
|
|
(iexcl) 96 466.9 T |
7446 |
|
|
(exclamdown) 150 466.9 T |
7447 |
|
|
(A1) 240 466.9 T |
7448 |
|
|
(00A1) 294 466.9 T |
7449 |
|
|
0 10 Q |
7450 |
|
|
(INVER) 348 468.23 T |
7451 |
|
|
(TED EXCLAMA) 377.93 468.23 T |
7452 |
|
|
(TION MARK) 448.17 468.23 T |
7453 |
|
|
0 14 Q |
7454 |
|
|
(\242) 42 441.57 T |
7455 |
|
|
0 12 Q |
7456 |
|
|
(cent) 96 442.9 T |
7457 |
|
|
(cent) 150 442.9 T |
7458 |
|
|
(A2) 240 442.9 T |
7459 |
|
|
(00A2) 294 442.9 T |
7460 |
|
|
0 10 Q |
7461 |
|
|
(CENT SIGN) 348 444.23 T |
7462 |
|
|
0 14 Q |
7463 |
|
|
(\243) 42 417.57 T |
7464 |
|
|
0 12 Q |
7465 |
|
|
(pound) 96 418.9 T |
7466 |
|
|
(sterling) 150 418.9 T |
7467 |
|
|
(A3) 240 418.9 T |
7468 |
|
|
(00A3) 294 418.9 T |
7469 |
|
|
0 10 Q |
7470 |
|
|
(POUND SIGN) 348 420.23 T |
7471 |
|
|
0 14 Q |
7472 |
|
|
(\333) 42 393.57 T |
7473 |
|
|
0 12 Q |
7474 |
|
|
(curren) 96 394.9 T |
7475 |
|
|
(currency) 150 394.9 T |
7476 |
|
|
(A4) 240 394.9 T |
7477 |
|
|
(00A4) 294 394.9 T |
7478 |
|
|
0 10 Q |
7479 |
|
|
(CURRENCY SIGN) 348 396.23 T |
7480 |
|
|
0 14 Q |
7481 |
|
|
(\264) 42 369.57 T |
7482 |
|
|
0 12 Q |
7483 |
|
|
(yen) 96 370.9 T |
7484 |
|
|
(yen) 150 370.9 T |
7485 |
|
|
(A5) 240 370.9 T |
7486 |
|
|
(00A5) 294 370.9 T |
7487 |
|
|
0 10 Q |
7488 |
|
|
(YEN SIGN) 348 372.23 T |
7489 |
|
|
0 12 Q |
7490 |
|
|
(brvbar) 96 346.9 T |
7491 |
|
|
(brokenbar) 150 346.9 T |
7492 |
|
|
(A6) 240 346.9 T |
7493 |
|
|
(00A6) 294 346.9 T |
7494 |
|
|
0 10 Q |
7495 |
|
|
(BROKEN VER) 348 348.23 T |
7496 |
|
|
(TICAL BAR) 410.98 348.23 T |
7497 |
|
|
0 14 Q |
7498 |
|
|
(\244) 42 323.57 T |
7499 |
|
|
0 12 Q |
7500 |
|
|
(sect) 96 324.9 T |
7501 |
|
|
(section) 150 324.9 T |
7502 |
|
|
(A7) 240 324.9 T |
7503 |
|
|
(00A7) 294 324.9 T |
7504 |
|
|
0 10 Q |
7505 |
|
|
(SECTION SIGN) 348 326.23 T |
7506 |
|
|
0 12 Q |
7507 |
|
|
(\254) 42 300.9 T |
7508 |
|
|
(die) 96 300.9 T |
7509 |
|
|
(dieresis) 150 300.9 T |
7510 |
|
|
(A8) 240 300.9 T |
7511 |
|
|
(00A8) 294 300.9 T |
7512 |
|
|
0 10 Q |
7513 |
|
|
(SP) 348 302.23 T |
7514 |
|
|
(ACING DIAERESIS) 358.19 302.23 T |
7515 |
|
|
0 14 Q |
7516 |
|
|
(\251) 42 277.57 T |
7517 |
|
|
0 12 Q |
7518 |
|
|
(copy) 96 278.9 T |
7519 |
|
|
(copyright) 150 278.9 T |
7520 |
|
|
(A9) 240 278.9 T |
7521 |
|
|
(00A9) 294 278.9 T |
7522 |
|
|
0 10 Q |
7523 |
|
|
(COPYRIGHT SIGN) 348 280.23 T |
7524 |
|
|
0 14 Q |
7525 |
|
|
(\273) 42 253.57 T |
7526 |
|
|
0 12 Q |
7527 |
|
|
(ordf) 96 254.9 T |
7528 |
|
|
(ordfeminine) 150 254.9 T |
7529 |
|
|
(AA) 240 254.9 T |
7530 |
|
|
(00AA) 294 254.9 T |
7531 |
|
|
0 10 Q |
7532 |
|
|
(FEMININE ORDINAL INDICA) 348 256.23 T |
7533 |
|
|
(T) 479.57 256.23 T |
7534 |
|
|
(OR) 485.49 256.23 T |
7535 |
|
|
0 14 Q |
7536 |
|
|
(\307) 42 229.57 T |
7537 |
|
|
0 12 Q |
7538 |
|
|
(laquo) 96 230.9 T |
7539 |
|
|
(guillemotleft) 150 230.9 T |
7540 |
|
|
(AB) 240 230.9 T |
7541 |
|
|
(00AB) 294 230.9 T |
7542 |
|
|
0 10 Q |
7543 |
|
|
(LEFT POINTING GUILLEMET) 348 232.23 T |
7544 |
|
|
0 14 Q |
7545 |
|
|
(\302) 42 205.57 T |
7546 |
|
|
0 12 Q |
7547 |
|
|
(not) 96 206.9 T |
7548 |
|
|
(logicalnot) 150 206.9 T |
7549 |
|
|
(AC) 240 206.9 T |
7550 |
|
|
(00AC) 294 206.9 T |
7551 |
|
|
0 10 Q |
7552 |
|
|
(NOT SIGN) 348 208.23 T |
7553 |
|
|
0 12 Q |
7554 |
|
|
(-) 42 182.9 T |
7555 |
|
|
(shy) 96 182.9 T |
7556 |
|
|
(hyphen) 150 182.9 T |
7557 |
|
|
(AD) 240 182.9 T |
7558 |
|
|
(00AD) 294 182.9 T |
7559 |
|
|
0 10 Q |
7560 |
|
|
(SOFT HYPHEN) 348 184.23 T |
7561 |
|
|
0 14 Q |
7562 |
|
|
(\250) 42 159.57 T |
7563 |
|
|
0 12 Q |
7564 |
|
|
(reg) 96 160.9 T |
7565 |
|
|
(registered) 150 160.9 T |
7566 |
|
|
(AE) 240 160.9 T |
7567 |
|
|
(00AE) 294 160.9 T |
7568 |
|
|
0 10 Q |
7569 |
|
|
(REGISTERED TRADE MARK SIGN) 348 162.23 T |
7570 |
|
|
0 14 Q |
7571 |
|
|
(\370) 42 135.57 T |
7572 |
|
|
0 12 Q |
7573 |
|
|
(macron) 96 136.9 T |
7574 |
|
|
(macron) 150 136.9 T |
7575 |
|
|
(AF) 240 136.9 T |
7576 |
|
|
(00AF) 294 136.9 T |
7577 |
|
|
0 10 Q |
7578 |
|
|
(SP) 348 138.23 T |
7579 |
|
|
(ACING MACRON) 358.19 138.23 T |
7580 |
|
|
36 658.65 36 127.15 2 L |
7581 |
|
|
V |
7582 |
|
|
0.5 H |
7583 |
|
|
0 Z |
7584 |
|
|
N |
7585 |
|
|
90 659.15 90 620.4 2 L |
7586 |
|
|
V |
7587 |
|
|
N |
7588 |
|
|
90 591.15 90 126.65 2 L |
7589 |
|
|
V |
7590 |
|
|
N |
7591 |
|
|
144 659.15 144 620.4 2 L |
7592 |
|
|
V |
7593 |
|
|
N |
7594 |
|
|
144 591.15 144 126.65 2 L |
7595 |
|
|
V |
7596 |
|
|
N |
7597 |
|
|
234 659.15 234 620.4 2 L |
7598 |
|
|
V |
7599 |
|
|
N |
7600 |
|
|
234 591.15 234 126.65 2 L |
7601 |
|
|
V |
7602 |
|
|
N |
7603 |
|
|
288 659.15 288 620.4 2 L |
7604 |
|
|
V |
7605 |
|
|
N |
7606 |
|
|
288 591.15 288 126.65 2 L |
7607 |
|
|
V |
7608 |
|
|
N |
7609 |
|
|
342 659.15 342 620.4 2 L |
7610 |
|
|
V |
7611 |
|
|
N |
7612 |
|
|
342 591.15 342 126.65 2 L |
7613 |
|
|
V |
7614 |
|
|
N |
7615 |
|
|
558 658.65 558 127.15 2 L |
7616 |
|
|
V |
7617 |
|
|
N |
7618 |
|
|
35.75 658.9 558.25 658.9 2 L |
7619 |
|
|
V |
7620 |
|
|
N |
7621 |
|
|
36.25 620.15 557.75 620.15 2 L |
7622 |
|
|
V |
7623 |
|
|
N |
7624 |
|
|
36.25 617.65 557.75 617.65 2 L |
7625 |
|
|
V |
7626 |
|
|
N |
7627 |
|
|
35.75 590.9 558.25 590.9 2 L |
7628 |
|
|
V |
7629 |
|
|
N |
7630 |
|
|
35.75 568.9 558.25 568.9 2 L |
7631 |
|
|
V |
7632 |
|
|
N |
7633 |
|
|
35.75 546.9 558.25 546.9 2 L |
7634 |
|
|
V |
7635 |
|
|
N |
7636 |
|
|
35.75 524.9 558.25 524.9 2 L |
7637 |
|
|
V |
7638 |
|
|
N |
7639 |
|
|
35.75 502.9 558.25 502.9 2 L |
7640 |
|
|
V |
7641 |
|
|
N |
7642 |
|
|
35.75 480.9 558.25 480.9 2 L |
7643 |
|
|
V |
7644 |
|
|
N |
7645 |
|
|
35.75 456.9 558.25 456.9 2 L |
7646 |
|
|
V |
7647 |
|
|
N |
7648 |
|
|
35.75 432.9 558.25 432.9 2 L |
7649 |
|
|
V |
7650 |
|
|
N |
7651 |
|
|
35.75 408.9 558.25 408.9 2 L |
7652 |
|
|
V |
7653 |
|
|
N |
7654 |
|
|
35.75 384.9 558.25 384.9 2 L |
7655 |
|
|
V |
7656 |
|
|
N |
7657 |
|
|
35.75 360.9 558.25 360.9 2 L |
7658 |
|
|
V |
7659 |
|
|
N |
7660 |
|
|
35.75 338.9 558.25 338.9 2 L |
7661 |
|
|
V |
7662 |
|
|
N |
7663 |
|
|
35.75 314.9 558.25 314.9 2 L |
7664 |
|
|
V |
7665 |
|
|
N |
7666 |
|
|
35.75 292.9 558.25 292.9 2 L |
7667 |
|
|
V |
7668 |
|
|
N |
7669 |
|
|
35.75 268.9 558.25 268.9 2 L |
7670 |
|
|
V |
7671 |
|
|
N |
7672 |
|
|
35.75 244.9 558.25 244.9 2 L |
7673 |
|
|
V |
7674 |
|
|
N |
7675 |
|
|
35.75 220.9 558.25 220.9 2 L |
7676 |
|
|
V |
7677 |
|
|
N |
7678 |
|
|
35.75 196.9 558.25 196.9 2 L |
7679 |
|
|
V |
7680 |
|
|
N |
7681 |
|
|
35.75 174.9 558.25 174.9 2 L |
7682 |
|
|
V |
7683 |
|
|
N |
7684 |
|
|
35.75 150.9 558.25 150.9 2 L |
7685 |
|
|
V |
7686 |
|
|
N |
7687 |
|
|
35.75 126.9 558.25 126.9 2 L |
7688 |
|
|
V |
7689 |
|
|
N |
7690 |
|
|
FMENDPAGE |
7691 |
|
|
%%EndPage: "47" 52 |
7692 |
|
|
%%Page: "48" 52 |
7693 |
|
|
595.3 841.9 0 FMBEGINPAGE |
7694 |
|
|
0 10 Q |
7695 |
|
|
0 X |
7696 |
|
|
0 K |
7697 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
7698 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
7699 |
|
|
(48) 292.65 70.23 T |
7700 |
|
|
0 14 Q |
7701 |
|
|
(\373) 42 723.57 T |
7702 |
|
|
0 12 Q |
7703 |
|
|
(degree) 96 724.9 T |
7704 |
|
|
(degree) 150 724.9 T |
7705 |
|
|
(B0) 240 724.9 T |
7706 |
|
|
(00B0) 294 724.9 T |
7707 |
|
|
0 10 Q |
7708 |
|
|
(DEGREE SIGN) 348 726.23 T |
7709 |
|
|
9 14 Q |
7710 |
|
|
(\261) 42 699.57 T |
7711 |
|
|
0 12 Q |
7712 |
|
|
(plusmn) 96 700.9 T |
7713 |
|
|
(plusminus) 150 700.9 T |
7714 |
|
|
(B1) 240 700.9 T |
7715 |
|
|
(00B1) 294 700.9 T |
7716 |
|
|
0 10 Q |
7717 |
|
|
(PLUS-OR-MINUS SIGN) 348 702.23 T |
7718 |
|
|
(2) 42 681.7 T |
7719 |
|
|
0 12 Q |
7720 |
|
|
(sup2) 96 676.9 T |
7721 |
|
|
(twosuperior) 150 676.9 T |
7722 |
|
|
(B2) 240 676.9 T |
7723 |
|
|
(00B2) 294 676.9 T |
7724 |
|
|
0 10 Q |
7725 |
|
|
(SUPERSCRIPT DIGIT TWO) 348 678.23 T |
7726 |
|
|
(3) 42 659.7 T |
7727 |
|
|
0 12 Q |
7728 |
|
|
(sup3) 96 654.9 T |
7729 |
|
|
(threesuperior) 150 654.9 T |
7730 |
|
|
(B3) 240 654.9 T |
7731 |
|
|
(00B3) 294 654.9 T |
7732 |
|
|
0 10 Q |
7733 |
|
|
(SUPERSCRIPT DIGIT THREE) 348 656.23 T |
7734 |
|
|
0 14 Q |
7735 |
|
|
(\253) 42 631.57 T |
7736 |
|
|
0 12 Q |
7737 |
|
|
(acute) 96 632.9 T |
7738 |
|
|
(acute) 150 632.9 T |
7739 |
|
|
(B4) 240 632.9 T |
7740 |
|
|
(00B4) 294 632.9 T |
7741 |
|
|
0 10 Q |
7742 |
|
|
(SP) 348 634.23 T |
7743 |
|
|
(ACING ACUTE) 358.19 634.23 T |
7744 |
|
|
9 14 Q |
7745 |
|
|
(m) 42 607.57 T |
7746 |
|
|
0 12 Q |
7747 |
|
|
(micro) 96 608.9 T |
7748 |
|
|
(mu) 150 608.9 T |
7749 |
|
|
(B5) 240 608.9 T |
7750 |
|
|
(00B5) 294 608.9 T |
7751 |
|
|
0 10 Q |
7752 |
|
|
(MICRO SIGN) 348 610.23 T |
7753 |
|
|
0 14 Q |
7754 |
|
|
(\246) 42 583.57 T |
7755 |
|
|
0 12 Q |
7756 |
|
|
(para) 96 584.9 T |
7757 |
|
|
(paragraph) 150 584.9 T |
7758 |
|
|
(B6) 240 584.9 T |
7759 |
|
|
(00B6) 294 584.9 T |
7760 |
|
|
0 10 Q |
7761 |
|
|
(P) 348 586.23 T |
7762 |
|
|
(ARAGRAPH SIGN) 352.64 586.23 T |
7763 |
|
|
0 12 Q |
7764 |
|
|
(\341) 42 560.9 T |
7765 |
|
|
(middot) 96 560.9 T |
7766 |
|
|
(periodcentered) 150 560.9 T |
7767 |
|
|
(B7) 240 560.9 T |
7768 |
|
|
(00B7) 294 560.9 T |
7769 |
|
|
0 10 Q |
7770 |
|
|
(MIDDLE DOT) 348 562.23 T |
7771 |
|
|
0 12 Q |
7772 |
|
|
(\374) 42 538.9 T |
7773 |
|
|
(Cedilla) 96 538.9 T |
7774 |
|
|
(cedilla) 150 538.9 T |
7775 |
|
|
(B8) 240 538.9 T |
7776 |
|
|
(00B8) 294 538.9 T |
7777 |
|
|
0 10 Q |
7778 |
|
|
(SP) 348 540.23 T |
7779 |
|
|
(ACING CEDILLA) 358.19 540.23 T |
7780 |
|
|
(1) 42 521.7 T |
7781 |
|
|
0 12 Q |
7782 |
|
|
(sup1) 96 516.9 T |
7783 |
|
|
(onesuperior) 150 516.9 T |
7784 |
|
|
(B9) 240 516.9 T |
7785 |
|
|
(00B9) 294 516.9 T |
7786 |
|
|
0 10 Q |
7787 |
|
|
(SUPERSCRIPT DIGIT ONE) 348 518.23 T |
7788 |
|
|
0 14 Q |
7789 |
|
|
(\274) 42 493.57 T |
7790 |
|
|
0 12 Q |
7791 |
|
|
(ordm) 96 494.9 T |
7792 |
|
|
(ordmasculine) 150 494.9 T |
7793 |
|
|
(BA) 240 494.9 T |
7794 |
|
|
(00BA) 294 494.9 T |
7795 |
|
|
0 10 Q |
7796 |
|
|
(MASCULINE ORDINAL INDICA) 348 496.23 T |
7797 |
|
|
(T) 490.12 496.23 T |
7798 |
|
|
(OR) 496.05 496.23 T |
7799 |
|
|
0 14 Q |
7800 |
|
|
(\310) 42 469.57 T |
7801 |
|
|
0 12 Q |
7802 |
|
|
(raquo) 96 470.9 T |
7803 |
|
|
(guillemotright) 150 470.9 T |
7804 |
|
|
(BB) 240 470.9 T |
7805 |
|
|
(00BB) 294 470.9 T |
7806 |
|
|
0 10 Q |
7807 |
|
|
(RIGHT POINTING GUILLEMET) 348 472.23 T |
7808 |
|
|
0 12 Q |
7809 |
|
|
(1/4) 42 446.9 T |
7810 |
|
|
(frac14) 96 446.9 T |
7811 |
|
|
(onequarter) 150 446.9 T |
7812 |
|
|
(BC) 240 446.9 T |
7813 |
|
|
(00BC) 294 446.9 T |
7814 |
|
|
0 10 Q |
7815 |
|
|
(FRACTION ONE QUAR) 348 448.23 T |
7816 |
|
|
(TER) 451.22 448.23 T |
7817 |
|
|
0 12 Q |
7818 |
|
|
(1/2) 42 424.9 T |
7819 |
|
|
(frac12) 96 424.9 T |
7820 |
|
|
(onehalf) 150 424.9 T |
7821 |
|
|
(BD) 240 424.9 T |
7822 |
|
|
(00BD) 294 424.9 T |
7823 |
|
|
0 10 Q |
7824 |
|
|
(FRACTION ONE HALF) 348 426.23 T |
7825 |
|
|
0 12 Q |
7826 |
|
|
(3/4) 42 402.9 T |
7827 |
|
|
(frac34) 96 402.9 T |
7828 |
|
|
(threequarters) 150 402.9 T |
7829 |
|
|
(BE) 240 402.9 T |
7830 |
|
|
(00BE) 294 402.9 T |
7831 |
|
|
0 10 Q |
7832 |
|
|
(FRACTION THREE QUAR) 348 404.23 T |
7833 |
|
|
(TERS) 462.89 404.23 T |
7834 |
|
|
0 14 Q |
7835 |
|
|
(\300) 42 379.57 T |
7836 |
|
|
0 12 Q |
7837 |
|
|
(iquest) 96 380.9 T |
7838 |
|
|
(questiondown) 150 380.9 T |
7839 |
|
|
(BF) 240 380.9 T |
7840 |
|
|
(00BF) 294 380.9 T |
7841 |
|
|
0 10 Q |
7842 |
|
|
(INVER) 348 382.23 T |
7843 |
|
|
(TED QUESTION MARK) 377.93 382.23 T |
7844 |
|
|
0 14 Q |
7845 |
|
|
(\313) 42 355.57 T |
7846 |
|
|
0 12 Q |
7847 |
|
|
(Agrave) 96 356.9 T |
7848 |
|
|
(Agrave) 150 356.9 T |
7849 |
|
|
(C0) 240 356.9 T |
7850 |
|
|
(00C0) 294 356.9 T |
7851 |
|
|
0 10 Q |
7852 |
|
|
(LA) 348 358.23 T |
7853 |
|
|
(TIN CAPIT) 360.21 358.23 T |
7854 |
|
|
(AL LETTER A GRA) 407.44 358.23 T |
7855 |
|
|
(VE) 492.48 358.23 T |
7856 |
|
|
0 14 Q |
7857 |
|
|
(\347) 42 331.57 T |
7858 |
|
|
0 12 Q |
7859 |
|
|
(Aacute) 96 332.9 T |
7860 |
|
|
(Aacute) 150 332.9 T |
7861 |
|
|
(C1) 240 332.9 T |
7862 |
|
|
(00C1) 294 332.9 T |
7863 |
|
|
0 10 Q |
7864 |
|
|
(LA) 348 334.23 T |
7865 |
|
|
(TIN CAPIT) 360.21 334.23 T |
7866 |
|
|
(AL LETTER A ACUTE) 407.44 334.23 T |
7867 |
|
|
0 14 Q |
7868 |
|
|
(\345) 42 307.57 T |
7869 |
|
|
0 12 Q |
7870 |
|
|
(Acirc) 96 308.9 T |
7871 |
|
|
(Acircum\337ex) 150 308.9 T |
7872 |
|
|
(C2) 240 308.9 T |
7873 |
|
|
(00C2) 294 308.9 T |
7874 |
|
|
0 10 Q |
7875 |
|
|
(LA) 348 310.23 T |
7876 |
|
|
(TIN CAPIT) 360.21 310.23 T |
7877 |
|
|
(AL LETTER A CIRCUMFLEX) 407.44 310.23 T |
7878 |
|
|
0 14 Q |
7879 |
|
|
(\314) 42 282.57 T |
7880 |
|
|
0 12 Q |
7881 |
|
|
(Atilde) 96 284.9 T |
7882 |
|
|
(Atilde) 150 284.9 T |
7883 |
|
|
(C3) 240 284.9 T |
7884 |
|
|
(00C3) 294 284.9 T |
7885 |
|
|
0 10 Q |
7886 |
|
|
(LA) 348 286.23 T |
7887 |
|
|
(TIN CAPIT) 360.21 286.23 T |
7888 |
|
|
(AL LETTER A TILDE) 407.44 286.23 T |
7889 |
|
|
0 14 Q |
7890 |
|
|
(\200) 42 259.57 T |
7891 |
|
|
0 12 Q |
7892 |
|
|
(Auml) 96 260.9 T |
7893 |
|
|
(Adieresis) 150 260.9 T |
7894 |
|
|
(C4) 240 260.9 T |
7895 |
|
|
(00C4) 294 260.9 T |
7896 |
|
|
0 10 Q |
7897 |
|
|
(LA) 348 262.23 T |
7898 |
|
|
(TIN CAPIT) 360.21 262.23 T |
7899 |
|
|
(AL LETTER A DIAERESIS) 407.44 262.23 T |
7900 |
|
|
0 14 Q |
7901 |
|
|
(\201) 42 234.57 T |
7902 |
|
|
0 12 Q |
7903 |
|
|
(Aring) 96 236.9 T |
7904 |
|
|
(Aring) 150 236.9 T |
7905 |
|
|
(C5) 240 236.9 T |
7906 |
|
|
(00C5) 294 236.9 T |
7907 |
|
|
0 10 Q |
7908 |
|
|
(LA) 348 238.23 T |
7909 |
|
|
(TIN CAPIT) 360.21 238.23 T |
7910 |
|
|
(AL LETTER A RING) 407.44 238.23 T |
7911 |
|
|
0 14 Q |
7912 |
|
|
(\256) 42 211.57 T |
7913 |
|
|
0 12 Q |
7914 |
|
|
(AElig) 96 212.9 T |
7915 |
|
|
(AE) 150 212.9 T |
7916 |
|
|
(C6) 240 212.9 T |
7917 |
|
|
(00C6) 294 212.9 T |
7918 |
|
|
0 10 Q |
7919 |
|
|
(LA) 348 214.23 T |
7920 |
|
|
(TIN CAPIT) 360.21 214.23 T |
7921 |
|
|
(AL LETTER A E) 407.44 214.23 T |
7922 |
|
|
0 14 Q |
7923 |
|
|
(\202) 42 187.57 T |
7924 |
|
|
0 12 Q |
7925 |
|
|
(Ccedil) 96 188.9 T |
7926 |
|
|
(CCedilla) 150 188.9 T |
7927 |
|
|
(C7) 240 188.9 T |
7928 |
|
|
(00C7) 294 188.9 T |
7929 |
|
|
0 10 Q |
7930 |
|
|
(LA) 348 190.23 T |
7931 |
|
|
(TIN CAPIT) 360.21 190.23 T |
7932 |
|
|
(AL LETTER C CEDILLA) 407.44 190.23 T |
7933 |
|
|
0 14 Q |
7934 |
|
|
(\351) 42 163.57 T |
7935 |
|
|
0 12 Q |
7936 |
|
|
(Egrave) 96 164.9 T |
7937 |
|
|
(Egrave) 150 164.9 T |
7938 |
|
|
(C8) 240 164.9 T |
7939 |
|
|
(00C8) 294 164.9 T |
7940 |
|
|
0 10 Q |
7941 |
|
|
(LA) 348 166.23 T |
7942 |
|
|
(TIN CAPIT) 360.21 166.23 T |
7943 |
|
|
(AL LETTER E GRA) 407.44 166.23 T |
7944 |
|
|
(VE) 491.37 166.23 T |
7945 |
|
|
0 14 Q |
7946 |
|
|
(\203) 42 139.57 T |
7947 |
|
|
0 12 Q |
7948 |
|
|
(Eacute) 96 140.9 T |
7949 |
|
|
(Eacute) 150 140.9 T |
7950 |
|
|
(C9) 240 140.9 T |
7951 |
|
|
(00C9) 294 140.9 T |
7952 |
|
|
0 10 Q |
7953 |
|
|
(LA) 348 142.23 T |
7954 |
|
|
(TIN CAPIT) 360.21 142.23 T |
7955 |
|
|
(AL LETTER E ACUTE) 407.44 142.23 T |
7956 |
|
|
0 14 Q |
7957 |
|
|
(\346) 42 115.57 T |
7958 |
|
|
0 12 Q |
7959 |
|
|
(Ecirc) 96 116.9 T |
7960 |
|
|
(Ecircum\337ex) 150 116.9 T |
7961 |
|
|
(CA) 240 116.9 T |
7962 |
|
|
(00CA) 294 116.9 T |
7963 |
|
|
0 10 Q |
7964 |
|
|
(LA) 348 118.23 T |
7965 |
|
|
(TIN CAPIT) 360.21 118.23 T |
7966 |
|
|
(AL LETTER E CIRCUMFLEX) 407.44 118.23 T |
7967 |
|
|
5 12 Q |
7968 |
|
|
(Symbol) 43.67 755.9 T |
7969 |
|
|
(ISO) 106.67 762.9 T |
7970 |
|
|
(8879) 105.01 748.9 T |
7971 |
|
|
(Adobe name) 156.85 755.9 T |
7972 |
|
|
(Adobe) 244.34 762.9 T |
7973 |
|
|
(Hex) 250.67 748.9 T |
7974 |
|
|
(Unicode) 294.01 755.9 T |
7975 |
|
|
(Unicode name) 413.52 755.9 T |
7976 |
|
|
36 778.65 36 107.15 2 L |
7977 |
|
|
V |
7978 |
|
|
0.5 H |
7979 |
|
|
0 Z |
7980 |
|
|
N |
7981 |
|
|
90 779.15 90 106.65 2 L |
7982 |
|
|
V |
7983 |
|
|
N |
7984 |
|
|
144 779.15 144 106.65 2 L |
7985 |
|
|
V |
7986 |
|
|
N |
7987 |
|
|
234 779.15 234 106.65 2 L |
7988 |
|
|
V |
7989 |
|
|
N |
7990 |
|
|
288 779.15 288 106.65 2 L |
7991 |
|
|
V |
7992 |
|
|
N |
7993 |
|
|
342 779.15 342 106.65 2 L |
7994 |
|
|
V |
7995 |
|
|
N |
7996 |
|
|
558 778.65 558 107.15 2 L |
7997 |
|
|
V |
7998 |
|
|
N |
7999 |
|
|
35.75 778.9 558.25 778.9 2 L |
8000 |
|
|
V |
8001 |
|
|
N |
8002 |
|
|
36.25 740.15 557.75 740.15 2 L |
8003 |
|
|
V |
8004 |
|
|
N |
8005 |
|
|
36.25 737.65 557.75 737.65 2 L |
8006 |
|
|
V |
8007 |
|
|
N |
8008 |
|
|
35.75 714.9 558.25 714.9 2 L |
8009 |
|
|
V |
8010 |
|
|
N |
8011 |
|
|
35.75 690.9 558.25 690.9 2 L |
8012 |
|
|
V |
8013 |
|
|
N |
8014 |
|
|
35.75 668.9 558.25 668.9 2 L |
8015 |
|
|
V |
8016 |
|
|
N |
8017 |
|
|
35.75 646.9 558.25 646.9 2 L |
8018 |
|
|
V |
8019 |
|
|
N |
8020 |
|
|
35.75 622.9 558.25 622.9 2 L |
8021 |
|
|
V |
8022 |
|
|
N |
8023 |
|
|
35.75 598.9 558.25 598.9 2 L |
8024 |
|
|
V |
8025 |
|
|
N |
8026 |
|
|
35.75 574.9 558.25 574.9 2 L |
8027 |
|
|
V |
8028 |
|
|
N |
8029 |
|
|
35.75 552.9 558.25 552.9 2 L |
8030 |
|
|
V |
8031 |
|
|
N |
8032 |
|
|
35.75 530.9 558.25 530.9 2 L |
8033 |
|
|
V |
8034 |
|
|
N |
8035 |
|
|
35.75 508.9 558.25 508.9 2 L |
8036 |
|
|
V |
8037 |
|
|
N |
8038 |
|
|
35.75 484.9 558.25 484.9 2 L |
8039 |
|
|
V |
8040 |
|
|
N |
8041 |
|
|
35.75 460.9 558.25 460.9 2 L |
8042 |
|
|
V |
8043 |
|
|
N |
8044 |
|
|
35.75 438.9 558.25 438.9 2 L |
8045 |
|
|
V |
8046 |
|
|
N |
8047 |
|
|
35.75 416.9 558.25 416.9 2 L |
8048 |
|
|
V |
8049 |
|
|
N |
8050 |
|
|
35.75 394.9 558.25 394.9 2 L |
8051 |
|
|
V |
8052 |
|
|
N |
8053 |
|
|
35.75 370.9 558.25 370.9 2 L |
8054 |
|
|
V |
8055 |
|
|
N |
8056 |
|
|
35.75 346.9 558.25 346.9 2 L |
8057 |
|
|
V |
8058 |
|
|
N |
8059 |
|
|
35.75 322.9 558.25 322.9 2 L |
8060 |
|
|
V |
8061 |
|
|
N |
8062 |
|
|
35.75 298.9 558.25 298.9 2 L |
8063 |
|
|
V |
8064 |
|
|
N |
8065 |
|
|
35.75 274.9 558.25 274.9 2 L |
8066 |
|
|
V |
8067 |
|
|
N |
8068 |
|
|
35.75 250.9 558.25 250.9 2 L |
8069 |
|
|
V |
8070 |
|
|
N |
8071 |
|
|
35.75 226.9 558.25 226.9 2 L |
8072 |
|
|
V |
8073 |
|
|
N |
8074 |
|
|
35.75 202.9 558.25 202.9 2 L |
8075 |
|
|
V |
8076 |
|
|
N |
8077 |
|
|
35.75 178.9 558.25 178.9 2 L |
8078 |
|
|
V |
8079 |
|
|
N |
8080 |
|
|
35.75 154.9 558.25 154.9 2 L |
8081 |
|
|
V |
8082 |
|
|
N |
8083 |
|
|
35.75 130.9 558.25 130.9 2 L |
8084 |
|
|
V |
8085 |
|
|
N |
8086 |
|
|
35.75 106.9 558.25 106.9 2 L |
8087 |
|
|
V |
8088 |
|
|
N |
8089 |
|
|
FMENDPAGE |
8090 |
|
|
%%EndPage: "48" 53 |
8091 |
|
|
%%Page: "49" 53 |
8092 |
|
|
595.3 841.9 0 FMBEGINPAGE |
8093 |
|
|
0 10 Q |
8094 |
|
|
0 X |
8095 |
|
|
0 K |
8096 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
8097 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
8098 |
|
|
(49) 292.65 70.23 T |
8099 |
|
|
0 14 Q |
8100 |
|
|
(\350) 42 732.57 T |
8101 |
|
|
0 12 Q |
8102 |
|
|
(Euml) 96 733.9 T |
8103 |
|
|
(Edieresis) 150 733.9 T |
8104 |
|
|
(CB) 240 733.9 T |
8105 |
|
|
(00CB) 294 733.9 T |
8106 |
|
|
0 10 Q |
8107 |
|
|
(LA) 348 735.23 T |
8108 |
|
|
(TIN CAPIT) 360.21 735.23 T |
8109 |
|
|
(AL LETTER E DIAERESIS) 407.44 735.23 T |
8110 |
|
|
0 12 Q |
8111 |
|
|
(\355) 42 709.9 T |
8112 |
|
|
(Igrave) 96 709.9 T |
8113 |
|
|
(Igrave) 150 709.9 T |
8114 |
|
|
(CC) 240 709.9 T |
8115 |
|
|
(00CC) 294 709.9 T |
8116 |
|
|
0 10 Q |
8117 |
|
|
(LA) 348 711.23 T |
8118 |
|
|
(TIN CAPIT) 360.21 711.23 T |
8119 |
|
|
(AL LETTER I GRA) 407.44 711.23 T |
8120 |
|
|
(VE) 488.59 711.23 T |
8121 |
|
|
0 14 Q |
8122 |
|
|
(\352) 42 686.57 T |
8123 |
|
|
0 12 Q |
8124 |
|
|
(Iacute) 96 687.9 T |
8125 |
|
|
(Iacute) 150 687.9 T |
8126 |
|
|
(CD) 240 687.9 T |
8127 |
|
|
(00CD) 294 687.9 T |
8128 |
|
|
0 10 Q |
8129 |
|
|
(LA) 348 689.23 T |
8130 |
|
|
(TIN CAPIT) 360.21 689.23 T |
8131 |
|
|
(AL LETTER I ACUTE) 407.44 689.23 T |
8132 |
|
|
0 14 Q |
8133 |
|
|
(\353) 42 662.57 T |
8134 |
|
|
0 12 Q |
8135 |
|
|
(Icirc) 96 663.9 T |
8136 |
|
|
(Icircum\337ex) 150 663.9 T |
8137 |
|
|
(CE) 240 663.9 T |
8138 |
|
|
(00CE) 294 663.9 T |
8139 |
|
|
0 10 Q |
8140 |
|
|
(LA) 348 665.23 T |
8141 |
|
|
(TIN CAPIT) 360.21 665.23 T |
8142 |
|
|
(AL LETTER I CIRCUMFLEX) 407.44 665.23 T |
8143 |
|
|
0 14 Q |
8144 |
|
|
(\354) 42 638.57 T |
8145 |
|
|
0 12 Q |
8146 |
|
|
(Iuml) 96 639.9 T |
8147 |
|
|
(Idieresis) 150 639.9 T |
8148 |
|
|
(CF) 240 639.9 T |
8149 |
|
|
(00CF) 294 639.9 T |
8150 |
|
|
0 10 Q |
8151 |
|
|
(LA) 348 641.23 T |
8152 |
|
|
(TIN CAPIT) 360.21 641.23 T |
8153 |
|
|
(AL LETTER I DIAERESIS) 407.44 641.23 T |
8154 |
|
|
0 12 Q |
8155 |
|
|
(ETH) 96 615.9 T |
8156 |
|
|
(Eth) 150 615.9 T |
8157 |
|
|
(D0) 240 615.9 T |
8158 |
|
|
(00D0) 294 615.9 T |
8159 |
|
|
0 10 Q |
8160 |
|
|
(LA) 348 617.23 T |
8161 |
|
|
(TIN CAPIT) 360.21 617.23 T |
8162 |
|
|
(AL LETTER ETH) 407.44 617.23 T |
8163 |
|
|
0 14 Q |
8164 |
|
|
(\204) 42 592.57 T |
8165 |
|
|
0 12 Q |
8166 |
|
|
(Ntilde) 96 593.9 T |
8167 |
|
|
(Ntilde) 150 593.9 T |
8168 |
|
|
(D1) 240 593.9 T |
8169 |
|
|
(00D1) 294 593.9 T |
8170 |
|
|
0 10 Q |
8171 |
|
|
(LA) 348 595.23 T |
8172 |
|
|
(TIN CAPIT) 360.21 595.23 T |
8173 |
|
|
(AL LETTER N TILDE) 407.44 595.23 T |
8174 |
|
|
0 14 Q |
8175 |
|
|
(\361) 42 568.57 T |
8176 |
|
|
0 12 Q |
8177 |
|
|
(Ograve) 96 569.9 T |
8178 |
|
|
(Ograve) 150 569.9 T |
8179 |
|
|
(D2) 240 569.9 T |
8180 |
|
|
(00D2) 294 569.9 T |
8181 |
|
|
0 10 Q |
8182 |
|
|
(LA) 348 571.23 T |
8183 |
|
|
(TIN CAPIT) 360.21 571.23 T |
8184 |
|
|
(AL LETTER O GRA) 407.44 571.23 T |
8185 |
|
|
(VE) 492.48 571.23 T |
8186 |
|
|
0 14 Q |
8187 |
|
|
(\356) 42 544.57 T |
8188 |
|
|
0 12 Q |
8189 |
|
|
(Oacute) 96 545.9 T |
8190 |
|
|
(Oacute) 150 545.9 T |
8191 |
|
|
(D3) 240 545.9 T |
8192 |
|
|
(00D3) 294 545.9 T |
8193 |
|
|
0 10 Q |
8194 |
|
|
(LA) 348 547.23 T |
8195 |
|
|
(TIN CAPIT) 360.21 547.23 T |
8196 |
|
|
(AL LETTER O ACUTE) 407.44 547.23 T |
8197 |
|
|
0 14 Q |
8198 |
|
|
(\357) 42 520.57 T |
8199 |
|
|
0 12 Q |
8200 |
|
|
(Ocirc) 96 521.9 T |
8201 |
|
|
(Ocircum\337ex) 150 521.9 T |
8202 |
|
|
(D4) 240 521.9 T |
8203 |
|
|
(00D4) 294 521.9 T |
8204 |
|
|
0 10 Q |
8205 |
|
|
(LA) 348 523.23 T |
8206 |
|
|
(TIN CAPIT) 360.21 523.23 T |
8207 |
|
|
(AL LETTER O CIRCUMFLEX) 407.44 523.23 T |
8208 |
|
|
0 14 Q |
8209 |
|
|
(\315) 42 496.57 T |
8210 |
|
|
0 12 Q |
8211 |
|
|
(Otilde) 96 497.9 T |
8212 |
|
|
(Otilde) 150 497.9 T |
8213 |
|
|
(D5) 240 497.9 T |
8214 |
|
|
(00D5) 294 497.9 T |
8215 |
|
|
0 10 Q |
8216 |
|
|
(LA) 348 499.23 T |
8217 |
|
|
(TIN CAPIT) 360.21 499.23 T |
8218 |
|
|
(AL LETTER O TILDE) 407.44 499.23 T |
8219 |
|
|
0 14 Q |
8220 |
|
|
(\205) 42 472.57 T |
8221 |
|
|
0 12 Q |
8222 |
|
|
(Ouml) 96 473.9 T |
8223 |
|
|
(Odieresis) 150 473.9 T |
8224 |
|
|
(D6) 240 473.9 T |
8225 |
|
|
(00D6) 294 473.9 T |
8226 |
|
|
0 10 Q |
8227 |
|
|
(LA) 348 475.23 T |
8228 |
|
|
(TIN CAPIT) 360.21 475.23 T |
8229 |
|
|
(AL LETTER O DIAERESIS) 407.44 475.23 T |
8230 |
|
|
9 14 Q |
8231 |
|
|
(\264) 42 448.57 T |
8232 |
|
|
0 12 Q |
8233 |
|
|
(times) 96 449.9 T |
8234 |
|
|
(multiply) 150 449.9 T |
8235 |
|
|
(D7) 240 449.9 T |
8236 |
|
|
(00D7) 294 449.9 T |
8237 |
|
|
0 10 Q |
8238 |
|
|
(MUL) 348 451.23 T |
8239 |
|
|
(TIPLICA) 369.29 451.23 T |
8240 |
|
|
(TION SIGN) 406.49 451.23 T |
8241 |
|
|
0 14 Q |
8242 |
|
|
(\257) 42 424.57 T |
8243 |
|
|
0 12 Q |
8244 |
|
|
(Oslash) 96 425.9 T |
8245 |
|
|
(Oslash) 150 425.9 T |
8246 |
|
|
(D8) 240 425.9 T |
8247 |
|
|
(00D8) 294 425.9 T |
8248 |
|
|
0 10 Q |
8249 |
|
|
(LA) 348 427.23 T |
8250 |
|
|
(TIN CAPIT) 360.21 427.23 T |
8251 |
|
|
(AL LEETER O SLASH) 407.44 427.23 T |
8252 |
|
|
0 14 Q |
8253 |
|
|
(\364) 42 400.57 T |
8254 |
|
|
0 12 Q |
8255 |
|
|
(Ugrave) 96 401.9 T |
8256 |
|
|
(Ugrave) 150 401.9 T |
8257 |
|
|
(D9) 240 401.9 T |
8258 |
|
|
(00D9) 294 401.9 T |
8259 |
|
|
0 10 Q |
8260 |
|
|
(LA) 348 403.23 T |
8261 |
|
|
(TIN CAPIT) 360.21 403.23 T |
8262 |
|
|
(AL LETTER U GRA) 407.44 403.23 T |
8263 |
|
|
(VE) 492.48 403.23 T |
8264 |
|
|
0 14 Q |
8265 |
|
|
(\362) 42 376.57 T |
8266 |
|
|
0 12 Q |
8267 |
|
|
(Uacute) 96 377.9 T |
8268 |
|
|
(Uacute) 150 377.9 T |
8269 |
|
|
(DA) 240 377.9 T |
8270 |
|
|
(00DA) 294 377.9 T |
8271 |
|
|
0 10 Q |
8272 |
|
|
(LA) 348 379.23 T |
8273 |
|
|
(TIN CAPIT) 360.21 379.23 T |
8274 |
|
|
(AL LETTER U ACUTE) 407.44 379.23 T |
8275 |
|
|
0 14 Q |
8276 |
|
|
(\363) 42 352.57 T |
8277 |
|
|
0 12 Q |
8278 |
|
|
(Ucirc) 96 353.9 T |
8279 |
|
|
(Ucircum\337ex) 150 353.9 T |
8280 |
|
|
(DB) 240 353.9 T |
8281 |
|
|
(00DB) 294 353.9 T |
8282 |
|
|
0 10 Q |
8283 |
|
|
(LA) 348 355.23 T |
8284 |
|
|
(TIN CAPIT) 360.21 355.23 T |
8285 |
|
|
(AL LETTER U CIRCUMFLEX) 407.44 355.23 T |
8286 |
|
|
0 14 Q |
8287 |
|
|
(\206) 42 328.57 T |
8288 |
|
|
0 12 Q |
8289 |
|
|
(Uuml) 96 329.9 T |
8290 |
|
|
(Udieresis) 150 329.9 T |
8291 |
|
|
(DC) 240 329.9 T |
8292 |
|
|
(00DC) 294 329.9 T |
8293 |
|
|
0 10 Q |
8294 |
|
|
(LA) 348 331.23 T |
8295 |
|
|
(TIN CAPIT) 360.21 331.23 T |
8296 |
|
|
(AL LETTER U DIAERESIS) 407.44 331.23 T |
8297 |
|
|
0 12 Q |
8298 |
|
|
(Y) 96 305.9 T |
8299 |
|
|
(acute) 103.46 305.9 T |
8300 |
|
|
(Y) 150 305.9 T |
8301 |
|
|
(acute) 157.46 305.9 T |
8302 |
|
|
(DD) 240 305.9 T |
8303 |
|
|
(00DD) 294 305.9 T |
8304 |
|
|
0 10 Q |
8305 |
|
|
(LA) 348 307.23 T |
8306 |
|
|
(TIN CAPIT) 360.21 307.23 T |
8307 |
|
|
(AL LETTER Y ACUTE) 407.44 307.23 T |
8308 |
|
|
0 12 Q |
8309 |
|
|
(THORN) 96 283.9 T |
8310 |
|
|
(Thorn) 150 283.9 T |
8311 |
|
|
(DE) 240 283.9 T |
8312 |
|
|
(00DE) 294 283.9 T |
8313 |
|
|
0 10 Q |
8314 |
|
|
(LA) 348 285.23 T |
8315 |
|
|
(TIN CAPIT) 360.21 285.23 T |
8316 |
|
|
(AL LETTER THORN) 407.44 285.23 T |
8317 |
|
|
0 14 Q |
8318 |
|
|
(\247) 42 260.57 T |
8319 |
|
|
0 12 Q |
8320 |
|
|
(szlig) 96 261.9 T |
8321 |
|
|
(germandbls) 150 261.9 T |
8322 |
|
|
(DF) 240 261.9 T |
8323 |
|
|
(00DF) 294 261.9 T |
8324 |
|
|
0 10 Q |
8325 |
|
|
(LA) 348 263.23 T |
8326 |
|
|
(TIN SMALL LETTER SHARP S) 360.21 263.23 T |
8327 |
|
|
0 14 Q |
8328 |
|
|
(\210) 42 236.57 T |
8329 |
|
|
0 12 Q |
8330 |
|
|
(agrave) 96 237.9 T |
8331 |
|
|
(agrave) 150 237.9 T |
8332 |
|
|
(E0) 240 237.9 T |
8333 |
|
|
(00E0) 294 237.9 T |
8334 |
|
|
0 10 Q |
8335 |
|
|
(LA) 348 239.23 T |
8336 |
|
|
(TIN SMALL LETTER A GRA) 360.21 239.23 T |
8337 |
|
|
(VE) 484.95 239.23 T |
8338 |
|
|
0 14 Q |
8339 |
|
|
(\207) 42 212.57 T |
8340 |
|
|
0 12 Q |
8341 |
|
|
(aacute) 96 213.9 T |
8342 |
|
|
(aacute) 150 213.9 T |
8343 |
|
|
(E1) 240 213.9 T |
8344 |
|
|
(00E1) 294 213.9 T |
8345 |
|
|
0 10 Q |
8346 |
|
|
(LA) 348 215.23 T |
8347 |
|
|
(TIN SMALL LETTER A ACUTE) 360.21 215.23 T |
8348 |
|
|
0 14 Q |
8349 |
|
|
(\211) 42 188.57 T |
8350 |
|
|
0 12 Q |
8351 |
|
|
(acirc) 96 189.9 T |
8352 |
|
|
(acircum\337ex) 150 189.9 T |
8353 |
|
|
(E2) 240 189.9 T |
8354 |
|
|
(00E2) 294 189.9 T |
8355 |
|
|
0 10 Q |
8356 |
|
|
(LA) 348 191.23 T |
8357 |
|
|
(TIN SMALL LETTER A CIRCUMFLEX) 360.21 191.23 T |
8358 |
|
|
0 14 Q |
8359 |
|
|
(\213) 42 163.57 T |
8360 |
|
|
0 12 Q |
8361 |
|
|
(atilde) 96 165.9 T |
8362 |
|
|
(atilde) 150 165.9 T |
8363 |
|
|
(E3) 240 165.9 T |
8364 |
|
|
(00E3) 294 165.9 T |
8365 |
|
|
0 10 Q |
8366 |
|
|
(LA) 348 167.23 T |
8367 |
|
|
(TIN SMALL LETTER A TILDE) 360.21 167.23 T |
8368 |
|
|
0 14 Q |
8369 |
|
|
(\212) 42 140.57 T |
8370 |
|
|
0 12 Q |
8371 |
|
|
(auml) 96 141.9 T |
8372 |
|
|
(adieresis) 150 141.9 T |
8373 |
|
|
(E4) 240 141.9 T |
8374 |
|
|
(00E4) 294 141.9 T |
8375 |
|
|
0 10 Q |
8376 |
|
|
(LA) 348 143.23 T |
8377 |
|
|
(TIN SMALL LETTER A DIAERESIS) 360.21 143.23 T |
8378 |
|
|
0 14 Q |
8379 |
|
|
(\214) 42 116.57 T |
8380 |
|
|
0 12 Q |
8381 |
|
|
(aring) 96 117.9 T |
8382 |
|
|
(aring) 150 117.9 T |
8383 |
|
|
(E5) 240 117.9 T |
8384 |
|
|
(00E5) 294 117.9 T |
8385 |
|
|
0 10 Q |
8386 |
|
|
(LA) 348 119.23 T |
8387 |
|
|
(TIN SMALL LETTER A RING) 360.21 119.23 T |
8388 |
|
|
5 12 Q |
8389 |
|
|
(Symbol) 43.67 764.9 T |
8390 |
|
|
(ISO) 106.67 771.9 T |
8391 |
|
|
(8879) 105.01 757.9 T |
8392 |
|
|
(Adobe name) 156.85 764.9 T |
8393 |
|
|
(Adobe) 244.34 771.9 T |
8394 |
|
|
(Hex) 250.67 757.9 T |
8395 |
|
|
(Unicode) 294.01 764.9 T |
8396 |
|
|
(Unicode name) 413.52 764.9 T |
8397 |
|
|
36 787.65 36 108.15 2 L |
8398 |
|
|
V |
8399 |
|
|
0.5 H |
8400 |
|
|
0 Z |
8401 |
|
|
N |
8402 |
|
|
90 788.15 90 107.65 2 L |
8403 |
|
|
V |
8404 |
|
|
N |
8405 |
|
|
144 788.15 144 107.65 2 L |
8406 |
|
|
V |
8407 |
|
|
N |
8408 |
|
|
234 788.15 234 107.65 2 L |
8409 |
|
|
V |
8410 |
|
|
N |
8411 |
|
|
288 788.15 288 107.65 2 L |
8412 |
|
|
V |
8413 |
|
|
N |
8414 |
|
|
342 788.15 342 107.65 2 L |
8415 |
|
|
V |
8416 |
|
|
N |
8417 |
|
|
558 787.65 558 108.15 2 L |
8418 |
|
|
V |
8419 |
|
|
N |
8420 |
|
|
35.75 787.9 558.25 787.9 2 L |
8421 |
|
|
V |
8422 |
|
|
N |
8423 |
|
|
36.25 749.15 557.75 749.15 2 L |
8424 |
|
|
V |
8425 |
|
|
N |
8426 |
|
|
36.25 746.65 557.75 746.65 2 L |
8427 |
|
|
V |
8428 |
|
|
N |
8429 |
|
|
35.75 723.9 558.25 723.9 2 L |
8430 |
|
|
V |
8431 |
|
|
N |
8432 |
|
|
35.75 701.9 558.25 701.9 2 L |
8433 |
|
|
V |
8434 |
|
|
N |
8435 |
|
|
35.75 677.9 558.25 677.9 2 L |
8436 |
|
|
V |
8437 |
|
|
N |
8438 |
|
|
35.75 653.9 558.25 653.9 2 L |
8439 |
|
|
V |
8440 |
|
|
N |
8441 |
|
|
35.75 629.9 558.25 629.9 2 L |
8442 |
|
|
V |
8443 |
|
|
N |
8444 |
|
|
35.75 607.9 558.25 607.9 2 L |
8445 |
|
|
V |
8446 |
|
|
N |
8447 |
|
|
35.75 583.9 558.25 583.9 2 L |
8448 |
|
|
V |
8449 |
|
|
N |
8450 |
|
|
35.75 559.9 558.25 559.9 2 L |
8451 |
|
|
V |
8452 |
|
|
N |
8453 |
|
|
35.75 535.9 558.25 535.9 2 L |
8454 |
|
|
V |
8455 |
|
|
N |
8456 |
|
|
35.75 511.9 558.25 511.9 2 L |
8457 |
|
|
V |
8458 |
|
|
N |
8459 |
|
|
35.75 487.9 558.25 487.9 2 L |
8460 |
|
|
V |
8461 |
|
|
N |
8462 |
|
|
35.75 463.9 558.25 463.9 2 L |
8463 |
|
|
V |
8464 |
|
|
N |
8465 |
|
|
35.75 439.9 558.25 439.9 2 L |
8466 |
|
|
V |
8467 |
|
|
N |
8468 |
|
|
35.75 415.9 558.25 415.9 2 L |
8469 |
|
|
V |
8470 |
|
|
N |
8471 |
|
|
35.75 391.9 558.25 391.9 2 L |
8472 |
|
|
V |
8473 |
|
|
N |
8474 |
|
|
35.75 367.9 558.25 367.9 2 L |
8475 |
|
|
V |
8476 |
|
|
N |
8477 |
|
|
35.75 343.9 558.25 343.9 2 L |
8478 |
|
|
V |
8479 |
|
|
N |
8480 |
|
|
35.75 319.9 558.25 319.9 2 L |
8481 |
|
|
V |
8482 |
|
|
N |
8483 |
|
|
35.75 297.9 558.25 297.9 2 L |
8484 |
|
|
V |
8485 |
|
|
N |
8486 |
|
|
35.75 275.9 558.25 275.9 2 L |
8487 |
|
|
V |
8488 |
|
|
N |
8489 |
|
|
35.75 251.9 558.25 251.9 2 L |
8490 |
|
|
V |
8491 |
|
|
N |
8492 |
|
|
35.75 227.9 558.25 227.9 2 L |
8493 |
|
|
V |
8494 |
|
|
N |
8495 |
|
|
35.75 203.9 558.25 203.9 2 L |
8496 |
|
|
V |
8497 |
|
|
N |
8498 |
|
|
35.75 179.9 558.25 179.9 2 L |
8499 |
|
|
V |
8500 |
|
|
N |
8501 |
|
|
35.75 155.9 558.25 155.9 2 L |
8502 |
|
|
V |
8503 |
|
|
N |
8504 |
|
|
35.75 131.9 558.25 131.9 2 L |
8505 |
|
|
V |
8506 |
|
|
N |
8507 |
|
|
35.75 107.9 558.25 107.9 2 L |
8508 |
|
|
V |
8509 |
|
|
N |
8510 |
|
|
FMENDPAGE |
8511 |
|
|
%%EndPage: "49" 54 |
8512 |
|
|
%%Page: "50" 54 |
8513 |
|
|
595.3 841.9 0 FMBEGINPAGE |
8514 |
|
|
0 10 Q |
8515 |
|
|
0 X |
8516 |
|
|
0 K |
8517 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
8518 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
8519 |
|
|
(50) 292.65 70.23 T |
8520 |
|
|
0 14 Q |
8521 |
|
|
(\276) 42 732.57 T |
8522 |
|
|
0 12 Q |
8523 |
|
|
(aelig) 96 733.9 T |
8524 |
|
|
(ae) 150 733.9 T |
8525 |
|
|
(E6) 240 733.9 T |
8526 |
|
|
(00E6) 294 733.9 T |
8527 |
|
|
0 10 Q |
8528 |
|
|
(LA) 348 735.23 T |
8529 |
|
|
(TIN SMALL LETTER A E) 360.21 735.23 T |
8530 |
|
|
0 14 Q |
8531 |
|
|
(\215) 42 708.57 T |
8532 |
|
|
0 12 Q |
8533 |
|
|
(ccedil) 96 709.9 T |
8534 |
|
|
(ccedilla) 150 709.9 T |
8535 |
|
|
(E7) 240 709.9 T |
8536 |
|
|
(00E7) 294 709.9 T |
8537 |
|
|
0 10 Q |
8538 |
|
|
(LA) 348 711.23 T |
8539 |
|
|
(TIN SMALL LETTER C CEDILLA) 360.21 711.23 T |
8540 |
|
|
0 14 Q |
8541 |
|
|
(\217) 42 684.57 T |
8542 |
|
|
0 12 Q |
8543 |
|
|
(egrave) 96 685.9 T |
8544 |
|
|
(egrave) 150 685.9 T |
8545 |
|
|
(E8) 240 685.9 T |
8546 |
|
|
(00E8) 294 685.9 T |
8547 |
|
|
0 10 Q |
8548 |
|
|
(LA) 348 687.23 T |
8549 |
|
|
(TIN SMALL LETTER E GRA) 360.21 687.23 T |
8550 |
|
|
(VE) 483.85 687.23 T |
8551 |
|
|
0 14 Q |
8552 |
|
|
(\216) 42 660.57 T |
8553 |
|
|
0 12 Q |
8554 |
|
|
(eacute) 96 661.9 T |
8555 |
|
|
(eacute) 150 661.9 T |
8556 |
|
|
(E9) 240 661.9 T |
8557 |
|
|
(00E9) 294 661.9 T |
8558 |
|
|
0 10 Q |
8559 |
|
|
(LA) 348 663.23 T |
8560 |
|
|
(TIN SMALL LETTER E ACUTE) 360.21 663.23 T |
8561 |
|
|
0 14 Q |
8562 |
|
|
(\220) 42 636.57 T |
8563 |
|
|
0 12 Q |
8564 |
|
|
(ecirc) 96 637.9 T |
8565 |
|
|
(ecircum\337ex) 150 637.9 T |
8566 |
|
|
(EA) 240 637.9 T |
8567 |
|
|
(00EA) 294 637.9 T |
8568 |
|
|
0 10 Q |
8569 |
|
|
(LA) 348 639.23 T |
8570 |
|
|
(TIN SMALL LETTER E CIRCUMFLEX) 360.21 639.23 T |
8571 |
|
|
0 14 Q |
8572 |
|
|
(\221) 42 612.57 T |
8573 |
|
|
0 12 Q |
8574 |
|
|
(euml) 96 613.9 T |
8575 |
|
|
(edieresis) 150 613.9 T |
8576 |
|
|
(EB) 240 613.9 T |
8577 |
|
|
(00EB) 294 613.9 T |
8578 |
|
|
0 10 Q |
8579 |
|
|
(LA) 348 615.23 T |
8580 |
|
|
(TIN SMALL LETTER E DIAERESIS) 360.21 615.23 T |
8581 |
|
|
0 14 Q |
8582 |
|
|
(\223) 42 588.57 T |
8583 |
|
|
0 12 Q |
8584 |
|
|
(igrave) 96 589.9 T |
8585 |
|
|
(igrave) 150 589.9 T |
8586 |
|
|
(EC) 240 589.9 T |
8587 |
|
|
(00EC) 294 589.9 T |
8588 |
|
|
0 10 Q |
8589 |
|
|
(LA) 348 591.23 T |
8590 |
|
|
(TIN SMALL LETTER I GRA) 360.21 591.23 T |
8591 |
|
|
(VE) 481.07 591.23 T |
8592 |
|
|
0 14 Q |
8593 |
|
|
(\222) 42 564.57 T |
8594 |
|
|
0 12 Q |
8595 |
|
|
(iacute) 96 565.9 T |
8596 |
|
|
(iacute) 150 565.9 T |
8597 |
|
|
(ED) 240 565.9 T |
8598 |
|
|
(00ED) 294 565.9 T |
8599 |
|
|
0 10 Q |
8600 |
|
|
(LA) 348 567.23 T |
8601 |
|
|
(TIN SMALL LETTER I ACUTE) 360.21 567.23 T |
8602 |
|
|
0 14 Q |
8603 |
|
|
(\224) 42 540.57 T |
8604 |
|
|
0 12 Q |
8605 |
|
|
(icirc) 96 541.9 T |
8606 |
|
|
(icircum\337ex) 150 541.9 T |
8607 |
|
|
(EE) 240 541.9 T |
8608 |
|
|
(00EE) 294 541.9 T |
8609 |
|
|
0 10 Q |
8610 |
|
|
(LA) 348 543.23 T |
8611 |
|
|
(TIN SMALL LETTER I CIRCUMFLEX) 360.21 543.23 T |
8612 |
|
|
0 14 Q |
8613 |
|
|
(\225) 42 516.57 T |
8614 |
|
|
0 12 Q |
8615 |
|
|
(iuml) 96 517.9 T |
8616 |
|
|
(idieresis) 150 517.9 T |
8617 |
|
|
(EF) 240 517.9 T |
8618 |
|
|
(00EF) 294 517.9 T |
8619 |
|
|
0 10 Q |
8620 |
|
|
(LA) 348 519.23 T |
8621 |
|
|
(TIN SMALL LETTER I DIAERESIS) 360.21 519.23 T |
8622 |
|
|
0 12 Q |
8623 |
|
|
(eth) 96 493.9 T |
8624 |
|
|
(eth) 150 493.9 T |
8625 |
|
|
(F0) 240 493.9 T |
8626 |
|
|
(00F0) 294 493.9 T |
8627 |
|
|
0 10 Q |
8628 |
|
|
(LA) 348 495.23 T |
8629 |
|
|
(TIN SMALL LETTER ETH) 360.21 495.23 T |
8630 |
|
|
0 14 Q |
8631 |
|
|
(\226) 42 470.57 T |
8632 |
|
|
0 12 Q |
8633 |
|
|
(ntilde) 96 471.9 T |
8634 |
|
|
(ntilde) 150 471.9 T |
8635 |
|
|
(F1) 240 471.9 T |
8636 |
|
|
(00F1) 294 471.9 T |
8637 |
|
|
0 10 Q |
8638 |
|
|
(LA) 348 473.23 T |
8639 |
|
|
(TIN SMALL LETTER N TILDE) 360.21 473.23 T |
8640 |
|
|
0 14 Q |
8641 |
|
|
(\230) 42 446.57 T |
8642 |
|
|
0 12 Q |
8643 |
|
|
(ograve) 96 447.9 T |
8644 |
|
|
(ograve) 150 447.9 T |
8645 |
|
|
(F2) 240 447.9 T |
8646 |
|
|
(00F2) 294 447.9 T |
8647 |
|
|
0 10 Q |
8648 |
|
|
(LA) 348 449.23 T |
8649 |
|
|
(TIN SMALL LETTER O GRA) 360.21 449.23 T |
8650 |
|
|
(VE) 484.95 449.23 T |
8651 |
|
|
0 14 Q |
8652 |
|
|
(\227) 42 422.57 T |
8653 |
|
|
0 12 Q |
8654 |
|
|
(oacute) 96 423.9 T |
8655 |
|
|
(oacute) 150 423.9 T |
8656 |
|
|
(F3) 240 423.9 T |
8657 |
|
|
(00F3) 294 423.9 T |
8658 |
|
|
0 10 Q |
8659 |
|
|
(LA) 348 425.23 T |
8660 |
|
|
(TIN SMALL LETTER O ACUTE) 360.21 425.23 T |
8661 |
|
|
0 14 Q |
8662 |
|
|
(\231) 42 398.57 T |
8663 |
|
|
0 12 Q |
8664 |
|
|
(ocirc) 96 399.9 T |
8665 |
|
|
(ocircum\337ex) 150 399.9 T |
8666 |
|
|
(F4) 240 399.9 T |
8667 |
|
|
(00F4) 294 399.9 T |
8668 |
|
|
0 10 Q |
8669 |
|
|
(LA) 348 401.23 T |
8670 |
|
|
(TIN SMALL LETTER O CIRCUMFLEX) 360.21 401.23 T |
8671 |
|
|
0 14 Q |
8672 |
|
|
(\233) 42 373.57 T |
8673 |
|
|
0 12 Q |
8674 |
|
|
(otilde) 96 375.9 T |
8675 |
|
|
(otilde) 150 375.9 T |
8676 |
|
|
(F5) 240 375.9 T |
8677 |
|
|
(00F5) 294 375.9 T |
8678 |
|
|
0 10 Q |
8679 |
|
|
(LA) 348 377.23 T |
8680 |
|
|
(TIN SMALL LETTER O TILDE) 360.21 377.23 T |
8681 |
|
|
0 14 Q |
8682 |
|
|
(\232) 42 350.57 T |
8683 |
|
|
0 12 Q |
8684 |
|
|
(ouml) 96 351.9 T |
8685 |
|
|
(odieresis) 150 351.9 T |
8686 |
|
|
(F6) 240 351.9 T |
8687 |
|
|
(00F6) 294 351.9 T |
8688 |
|
|
0 10 Q |
8689 |
|
|
(LA) 348 353.23 T |
8690 |
|
|
(TIN SMALL LETTER O DIAERESIS) 360.21 353.23 T |
8691 |
|
|
9 14 Q |
8692 |
|
|
(\270) 42 326.57 T |
8693 |
|
|
0 12 Q |
8694 |
|
|
(divide) 96 327.9 T |
8695 |
|
|
(divide) 150 327.9 T |
8696 |
|
|
(F7) 240 327.9 T |
8697 |
|
|
(00F7) 294 327.9 T |
8698 |
|
|
0 10 Q |
8699 |
|
|
(DIVISION SIGN) 348 329.23 T |
8700 |
|
|
0 14 Q |
8701 |
|
|
(\277) 42 302.57 T |
8702 |
|
|
0 12 Q |
8703 |
|
|
(oslash) 96 303.9 T |
8704 |
|
|
(oslash) 150 303.9 T |
8705 |
|
|
(F8) 240 303.9 T |
8706 |
|
|
(00F8) 294 303.9 T |
8707 |
|
|
0 10 Q |
8708 |
|
|
(LA) 348 305.23 T |
8709 |
|
|
(TIN SMALL LETTER O SLASH) 360.21 305.23 T |
8710 |
|
|
0 14 Q |
8711 |
|
|
(\235) 42 278.57 T |
8712 |
|
|
0 12 Q |
8713 |
|
|
(ugrave) 96 279.9 T |
8714 |
|
|
(ugrave) 150 279.9 T |
8715 |
|
|
(F9) 240 279.9 T |
8716 |
|
|
(00F9) 294 279.9 T |
8717 |
|
|
0 10 Q |
8718 |
|
|
(LA) 348 281.23 T |
8719 |
|
|
(TIN SMALL LETTER U GRA) 360.21 281.23 T |
8720 |
|
|
(VE) 484.95 281.23 T |
8721 |
|
|
0 14 Q |
8722 |
|
|
(\234) 42 254.57 T |
8723 |
|
|
0 12 Q |
8724 |
|
|
(uacute) 96 255.9 T |
8725 |
|
|
(uacute) 150 255.9 T |
8726 |
|
|
(F) 240 255.9 T |
8727 |
|
|
(A) 245.78 255.9 T |
8728 |
|
|
(00F) 294 255.9 T |
8729 |
|
|
(A) 311.77 255.9 T |
8730 |
|
|
0 10 Q |
8731 |
|
|
(LA) 348 257.23 T |
8732 |
|
|
(TIN SMALL LETTER U ACUTE) 360.21 257.23 T |
8733 |
|
|
0 14 Q |
8734 |
|
|
(\236) 42 230.57 T |
8735 |
|
|
0 12 Q |
8736 |
|
|
(ucirc) 96 231.9 T |
8737 |
|
|
(ucircum\337ex) 150 231.9 T |
8738 |
|
|
(FB) 240 231.9 T |
8739 |
|
|
(00FB) 294 231.9 T |
8740 |
|
|
0 10 Q |
8741 |
|
|
(LA) 348 233.23 T |
8742 |
|
|
(TIN SMALL LETTER U CIRCUMFLEX) 360.21 233.23 T |
8743 |
|
|
0 14 Q |
8744 |
|
|
(\237) 42 206.57 T |
8745 |
|
|
0 12 Q |
8746 |
|
|
(uuml) 96 207.9 T |
8747 |
|
|
(udieresis) 150 207.9 T |
8748 |
|
|
(FC) 240 207.9 T |
8749 |
|
|
(00FC) 294 207.9 T |
8750 |
|
|
0 10 Q |
8751 |
|
|
(LA) 348 209.23 T |
8752 |
|
|
(TIN SMALL LETTER U DIAERESIS) 360.21 209.23 T |
8753 |
|
|
0 12 Q |
8754 |
|
|
(yacute) 96 183.9 T |
8755 |
|
|
(yacute) 150 183.9 T |
8756 |
|
|
(FD) 240 183.9 T |
8757 |
|
|
(00FD) 294 183.9 T |
8758 |
|
|
0 10 Q |
8759 |
|
|
(LA) 348 185.23 T |
8760 |
|
|
(TIN SMALL LETTER Y ACUTE) 360.21 185.23 T |
8761 |
|
|
0 12 Q |
8762 |
|
|
(thorn) 96 161.9 T |
8763 |
|
|
(thorn) 150 161.9 T |
8764 |
|
|
(FE) 240 161.9 T |
8765 |
|
|
(00FE) 294 161.9 T |
8766 |
|
|
0 10 Q |
8767 |
|
|
(LA) 348 163.23 T |
8768 |
|
|
(TIN SMALL LETTER THORN) 360.21 163.23 T |
8769 |
|
|
0 14 Q |
8770 |
|
|
(\330) 42 138.57 T |
8771 |
|
|
0 12 Q |
8772 |
|
|
(yuml) 96 139.9 T |
8773 |
|
|
(ydieresis) 150 139.9 T |
8774 |
|
|
(FF) 240 139.9 T |
8775 |
|
|
(00FF) 294 139.9 T |
8776 |
|
|
0 10 Q |
8777 |
|
|
(LA) 348 141.23 T |
8778 |
|
|
(TIN SMALL LETTER Y DIAERESIS) 360.21 141.23 T |
8779 |
|
|
5 12 Q |
8780 |
|
|
(Symbol) 43.67 764.9 T |
8781 |
|
|
(ISO) 106.67 771.9 T |
8782 |
|
|
(8879) 105.01 757.9 T |
8783 |
|
|
(Adobe name) 156.85 764.9 T |
8784 |
|
|
(Adobe) 244.34 771.9 T |
8785 |
|
|
(Hex) 250.67 757.9 T |
8786 |
|
|
(Unicode) 294.01 764.9 T |
8787 |
|
|
(Unicode name) 413.52 764.9 T |
8788 |
|
|
36 787.65 36 130.15 2 L |
8789 |
|
|
V |
8790 |
|
|
0.5 H |
8791 |
|
|
0 Z |
8792 |
|
|
N |
8793 |
|
|
90 788.15 90 129.65 2 L |
8794 |
|
|
V |
8795 |
|
|
N |
8796 |
|
|
144 788.15 144 129.65 2 L |
8797 |
|
|
V |
8798 |
|
|
N |
8799 |
|
|
234 788.15 234 129.65 2 L |
8800 |
|
|
V |
8801 |
|
|
N |
8802 |
|
|
288 788.15 288 129.65 2 L |
8803 |
|
|
V |
8804 |
|
|
N |
8805 |
|
|
342 788.15 342 129.65 2 L |
8806 |
|
|
V |
8807 |
|
|
N |
8808 |
|
|
558 787.65 558 130.15 2 L |
8809 |
|
|
V |
8810 |
|
|
N |
8811 |
|
|
35.75 787.9 558.25 787.9 2 L |
8812 |
|
|
V |
8813 |
|
|
N |
8814 |
|
|
36.25 749.15 557.75 749.15 2 L |
8815 |
|
|
V |
8816 |
|
|
N |
8817 |
|
|
36.25 746.65 557.75 746.65 2 L |
8818 |
|
|
V |
8819 |
|
|
N |
8820 |
|
|
35.75 723.9 558.25 723.9 2 L |
8821 |
|
|
V |
8822 |
|
|
N |
8823 |
|
|
35.75 699.9 558.25 699.9 2 L |
8824 |
|
|
V |
8825 |
|
|
N |
8826 |
|
|
35.75 675.9 558.25 675.9 2 L |
8827 |
|
|
V |
8828 |
|
|
N |
8829 |
|
|
35.75 651.9 558.25 651.9 2 L |
8830 |
|
|
V |
8831 |
|
|
N |
8832 |
|
|
35.75 627.9 558.25 627.9 2 L |
8833 |
|
|
V |
8834 |
|
|
N |
8835 |
|
|
35.75 603.9 558.25 603.9 2 L |
8836 |
|
|
V |
8837 |
|
|
N |
8838 |
|
|
35.75 579.9 558.25 579.9 2 L |
8839 |
|
|
V |
8840 |
|
|
N |
8841 |
|
|
35.75 555.9 558.25 555.9 2 L |
8842 |
|
|
V |
8843 |
|
|
N |
8844 |
|
|
35.75 531.9 558.25 531.9 2 L |
8845 |
|
|
V |
8846 |
|
|
N |
8847 |
|
|
35.75 507.9 558.25 507.9 2 L |
8848 |
|
|
V |
8849 |
|
|
N |
8850 |
|
|
35.75 485.9 558.25 485.9 2 L |
8851 |
|
|
V |
8852 |
|
|
N |
8853 |
|
|
35.75 461.9 558.25 461.9 2 L |
8854 |
|
|
V |
8855 |
|
|
N |
8856 |
|
|
35.75 437.9 558.25 437.9 2 L |
8857 |
|
|
V |
8858 |
|
|
N |
8859 |
|
|
35.75 413.9 558.25 413.9 2 L |
8860 |
|
|
V |
8861 |
|
|
N |
8862 |
|
|
35.75 389.9 558.25 389.9 2 L |
8863 |
|
|
V |
8864 |
|
|
N |
8865 |
|
|
35.75 365.9 558.25 365.9 2 L |
8866 |
|
|
V |
8867 |
|
|
N |
8868 |
|
|
35.75 341.9 558.25 341.9 2 L |
8869 |
|
|
V |
8870 |
|
|
N |
8871 |
|
|
35.75 317.9 558.25 317.9 2 L |
8872 |
|
|
V |
8873 |
|
|
N |
8874 |
|
|
35.75 293.9 558.25 293.9 2 L |
8875 |
|
|
V |
8876 |
|
|
N |
8877 |
|
|
35.75 269.9 558.25 269.9 2 L |
8878 |
|
|
V |
8879 |
|
|
N |
8880 |
|
|
35.75 245.9 558.25 245.9 2 L |
8881 |
|
|
V |
8882 |
|
|
N |
8883 |
|
|
35.75 221.9 558.25 221.9 2 L |
8884 |
|
|
V |
8885 |
|
|
N |
8886 |
|
|
35.75 197.9 558.25 197.9 2 L |
8887 |
|
|
V |
8888 |
|
|
N |
8889 |
|
|
35.75 175.9 558.25 175.9 2 L |
8890 |
|
|
V |
8891 |
|
|
N |
8892 |
|
|
35.75 153.9 558.25 153.9 2 L |
8893 |
|
|
V |
8894 |
|
|
N |
8895 |
|
|
35.75 129.9 558.25 129.9 2 L |
8896 |
|
|
V |
8897 |
|
|
N |
8898 |
|
|
FMENDPAGE |
8899 |
|
|
%%EndPage: "50" 55 |
8900 |
|
|
%%Page: "51" 55 |
8901 |
|
|
595.3 841.9 0 FMBEGINPAGE |
8902 |
|
|
0 10 Q |
8903 |
|
|
0 X |
8904 |
|
|
0 K |
8905 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
8906 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
8907 |
|
|
(51) 292.65 70.23 T |
8908 |
|
|
5 18 Q |
8909 |
|
|
(Adobe Symbol Font Entities) 188.8 729.9 T |
8910 |
|
|
9 14 Q |
8911 |
|
|
(") 42 704.57 T |
8912 |
|
|
0 12 Q |
8913 |
|
|
(forall) 96 705.9 T |
8914 |
|
|
(universal) 150 705.9 T |
8915 |
|
|
(22) 240 705.9 T |
8916 |
|
|
(2200) 294 705.9 T |
8917 |
|
|
0 10 Q |
8918 |
|
|
(FOR ALL) 348 707.23 T |
8919 |
|
|
9 14 Q |
8920 |
|
|
($) 42 680.57 T |
8921 |
|
|
0 12 Q |
8922 |
|
|
(exist) 96 681.9 T |
8923 |
|
|
(existential) 150 681.9 T |
8924 |
|
|
(24) 240 681.9 T |
8925 |
|
|
(2203) 294 681.9 T |
8926 |
|
|
0 10 Q |
8927 |
|
|
(THERE EXISTS) 348 683.23 T |
8928 |
|
|
9 12 Q |
8929 |
|
|
(') 42 657.9 T |
8930 |
|
|
0 F |
8931 |
|
|
(ni) 96 657.9 T |
8932 |
|
|
(suchthat) 150 657.9 T |
8933 |
|
|
(27) 240 657.9 T |
8934 |
|
|
(220B) 294 657.9 T |
8935 |
|
|
0 10 Q |
8936 |
|
|
(CONT) 348 659.23 T |
8937 |
|
|
(AINS AS MEMBER) 374.4 659.23 T |
8938 |
|
|
9 14 Q |
8939 |
|
|
(*) 42 634.57 T |
8940 |
|
|
0 12 Q |
8941 |
|
|
(lowast) 96 635.9 T |
8942 |
|
|
(asteriskmath) 150 635.9 T |
8943 |
|
|
(2A) 240 635.9 T |
8944 |
|
|
(2217) 294 635.9 T |
8945 |
|
|
0 10 Q |
8946 |
|
|
(ASTERISK OPERA) 348 637.23 T |
8947 |
|
|
(T) 429.9 637.23 T |
8948 |
|
|
(OR) 435.83 637.23 T |
8949 |
|
|
9 14 Q |
8950 |
|
|
(-) 42 610.57 T |
8951 |
|
|
0 12 Q |
8952 |
|
|
(minus) 96 611.9 T |
8953 |
|
|
(minus) 150 611.9 T |
8954 |
|
|
(2D) 240 611.9 T |
8955 |
|
|
(2212) 294 611.9 T |
8956 |
|
|
0 10 Q |
8957 |
|
|
(MINUS SIGN) 348 613.23 T |
8958 |
|
|
9 14 Q |
8959 |
|
|
(@) 42 586.57 T |
8960 |
|
|
0 12 Q |
8961 |
|
|
(cong) 96 587.9 T |
8962 |
|
|
(congruent) 150 587.9 T |
8963 |
|
|
(40) 240 587.9 T |
8964 |
|
|
(2245) 294 587.9 T |
8965 |
|
|
0 10 Q |
8966 |
|
|
(APPROXIMA) 348 589.23 T |
8967 |
|
|
(TEL) 405.75 589.23 T |
8968 |
|
|
(Y EQUAL T) 423.07 589.23 T |
8969 |
|
|
(O) 475.07 589.23 T |
8970 |
|
|
9 14 Q |
8971 |
|
|
(A) 42 562.57 T |
8972 |
|
|
0 12 Q |
8973 |
|
|
(Agr) 96 563.9 T |
8974 |
|
|
(Alpha) 150 563.9 T |
8975 |
|
|
(41) 240 563.9 T |
8976 |
|
|
(0391) 294 563.9 T |
8977 |
|
|
0 10 Q |
8978 |
|
|
(GREEK CAPIT) 348 565.23 T |
8979 |
|
|
(AL LETTER ALPHA) 411.89 565.23 T |
8980 |
|
|
9 14 Q |
8981 |
|
|
(B) 42 538.57 T |
8982 |
|
|
0 12 Q |
8983 |
|
|
(Bgr) 96 539.9 T |
8984 |
|
|
(Beta) 150 539.9 T |
8985 |
|
|
(42) 240 539.9 T |
8986 |
|
|
(0392) 294 539.9 T |
8987 |
|
|
0 10 Q |
8988 |
|
|
(GREEK CAPIT) 348 541.23 T |
8989 |
|
|
(AL LETTER BET) 411.89 541.23 T |
8990 |
|
|
(A) 485.48 541.23 T |
8991 |
|
|
9 14 Q |
8992 |
|
|
(C) 42 514.57 T |
8993 |
|
|
0 12 Q |
8994 |
|
|
(KHgr) 96 515.9 T |
8995 |
|
|
(Chi) 150 515.9 T |
8996 |
|
|
(43) 240 515.9 T |
8997 |
|
|
(03A7) 294 515.9 T |
8998 |
|
|
0 10 Q |
8999 |
|
|
(GREEK CAPIT) 348 517.23 T |
9000 |
|
|
(AL LETTER CHI) 411.89 517.23 T |
9001 |
|
|
9 14 Q |
9002 |
|
|
(D) 42 490.57 T |
9003 |
|
|
0 12 Q |
9004 |
|
|
(Delta) 96 491.9 T |
9005 |
|
|
(Delta) 150 491.9 T |
9006 |
|
|
(44) 240 491.9 T |
9007 |
|
|
(0394) 294 491.9 T |
9008 |
|
|
0 10 Q |
9009 |
|
|
(GREEK CAPIT) 348 493.23 T |
9010 |
|
|
(AL LETTER DEL) 411.89 493.23 T |
9011 |
|
|
(T) 485.91 493.23 T |
9012 |
|
|
(A) 491.22 493.23 T |
9013 |
|
|
9 14 Q |
9014 |
|
|
(E) 42 466.57 T |
9015 |
|
|
0 12 Q |
9016 |
|
|
(Egr) 96 467.9 T |
9017 |
|
|
(Epsilon) 150 467.9 T |
9018 |
|
|
(45) 240 467.9 T |
9019 |
|
|
(0395) 294 467.9 T |
9020 |
|
|
0 10 Q |
9021 |
|
|
(GREEK CAPIT) 348 469.23 T |
9022 |
|
|
(AL LETTER EPSILON) 411.89 469.23 T |
9023 |
|
|
9 14 Q |
9024 |
|
|
(F) 42 442.57 T |
9025 |
|
|
0 12 Q |
9026 |
|
|
(PHgr) 96 443.9 T |
9027 |
|
|
(Phi) 150 443.9 T |
9028 |
|
|
(46) 240 443.9 T |
9029 |
|
|
(03A6) 294 443.9 T |
9030 |
|
|
0 10 Q |
9031 |
|
|
(GREEK CAPIT) 348 445.23 T |
9032 |
|
|
(AL LETTER PHI) 411.89 445.23 T |
9033 |
|
|
9 14 Q |
9034 |
|
|
(G) 42 418.57 T |
9035 |
|
|
0 12 Q |
9036 |
|
|
(Gamma) 96 419.9 T |
9037 |
|
|
(Gamma) 150 419.9 T |
9038 |
|
|
(47) 240 419.9 T |
9039 |
|
|
(0393) 294 419.9 T |
9040 |
|
|
0 10 Q |
9041 |
|
|
(GREEK CAPIT) 348 421.23 T |
9042 |
|
|
(AL LETTER GAMMA) 411.89 421.23 T |
9043 |
|
|
9 14 Q |
9044 |
|
|
(H) 42 394.57 T |
9045 |
|
|
0 12 Q |
9046 |
|
|
(EEgr) 96 395.9 T |
9047 |
|
|
(Eta) 150 395.9 T |
9048 |
|
|
(48) 240 395.9 T |
9049 |
|
|
(0397) 294 395.9 T |
9050 |
|
|
0 10 Q |
9051 |
|
|
(GREEK CAPIT) 348 397.23 T |
9052 |
|
|
(AL LETTER ET) 411.89 397.23 T |
9053 |
|
|
(A) 478.82 397.23 T |
9054 |
|
|
9 14 Q |
9055 |
|
|
(I) 42 370.57 T |
9056 |
|
|
0 12 Q |
9057 |
|
|
(Igr) 96 371.9 T |
9058 |
|
|
(Iota) 150 371.9 T |
9059 |
|
|
(49) 240 371.9 T |
9060 |
|
|
(0399) 294 371.9 T |
9061 |
|
|
0 10 Q |
9062 |
|
|
(GREEK CAPIT) 348 373.23 T |
9063 |
|
|
(AL LETTER IOT) 411.89 373.23 T |
9064 |
|
|
(A) 483.26 373.23 T |
9065 |
|
|
9 14 Q |
9066 |
|
|
(J) 42 346.57 T |
9067 |
|
|
0 12 Q |
9068 |
|
|
(thetav) 96 347.9 T |
9069 |
|
|
(theta1) 150 347.9 T |
9070 |
|
|
(4A) 240 347.9 T |
9071 |
|
|
(03D1) 294 347.9 T |
9072 |
|
|
0 10 Q |
9073 |
|
|
(GREEK SMALL LETTER SCRIPT THET) 348 349.23 T |
9074 |
|
|
(A) 520.99 349.23 T |
9075 |
|
|
9 14 Q |
9076 |
|
|
(K) 42 322.57 T |
9077 |
|
|
0 12 Q |
9078 |
|
|
(Kgr) 96 323.9 T |
9079 |
|
|
(Kappa) 150 323.9 T |
9080 |
|
|
(4B) 240 323.9 T |
9081 |
|
|
(039A) 294 323.9 T |
9082 |
|
|
0 10 Q |
9083 |
|
|
(GREEK CAPIT) 348 325.23 T |
9084 |
|
|
(AL LETTER KAPP) 411.89 325.23 T |
9085 |
|
|
(A) 492.03 325.23 T |
9086 |
|
|
9 14 Q |
9087 |
|
|
(L) 42 298.57 T |
9088 |
|
|
0 12 Q |
9089 |
|
|
(Lambda) 96 299.9 T |
9090 |
|
|
(Lambda) 150 299.9 T |
9091 |
|
|
(4C) 240 299.9 T |
9092 |
|
|
(039B) 294 299.9 T |
9093 |
|
|
0 10 Q |
9094 |
|
|
(GREEK CAPIT) 348 301.23 T |
9095 |
|
|
(AL LETTER LAMBDA) 411.89 301.23 T |
9096 |
|
|
9 14 Q |
9097 |
|
|
(M) 42 274.57 T |
9098 |
|
|
0 12 Q |
9099 |
|
|
(Mgr) 96 275.9 T |
9100 |
|
|
(Mu) 150 275.9 T |
9101 |
|
|
(4D) 240 275.9 T |
9102 |
|
|
(039C) 294 275.9 T |
9103 |
|
|
0 10 Q |
9104 |
|
|
(GREEK CAPIT) 348 277.23 T |
9105 |
|
|
(AL LETTER MU) 411.89 277.23 T |
9106 |
|
|
9 14 Q |
9107 |
|
|
(N) 42 250.57 T |
9108 |
|
|
0 12 Q |
9109 |
|
|
(Ngr) 96 251.9 T |
9110 |
|
|
(Nu) 150 251.9 T |
9111 |
|
|
(4E) 240 251.9 T |
9112 |
|
|
(039D) 294 251.9 T |
9113 |
|
|
0 10 Q |
9114 |
|
|
(GREEK CAPIT) 348 253.23 T |
9115 |
|
|
(AL LETTER NU) 411.89 253.23 T |
9116 |
|
|
9 14 Q |
9117 |
|
|
(O) 42 226.57 T |
9118 |
|
|
0 12 Q |
9119 |
|
|
(Ogr) 96 227.9 T |
9120 |
|
|
(Omicron) 150 227.9 T |
9121 |
|
|
(4F) 240 227.9 T |
9122 |
|
|
(039F) 294 227.9 T |
9123 |
|
|
0 10 Q |
9124 |
|
|
(GREEK CAPIT) 348 229.23 T |
9125 |
|
|
(AL LETTER OMICRON) 411.89 229.23 T |
9126 |
|
|
9 14 Q |
9127 |
|
|
(P) 42 202.57 T |
9128 |
|
|
0 12 Q |
9129 |
|
|
(Pi) 96 203.9 T |
9130 |
|
|
(Pi) 150 203.9 T |
9131 |
|
|
(50) 240 203.9 T |
9132 |
|
|
(03A0) 294 203.9 T |
9133 |
|
|
0 10 Q |
9134 |
|
|
(GREEK CAPIT) 348 205.23 T |
9135 |
|
|
(AL LETTER Pl) 411.89 205.23 T |
9136 |
|
|
9 14 Q |
9137 |
|
|
(Q) 42 178.57 T |
9138 |
|
|
0 12 Q |
9139 |
|
|
(Theta) 96 179.9 T |
9140 |
|
|
(Theta) 150 179.9 T |
9141 |
|
|
(51) 240 179.9 T |
9142 |
|
|
(0398) 294 179.9 T |
9143 |
|
|
0 10 Q |
9144 |
|
|
(GREEK CAPIT) 348 181.23 T |
9145 |
|
|
(AL LETTER THET) 411.89 181.23 T |
9146 |
|
|
(A) 492.14 181.23 T |
9147 |
|
|
9 14 Q |
9148 |
|
|
(R) 42 154.57 T |
9149 |
|
|
0 12 Q |
9150 |
|
|
(Rgr) 96 155.9 T |
9151 |
|
|
(Rho) 150 155.9 T |
9152 |
|
|
(52) 240 155.9 T |
9153 |
|
|
(03A1) 294 155.9 T |
9154 |
|
|
0 10 Q |
9155 |
|
|
(GREEK CAPIT) 348 157.23 T |
9156 |
|
|
(AL LETTER RHO) 411.89 157.23 T |
9157 |
|
|
9 14 Q |
9158 |
|
|
(S) 42 130.57 T |
9159 |
|
|
0 12 Q |
9160 |
|
|
(Sigma) 96 131.9 T |
9161 |
|
|
(Sigma) 150 131.9 T |
9162 |
|
|
(53) 240 131.9 T |
9163 |
|
|
(03A3) 294 131.9 T |
9164 |
|
|
0 10 Q |
9165 |
|
|
(GREEK CAPIT) 348 133.23 T |
9166 |
|
|
(AL LETTER SIGMA) 411.89 133.23 T |
9167 |
|
|
9 14 Q |
9168 |
|
|
(T) 42 106.57 T |
9169 |
|
|
0 12 Q |
9170 |
|
|
(Tgr) 96 107.9 T |
9171 |
|
|
(T) 150 107.9 T |
9172 |
|
|
(au) 156.49 107.9 T |
9173 |
|
|
(54) 240 107.9 T |
9174 |
|
|
(03A4) 294 107.9 T |
9175 |
|
|
0 10 Q |
9176 |
|
|
(GREEK CAPIT) 348 109.23 T |
9177 |
|
|
(AL LETTER T) 411.89 109.23 T |
9178 |
|
|
(AU) 472.71 109.23 T |
9179 |
|
|
5 12 Q |
9180 |
|
|
(Symbol) 43.67 764.9 T |
9181 |
|
|
(ISO) 106.67 771.9 T |
9182 |
|
|
(8879) 105.01 757.9 T |
9183 |
|
|
(Adobe name) 156.85 764.9 T |
9184 |
|
|
(Adobe) 244.34 771.9 T |
9185 |
|
|
(Hex) 250.67 757.9 T |
9186 |
|
|
(Unicode) 294.01 764.9 T |
9187 |
|
|
(Unicode name) 413.52 764.9 T |
9188 |
|
|
36 787.65 36 98.15 2 L |
9189 |
|
|
V |
9190 |
|
|
0.5 H |
9191 |
|
|
0 Z |
9192 |
|
|
N |
9193 |
|
|
90 788.15 90 749.4 2 L |
9194 |
|
|
V |
9195 |
|
|
N |
9196 |
|
|
90 720.15 90 97.65 2 L |
9197 |
|
|
V |
9198 |
|
|
N |
9199 |
|
|
144 788.15 144 749.4 2 L |
9200 |
|
|
V |
9201 |
|
|
N |
9202 |
|
|
144 720.15 144 97.65 2 L |
9203 |
|
|
V |
9204 |
|
|
N |
9205 |
|
|
234 788.15 234 749.4 2 L |
9206 |
|
|
V |
9207 |
|
|
N |
9208 |
|
|
234 720.15 234 97.65 2 L |
9209 |
|
|
V |
9210 |
|
|
N |
9211 |
|
|
288 788.15 288 749.4 2 L |
9212 |
|
|
V |
9213 |
|
|
N |
9214 |
|
|
288 720.15 288 97.65 2 L |
9215 |
|
|
V |
9216 |
|
|
N |
9217 |
|
|
342 788.15 342 749.4 2 L |
9218 |
|
|
V |
9219 |
|
|
N |
9220 |
|
|
342 720.15 342 97.65 2 L |
9221 |
|
|
V |
9222 |
|
|
N |
9223 |
|
|
558 787.65 558 98.15 2 L |
9224 |
|
|
V |
9225 |
|
|
N |
9226 |
|
|
35.75 787.9 558.25 787.9 2 L |
9227 |
|
|
V |
9228 |
|
|
N |
9229 |
|
|
36.25 749.15 557.75 749.15 2 L |
9230 |
|
|
V |
9231 |
|
|
N |
9232 |
|
|
36.25 746.65 557.75 746.65 2 L |
9233 |
|
|
V |
9234 |
|
|
N |
9235 |
|
|
35.75 719.9 558.25 719.9 2 L |
9236 |
|
|
V |
9237 |
|
|
N |
9238 |
|
|
35.75 695.9 558.25 695.9 2 L |
9239 |
|
|
V |
9240 |
|
|
N |
9241 |
|
|
35.75 671.9 558.25 671.9 2 L |
9242 |
|
|
V |
9243 |
|
|
N |
9244 |
|
|
35.75 649.9 558.25 649.9 2 L |
9245 |
|
|
V |
9246 |
|
|
N |
9247 |
|
|
35.75 625.9 558.25 625.9 2 L |
9248 |
|
|
V |
9249 |
|
|
N |
9250 |
|
|
35.75 601.9 558.25 601.9 2 L |
9251 |
|
|
V |
9252 |
|
|
N |
9253 |
|
|
35.75 577.9 558.25 577.9 2 L |
9254 |
|
|
V |
9255 |
|
|
N |
9256 |
|
|
35.75 553.9 558.25 553.9 2 L |
9257 |
|
|
V |
9258 |
|
|
N |
9259 |
|
|
35.75 529.9 558.25 529.9 2 L |
9260 |
|
|
V |
9261 |
|
|
N |
9262 |
|
|
35.75 505.9 558.25 505.9 2 L |
9263 |
|
|
V |
9264 |
|
|
N |
9265 |
|
|
35.75 481.9 558.25 481.9 2 L |
9266 |
|
|
V |
9267 |
|
|
N |
9268 |
|
|
35.75 457.9 558.25 457.9 2 L |
9269 |
|
|
V |
9270 |
|
|
N |
9271 |
|
|
35.75 433.9 558.25 433.9 2 L |
9272 |
|
|
V |
9273 |
|
|
N |
9274 |
|
|
35.75 409.9 558.25 409.9 2 L |
9275 |
|
|
V |
9276 |
|
|
N |
9277 |
|
|
35.75 385.9 558.25 385.9 2 L |
9278 |
|
|
V |
9279 |
|
|
N |
9280 |
|
|
35.75 361.9 558.25 361.9 2 L |
9281 |
|
|
V |
9282 |
|
|
N |
9283 |
|
|
35.75 337.9 558.25 337.9 2 L |
9284 |
|
|
V |
9285 |
|
|
N |
9286 |
|
|
35.75 313.9 558.25 313.9 2 L |
9287 |
|
|
V |
9288 |
|
|
N |
9289 |
|
|
35.75 289.9 558.25 289.9 2 L |
9290 |
|
|
V |
9291 |
|
|
N |
9292 |
|
|
35.75 265.9 558.25 265.9 2 L |
9293 |
|
|
V |
9294 |
|
|
N |
9295 |
|
|
35.75 241.9 558.25 241.9 2 L |
9296 |
|
|
V |
9297 |
|
|
N |
9298 |
|
|
35.75 217.9 558.25 217.9 2 L |
9299 |
|
|
V |
9300 |
|
|
N |
9301 |
|
|
35.75 193.9 558.25 193.9 2 L |
9302 |
|
|
V |
9303 |
|
|
N |
9304 |
|
|
35.75 169.9 558.25 169.9 2 L |
9305 |
|
|
V |
9306 |
|
|
N |
9307 |
|
|
35.75 145.9 558.25 145.9 2 L |
9308 |
|
|
V |
9309 |
|
|
N |
9310 |
|
|
35.75 121.9 558.25 121.9 2 L |
9311 |
|
|
V |
9312 |
|
|
N |
9313 |
|
|
35.75 97.9 558.25 97.9 2 L |
9314 |
|
|
V |
9315 |
|
|
N |
9316 |
|
|
FMENDPAGE |
9317 |
|
|
%%EndPage: "51" 56 |
9318 |
|
|
%%Page: "52" 56 |
9319 |
|
|
595.3 841.9 0 FMBEGINPAGE |
9320 |
|
|
0 10 Q |
9321 |
|
|
0 X |
9322 |
|
|
0 K |
9323 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
9324 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
9325 |
|
|
(52) 292.65 70.23 T |
9326 |
|
|
9 14 Q |
9327 |
|
|
(U) 42 732.57 T |
9328 |
|
|
0 12 Q |
9329 |
|
|
(Upsi) 96 733.9 T |
9330 |
|
|
(Upsilon) 150 733.9 T |
9331 |
|
|
(55) 240 733.9 T |
9332 |
|
|
(03A5) 294 733.9 T |
9333 |
|
|
0 10 Q |
9334 |
|
|
(GREEK CAPIT) 348 735.23 T |
9335 |
|
|
(AL LETTER UPSILON) 411.89 735.23 T |
9336 |
|
|
9 14 Q |
9337 |
|
|
(V) 42 710.57 T |
9338 |
|
|
0 12 Q |
9339 |
|
|
(sfgr) 96 709.9 T |
9340 |
|
|
(sigma1) 150 709.9 T |
9341 |
|
|
(56) 240 709.9 T |
9342 |
|
|
(03C2) 294 709.9 T |
9343 |
|
|
0 10 Q |
9344 |
|
|
(GREEK SMALL LETTER FINAL SIGMA) 348 711.23 T |
9345 |
|
|
9 14 Q |
9346 |
|
|
(W) 42 684.57 T |
9347 |
|
|
0 12 Q |
9348 |
|
|
(Omega) 96 685.9 T |
9349 |
|
|
(Omega) 150 685.9 T |
9350 |
|
|
(57) 240 685.9 T |
9351 |
|
|
(03A9) 294 685.9 T |
9352 |
|
|
0 10 Q |
9353 |
|
|
(GREEK CAPIT) 348 687.23 T |
9354 |
|
|
(AL LETTER OMEGA) 411.89 687.23 T |
9355 |
|
|
9 14 Q |
9356 |
|
|
(X) 42 660.57 T |
9357 |
|
|
0 12 Q |
9358 |
|
|
(Xi) 96 661.9 T |
9359 |
|
|
(Xi) 150 661.9 T |
9360 |
|
|
(58) 240 661.9 T |
9361 |
|
|
(039E) 294 661.9 T |
9362 |
|
|
0 10 Q |
9363 |
|
|
(GREEK CAPIT) 348 663.23 T |
9364 |
|
|
(AL LETTER Xl) 411.89 663.23 T |
9365 |
|
|
9 14 Q |
9366 |
|
|
(Y) 42 636.57 T |
9367 |
|
|
0 12 Q |
9368 |
|
|
(Psi) 96 637.9 T |
9369 |
|
|
(Psi) 150 637.9 T |
9370 |
|
|
(59) 240 637.9 T |
9371 |
|
|
(03A8) 294 637.9 T |
9372 |
|
|
0 10 Q |
9373 |
|
|
(GREEK CAPIT) 348 639.23 T |
9374 |
|
|
(AL LETTER PSI) 411.89 639.23 T |
9375 |
|
|
9 14 Q |
9376 |
|
|
(Z) 42 612.57 T |
9377 |
|
|
0 12 Q |
9378 |
|
|
(Zgr) 96 613.9 T |
9379 |
|
|
(Zeta) 150 613.9 T |
9380 |
|
|
(5A) 240 613.9 T |
9381 |
|
|
(0396) 294 613.9 T |
9382 |
|
|
0 10 Q |
9383 |
|
|
(GREEK CAPIT) 348 615.23 T |
9384 |
|
|
(AL LETTER ZET) 411.89 615.23 T |
9385 |
|
|
(A) 484.92 615.23 T |
9386 |
|
|
9 14 Q |
9387 |
|
|
(\134) 42 588.57 T |
9388 |
|
|
0 12 Q |
9389 |
|
|
(there4) 96 589.9 T |
9390 |
|
|
(therefore) 150 589.9 T |
9391 |
|
|
(5C) 240 589.9 T |
9392 |
|
|
(2234) 294 589.9 T |
9393 |
|
|
0 10 Q |
9394 |
|
|
(THEREFORE) 348 591.23 T |
9395 |
|
|
9 14 Q |
9396 |
|
|
(^) 42 564.57 T |
9397 |
|
|
0 12 Q |
9398 |
|
|
(perp) 96 565.9 T |
9399 |
|
|
(perpendicular) 150 565.9 T |
9400 |
|
|
(5E) 240 565.9 T |
9401 |
|
|
(22A5) 294 565.9 T |
9402 |
|
|
0 10 Q |
9403 |
|
|
(UP T) 348 567.23 T |
9404 |
|
|
(ACK) 368.58 567.23 T |
9405 |
|
|
9 12 Q |
9406 |
|
|
(`) 42 541.9 T |
9407 |
|
|
0 F |
9408 |
|
|
(radicalex) 150 541.9 T |
9409 |
|
|
(60) 240 541.9 T |
9410 |
|
|
(203E) 294 541.9 T |
9411 |
|
|
0 10 Q |
9412 |
|
|
(SP) 348 543.23 T |
9413 |
|
|
(ACING OVERSCORE) 358.19 543.23 T |
9414 |
|
|
9 14 Q |
9415 |
|
|
(a) 42 518.57 T |
9416 |
|
|
0 12 Q |
9417 |
|
|
(alpha) 96 519.9 T |
9418 |
|
|
(alpha) 150 519.9 T |
9419 |
|
|
(61) 240 519.9 T |
9420 |
|
|
(03B1) 294 519.9 T |
9421 |
|
|
0 10 Q |
9422 |
|
|
(GREEK SMALL LETTER ALPHA) 348 521.23 T |
9423 |
|
|
9 14 Q |
9424 |
|
|
(b) 42 494.57 T |
9425 |
|
|
0 12 Q |
9426 |
|
|
(beta) 96 495.9 T |
9427 |
|
|
(beta) 150 495.9 T |
9428 |
|
|
(62) 240 495.9 T |
9429 |
|
|
(03B2) 294 495.9 T |
9430 |
|
|
0 10 Q |
9431 |
|
|
(GREEK SMALL LETTER BET) 348 497.23 T |
9432 |
|
|
(A) 477.96 497.23 T |
9433 |
|
|
9 14 Q |
9434 |
|
|
(c) 42 470.57 T |
9435 |
|
|
0 12 Q |
9436 |
|
|
(chi) 96 471.9 T |
9437 |
|
|
(chi) 150 471.9 T |
9438 |
|
|
(63) 240 471.9 T |
9439 |
|
|
(03C7) 294 471.9 T |
9440 |
|
|
0 10 Q |
9441 |
|
|
(GREEK SMALL LETTER CHI) 348 473.23 T |
9442 |
|
|
9 14 Q |
9443 |
|
|
(d) 42 446.57 T |
9444 |
|
|
0 12 Q |
9445 |
|
|
(delta) 96 447.9 T |
9446 |
|
|
(delta) 150 447.9 T |
9447 |
|
|
(64) 240 447.9 T |
9448 |
|
|
(03B4) 294 447.9 T |
9449 |
|
|
0 10 Q |
9450 |
|
|
(GREEK SMALL LETTER DEL) 348 449.23 T |
9451 |
|
|
(T) 478.39 449.23 T |
9452 |
|
|
(A) 483.7 449.23 T |
9453 |
|
|
9 14 Q |
9454 |
|
|
(e) 42 422.57 T |
9455 |
|
|
0 12 Q |
9456 |
|
|
(epsi) 96 423.9 T |
9457 |
|
|
(epsilon) 150 423.9 T |
9458 |
|
|
(65) 240 423.9 T |
9459 |
|
|
(03B5) 294 423.9 T |
9460 |
|
|
0 10 Q |
9461 |
|
|
(GREEK SMALL LETTER EPSILON) 348 425.23 T |
9462 |
|
|
9 14 Q |
9463 |
|
|
(f) 42 398.57 T |
9464 |
|
|
0 12 Q |
9465 |
|
|
(phis) 96 399.9 T |
9466 |
|
|
(phi) 150 399.9 T |
9467 |
|
|
(66) 240 399.9 T |
9468 |
|
|
(03C6) 294 399.9 T |
9469 |
|
|
0 10 Q |
9470 |
|
|
(GREEK SMALL LETTER PHI) 348 401.23 T |
9471 |
|
|
9 14 Q |
9472 |
|
|
(g) 42 374.57 T |
9473 |
|
|
0 12 Q |
9474 |
|
|
(gamma) 96 375.9 T |
9475 |
|
|
(gamma) 150 375.9 T |
9476 |
|
|
(67) 240 375.9 T |
9477 |
|
|
(03B3) 294 375.9 T |
9478 |
|
|
0 10 Q |
9479 |
|
|
(GREEK SMALL LETTER GAMMA) 348 377.23 T |
9480 |
|
|
9 14 Q |
9481 |
|
|
(h) 42 350.57 T |
9482 |
|
|
0 12 Q |
9483 |
|
|
(eta) 96 351.9 T |
9484 |
|
|
(eta) 150 351.9 T |
9485 |
|
|
(68) 240 351.9 T |
9486 |
|
|
(03B7) 294 351.9 T |
9487 |
|
|
0 10 Q |
9488 |
|
|
(GREEK SMALL LETTER ET) 348 353.23 T |
9489 |
|
|
(A) 471.29 353.23 T |
9490 |
|
|
9 14 Q |
9491 |
|
|
(i) 42 326.57 T |
9492 |
|
|
0 12 Q |
9493 |
|
|
(iota) 96 327.9 T |
9494 |
|
|
(iota) 150 327.9 T |
9495 |
|
|
(69) 240 327.9 T |
9496 |
|
|
(03B9) 294 327.9 T |
9497 |
|
|
0 10 Q |
9498 |
|
|
(GREEK SMALL LETTER IOT) 348 329.23 T |
9499 |
|
|
(A) 475.73 329.23 T |
9500 |
|
|
9 14 Q |
9501 |
|
|
(j) 42 302.57 T |
9502 |
|
|
0 12 Q |
9503 |
|
|
(phiv) 96 303.9 T |
9504 |
|
|
(phi1) 150 303.9 T |
9505 |
|
|
(6A) 240 303.9 T |
9506 |
|
|
(03D5) 294 303.9 T |
9507 |
|
|
0 10 Q |
9508 |
|
|
(GREEK SMALL LETTER SCRIPT PHI) 348 305.23 T |
9509 |
|
|
9 14 Q |
9510 |
|
|
(k) 42 278.57 T |
9511 |
|
|
0 12 Q |
9512 |
|
|
(kappa) 96 279.9 T |
9513 |
|
|
(kappa) 150 279.9 T |
9514 |
|
|
(6B) 240 279.9 T |
9515 |
|
|
(03BA) 294 279.9 T |
9516 |
|
|
0 10 Q |
9517 |
|
|
(GREEK SMALL LETTER KAPP) 348 281.23 T |
9518 |
|
|
(A) 484.51 281.23 T |
9519 |
|
|
9 14 Q |
9520 |
|
|
(l) 42 254.57 T |
9521 |
|
|
0 12 Q |
9522 |
|
|
(lambda) 96 255.9 T |
9523 |
|
|
(lambda) 150 255.9 T |
9524 |
|
|
(6C) 240 255.9 T |
9525 |
|
|
(03BB) 294 255.9 T |
9526 |
|
|
0 10 Q |
9527 |
|
|
(GREEK SMALL LETTER LAMBDA) 348 257.23 T |
9528 |
|
|
9 14 Q |
9529 |
|
|
(m) 42 230.57 T |
9530 |
|
|
0 12 Q |
9531 |
|
|
(mu) 96 231.9 T |
9532 |
|
|
(mu) 150 231.9 T |
9533 |
|
|
(6D) 240 231.9 T |
9534 |
|
|
(03BC) 294 231.9 T |
9535 |
|
|
0 10 Q |
9536 |
|
|
(GREEK SMALL LETTER MU) 348 233.23 T |
9537 |
|
|
9 14 Q |
9538 |
|
|
(n) 42 206.57 T |
9539 |
|
|
0 12 Q |
9540 |
|
|
(nu) 96 207.9 T |
9541 |
|
|
(nu) 150 207.9 T |
9542 |
|
|
(6E) 240 207.9 T |
9543 |
|
|
(03BD) 294 207.9 T |
9544 |
|
|
0 10 Q |
9545 |
|
|
(GREEK SMALL LETTER NU) 348 209.23 T |
9546 |
|
|
9 12 Q |
9547 |
|
|
(o) 42 183.9 T |
9548 |
|
|
0 F |
9549 |
|
|
(ogr) 96 183.9 T |
9550 |
|
|
(omicron) 150 183.9 T |
9551 |
|
|
(6F) 240 183.9 T |
9552 |
|
|
(03BF) 294 183.9 T |
9553 |
|
|
0 10 Q |
9554 |
|
|
(GREEK SMALL LETTER OMICRON) 348 185.23 T |
9555 |
|
|
9 14 Q |
9556 |
|
|
(p) 42 160.57 T |
9557 |
|
|
0 12 Q |
9558 |
|
|
(pi) 96 161.9 T |
9559 |
|
|
(pi) 150 161.9 T |
9560 |
|
|
(70) 240 161.9 T |
9561 |
|
|
(03C0) 294 161.9 T |
9562 |
|
|
0 10 Q |
9563 |
|
|
(GREEK SMALL LETTER Pl) 348 163.23 T |
9564 |
|
|
9 14 Q |
9565 |
|
|
(q) 42 136.57 T |
9566 |
|
|
0 12 Q |
9567 |
|
|
(thetas) 96 137.9 T |
9568 |
|
|
(theta) 150 137.9 T |
9569 |
|
|
(71) 240 137.9 T |
9570 |
|
|
(03B8) 294 137.9 T |
9571 |
|
|
0 10 Q |
9572 |
|
|
(GREEK SMALL LETTER THET) 348 139.23 T |
9573 |
|
|
(A) 484.61 139.23 T |
9574 |
|
|
9 14 Q |
9575 |
|
|
(r) 42 112.57 T |
9576 |
|
|
0 12 Q |
9577 |
|
|
(rho) 96 113.9 T |
9578 |
|
|
(rho) 150 113.9 T |
9579 |
|
|
(72) 240 113.9 T |
9580 |
|
|
(03C1) 294 113.9 T |
9581 |
|
|
0 10 Q |
9582 |
|
|
(GREEK SMALL LETTER RHO) 348 115.23 T |
9583 |
|
|
5 12 Q |
9584 |
|
|
(Symbol) 43.67 764.9 T |
9585 |
|
|
(ISO) 106.67 771.9 T |
9586 |
|
|
(8879) 105.01 757.9 T |
9587 |
|
|
(Adobe name) 156.85 764.9 T |
9588 |
|
|
(Adobe) 244.34 771.9 T |
9589 |
|
|
(Hex) 250.67 757.9 T |
9590 |
|
|
(Unicode) 294.01 764.9 T |
9591 |
|
|
(Unicode name) 413.52 764.9 T |
9592 |
|
|
36 787.65 36 104.15 2 L |
9593 |
|
|
V |
9594 |
|
|
0.5 H |
9595 |
|
|
0 Z |
9596 |
|
|
N |
9597 |
|
|
90 788.15 90 103.65 2 L |
9598 |
|
|
V |
9599 |
|
|
N |
9600 |
|
|
144 788.15 144 103.65 2 L |
9601 |
|
|
V |
9602 |
|
|
N |
9603 |
|
|
234 788.15 234 103.65 2 L |
9604 |
|
|
V |
9605 |
|
|
N |
9606 |
|
|
288 788.15 288 103.65 2 L |
9607 |
|
|
V |
9608 |
|
|
N |
9609 |
|
|
342 788.15 342 103.65 2 L |
9610 |
|
|
V |
9611 |
|
|
N |
9612 |
|
|
558 787.65 558 104.15 2 L |
9613 |
|
|
V |
9614 |
|
|
N |
9615 |
|
|
35.75 787.9 558.25 787.9 2 L |
9616 |
|
|
V |
9617 |
|
|
N |
9618 |
|
|
36.25 749.15 557.75 749.15 2 L |
9619 |
|
|
V |
9620 |
|
|
N |
9621 |
|
|
36.25 746.65 557.75 746.65 2 L |
9622 |
|
|
V |
9623 |
|
|
N |
9624 |
|
|
35.75 723.9 558.25 723.9 2 L |
9625 |
|
|
V |
9626 |
|
|
N |
9627 |
|
|
35.75 699.9 558.25 699.9 2 L |
9628 |
|
|
V |
9629 |
|
|
N |
9630 |
|
|
35.75 675.9 558.25 675.9 2 L |
9631 |
|
|
V |
9632 |
|
|
N |
9633 |
|
|
35.75 651.9 558.25 651.9 2 L |
9634 |
|
|
V |
9635 |
|
|
N |
9636 |
|
|
35.75 627.9 558.25 627.9 2 L |
9637 |
|
|
V |
9638 |
|
|
N |
9639 |
|
|
35.75 603.9 558.25 603.9 2 L |
9640 |
|
|
V |
9641 |
|
|
N |
9642 |
|
|
35.75 579.9 558.25 579.9 2 L |
9643 |
|
|
V |
9644 |
|
|
N |
9645 |
|
|
35.75 555.9 558.25 555.9 2 L |
9646 |
|
|
V |
9647 |
|
|
N |
9648 |
|
|
35.75 533.9 558.25 533.9 2 L |
9649 |
|
|
V |
9650 |
|
|
N |
9651 |
|
|
35.75 509.9 558.25 509.9 2 L |
9652 |
|
|
V |
9653 |
|
|
N |
9654 |
|
|
35.75 485.9 558.25 485.9 2 L |
9655 |
|
|
V |
9656 |
|
|
N |
9657 |
|
|
35.75 461.9 558.25 461.9 2 L |
9658 |
|
|
V |
9659 |
|
|
N |
9660 |
|
|
35.75 437.9 558.25 437.9 2 L |
9661 |
|
|
V |
9662 |
|
|
N |
9663 |
|
|
35.75 413.9 558.25 413.9 2 L |
9664 |
|
|
V |
9665 |
|
|
N |
9666 |
|
|
35.75 389.9 558.25 389.9 2 L |
9667 |
|
|
V |
9668 |
|
|
N |
9669 |
|
|
35.75 365.9 558.25 365.9 2 L |
9670 |
|
|
V |
9671 |
|
|
N |
9672 |
|
|
35.75 341.9 558.25 341.9 2 L |
9673 |
|
|
V |
9674 |
|
|
N |
9675 |
|
|
35.75 317.9 558.25 317.9 2 L |
9676 |
|
|
V |
9677 |
|
|
N |
9678 |
|
|
35.75 293.9 558.25 293.9 2 L |
9679 |
|
|
V |
9680 |
|
|
N |
9681 |
|
|
35.75 269.9 558.25 269.9 2 L |
9682 |
|
|
V |
9683 |
|
|
N |
9684 |
|
|
35.75 245.9 558.25 245.9 2 L |
9685 |
|
|
V |
9686 |
|
|
N |
9687 |
|
|
35.75 221.9 558.25 221.9 2 L |
9688 |
|
|
V |
9689 |
|
|
N |
9690 |
|
|
35.75 197.9 558.25 197.9 2 L |
9691 |
|
|
V |
9692 |
|
|
N |
9693 |
|
|
35.75 175.9 558.25 175.9 2 L |
9694 |
|
|
V |
9695 |
|
|
N |
9696 |
|
|
35.75 151.9 558.25 151.9 2 L |
9697 |
|
|
V |
9698 |
|
|
N |
9699 |
|
|
35.75 127.9 558.25 127.9 2 L |
9700 |
|
|
V |
9701 |
|
|
N |
9702 |
|
|
35.75 103.9 558.25 103.9 2 L |
9703 |
|
|
V |
9704 |
|
|
N |
9705 |
|
|
FMENDPAGE |
9706 |
|
|
%%EndPage: "52" 57 |
9707 |
|
|
%%Page: "53" 57 |
9708 |
|
|
595.3 841.9 0 FMBEGINPAGE |
9709 |
|
|
0 10 Q |
9710 |
|
|
0 X |
9711 |
|
|
0 K |
9712 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
9713 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
9714 |
|
|
(53) 292.65 70.23 T |
9715 |
|
|
9 14 Q |
9716 |
|
|
(s) 42 732.57 T |
9717 |
|
|
0 12 Q |
9718 |
|
|
(sigma) 96 733.9 T |
9719 |
|
|
(sigma) 150 733.9 T |
9720 |
|
|
(73) 240 733.9 T |
9721 |
|
|
(03C3) 294 733.9 T |
9722 |
|
|
0 10 Q |
9723 |
|
|
(GREEK SMALL LETTER SIGMA) 348 735.23 T |
9724 |
|
|
9 14 Q |
9725 |
|
|
(t) 42 708.57 T |
9726 |
|
|
0 12 Q |
9727 |
|
|
(tau) 96 709.9 T |
9728 |
|
|
(tau) 150 709.9 T |
9729 |
|
|
(74) 240 709.9 T |
9730 |
|
|
(03C4) 294 709.9 T |
9731 |
|
|
0 10 Q |
9732 |
|
|
(GREEK SMALL LETTER T) 348 711.23 T |
9733 |
|
|
(AU) 465.19 711.23 T |
9734 |
|
|
9 14 Q |
9735 |
|
|
(u) 42 684.57 T |
9736 |
|
|
0 12 Q |
9737 |
|
|
(upsi) 96 685.9 T |
9738 |
|
|
(upsilon) 150 685.9 T |
9739 |
|
|
(75) 240 685.9 T |
9740 |
|
|
(03C5) 294 685.9 T |
9741 |
|
|
0 10 Q |
9742 |
|
|
(GREEK SMALL LETTER UPSILON) 348 687.23 T |
9743 |
|
|
9 14 Q |
9744 |
|
|
(v) 42 660.57 T |
9745 |
|
|
0 12 Q |
9746 |
|
|
(piv) 96 661.9 T |
9747 |
|
|
(omega1) 150 661.9 T |
9748 |
|
|
(76) 240 661.9 T |
9749 |
|
|
(03D6) 294 661.9 T |
9750 |
|
|
0 10 Q |
9751 |
|
|
(GREEK SMALL LETTER OMEGA Pl) 348 663.23 T |
9752 |
|
|
9 14 Q |
9753 |
|
|
(w) 42 636.57 T |
9754 |
|
|
0 12 Q |
9755 |
|
|
(omega) 96 637.9 T |
9756 |
|
|
(omega) 150 637.9 T |
9757 |
|
|
(77) 240 637.9 T |
9758 |
|
|
(03C9) 294 637.9 T |
9759 |
|
|
0 10 Q |
9760 |
|
|
(GREEK SMALL LETTER OMEGA) 348 639.23 T |
9761 |
|
|
9 14 Q |
9762 |
|
|
(x) 42 612.57 T |
9763 |
|
|
0 12 Q |
9764 |
|
|
(xi) 96 613.9 T |
9765 |
|
|
(xi) 150 613.9 T |
9766 |
|
|
(78) 240 613.9 T |
9767 |
|
|
(03BE) 294 613.9 T |
9768 |
|
|
0 10 Q |
9769 |
|
|
(GREEK SMALL LETTER Xl) 348 615.23 T |
9770 |
|
|
9 14 Q |
9771 |
|
|
(y) 42 588.57 T |
9772 |
|
|
0 12 Q |
9773 |
|
|
(psi) 96 589.9 T |
9774 |
|
|
(psi) 150 589.9 T |
9775 |
|
|
(79) 240 589.9 T |
9776 |
|
|
(03C8) 294 589.9 T |
9777 |
|
|
0 10 Q |
9778 |
|
|
(GREEK SMALL LETTER PSI) 348 591.23 T |
9779 |
|
|
9 14 Q |
9780 |
|
|
(z) 42 564.57 T |
9781 |
|
|
0 12 Q |
9782 |
|
|
(zeta) 96 565.9 T |
9783 |
|
|
(zeta) 150 565.9 T |
9784 |
|
|
(7A) 240 565.9 T |
9785 |
|
|
(03B6) 294 565.9 T |
9786 |
|
|
0 10 Q |
9787 |
|
|
(GREEK SMALL LETTER ZET) 348 567.23 T |
9788 |
|
|
(A) 477.4 567.23 T |
9789 |
|
|
9 14 Q |
9790 |
|
|
(~) 42 540.57 T |
9791 |
|
|
0 12 Q |
9792 |
|
|
(sim) 96 541.9 T |
9793 |
|
|
(similar) 150 541.9 T |
9794 |
|
|
(7E) 240 541.9 T |
9795 |
|
|
(223C) 294 541.9 T |
9796 |
|
|
0 10 Q |
9797 |
|
|
(TILDE OPERA) 348 543.23 T |
9798 |
|
|
(T) 411.02 543.23 T |
9799 |
|
|
(OR) 416.94 543.23 T |
9800 |
|
|
9 14 Q |
9801 |
|
|
(\241) 42 516.57 T |
9802 |
|
|
0 12 Q |
9803 |
|
|
(Upsilon1) 150 517.9 T |
9804 |
|
|
(A1) 240 517.9 T |
9805 |
|
|
(03D2) 294 517.9 T |
9806 |
|
|
0 10 Q |
9807 |
|
|
(GREEK CAPIT) 348 519.23 T |
9808 |
|
|
(AL LETTER UPSILON HOOK) 411.89 519.23 T |
9809 |
|
|
9 14 Q |
9810 |
|
|
(\242) 42 492.57 T |
9811 |
|
|
0 12 Q |
9812 |
|
|
(vprime) 96 493.9 T |
9813 |
|
|
(minute) 150 493.9 T |
9814 |
|
|
(A2) 240 493.9 T |
9815 |
|
|
(2032) 294 493.9 T |
9816 |
|
|
0 10 Q |
9817 |
|
|
(PRIME) 348 495.23 T |
9818 |
|
|
9 14 Q |
9819 |
|
|
(\243) 42 468.57 T |
9820 |
|
|
0 12 Q |
9821 |
|
|
(le) 96 469.9 T |
9822 |
|
|
(lessequal) 150 469.9 T |
9823 |
|
|
(A3) 240 469.9 T |
9824 |
|
|
(2264) 294 469.9 T |
9825 |
|
|
0 10 Q |
9826 |
|
|
(LESS THAN OR EQUAL T) 348 471.23 T |
9827 |
|
|
(O) 462.75 471.23 T |
9828 |
|
|
0 12 Q |
9829 |
|
|
(\332) 42 445.9 T |
9830 |
|
|
(fraction) 150 445.9 T |
9831 |
|
|
(A4) 240 445.9 T |
9832 |
|
|
(2044) 294 445.9 T |
9833 |
|
|
0 10 Q |
9834 |
|
|
(FRACTION SLASH) 348 447.23 T |
9835 |
|
|
9 14 Q |
9836 |
|
|
(\245) 42 422.57 T |
9837 |
|
|
0 12 Q |
9838 |
|
|
(in\336n) 96 423.9 T |
9839 |
|
|
(in\336nity) 150 423.9 T |
9840 |
|
|
(A5) 240 423.9 T |
9841 |
|
|
(221E) 294 423.9 T |
9842 |
|
|
0 10 Q |
9843 |
|
|
(INFINITY) 348 425.23 T |
9844 |
|
|
9 14 Q |
9845 |
|
|
(\246) 42 398.57 T |
9846 |
|
|
0 12 Q |
9847 |
|
|
(fnof) 96 399.9 T |
9848 |
|
|
(\337orin) 150 399.9 T |
9849 |
|
|
(A6) 240 399.9 T |
9850 |
|
|
(0192) 294 399.9 T |
9851 |
|
|
0 10 Q |
9852 |
|
|
(LA) 348 401.23 T |
9853 |
|
|
(TIN SMALL LETTER SCRIPT F) 360.21 401.23 T |
9854 |
|
|
9 14 Q |
9855 |
|
|
(\247) 42 374.57 T |
9856 |
|
|
0 12 Q |
9857 |
|
|
(clubs) 96 375.9 T |
9858 |
|
|
(club) 150 375.9 T |
9859 |
|
|
(A7) 240 375.9 T |
9860 |
|
|
(2663) 294 375.9 T |
9861 |
|
|
0 10 Q |
9862 |
|
|
(BLACK CLUB SUIT) 348 377.23 T |
9863 |
|
|
9 14 Q |
9864 |
|
|
(\250) 42 350.57 T |
9865 |
|
|
0 12 Q |
9866 |
|
|
(diams) 96 351.9 T |
9867 |
|
|
(diamond) 150 351.9 T |
9868 |
|
|
(A8) 240 351.9 T |
9869 |
|
|
(2666) 294 351.9 T |
9870 |
|
|
0 10 Q |
9871 |
|
|
(BLACK DIAMOND SUIT) 348 353.23 T |
9872 |
|
|
9 14 Q |
9873 |
|
|
(\251) 42 326.57 T |
9874 |
|
|
0 12 Q |
9875 |
|
|
(hearts) 96 327.9 T |
9876 |
|
|
(heart) 150 327.9 T |
9877 |
|
|
(A9) 240 327.9 T |
9878 |
|
|
(2665) 294 327.9 T |
9879 |
|
|
0 10 Q |
9880 |
|
|
(BLACK HEAR) 348 329.23 T |
9881 |
|
|
(T SUIT) 410.98 329.23 T |
9882 |
|
|
9 14 Q |
9883 |
|
|
(\252) 42 302.57 T |
9884 |
|
|
0 12 Q |
9885 |
|
|
(spades) 96 303.9 T |
9886 |
|
|
(spade) 150 303.9 T |
9887 |
|
|
(AA) 240 303.9 T |
9888 |
|
|
(2660) 294 303.9 T |
9889 |
|
|
0 10 Q |
9890 |
|
|
(BLACK SP) 348 305.23 T |
9891 |
|
|
(ADE SUIT) 394.56 305.23 T |
9892 |
|
|
9 14 Q |
9893 |
|
|
(\253) 42 278.57 T |
9894 |
|
|
0 12 Q |
9895 |
|
|
(harr) 96 279.9 T |
9896 |
|
|
(arrowboth) 150 279.9 T |
9897 |
|
|
(AB) 240 279.9 T |
9898 |
|
|
(2194) 294 279.9 T |
9899 |
|
|
0 10 Q |
9900 |
|
|
(LEFT RIGHT ARROW) 348 281.23 T |
9901 |
|
|
9 14 Q |
9902 |
|
|
(\254) 42 254.57 T |
9903 |
|
|
0 12 Q |
9904 |
|
|
(larr) 96 255.9 T |
9905 |
|
|
(arrowleft) 150 255.9 T |
9906 |
|
|
(AC) 240 255.9 T |
9907 |
|
|
(2190) 294 255.9 T |
9908 |
|
|
0 10 Q |
9909 |
|
|
(LEFT ARROW) 348 257.23 T |
9910 |
|
|
9 14 Q |
9911 |
|
|
(\255) 42 230.57 T |
9912 |
|
|
0 12 Q |
9913 |
|
|
(uarr) 96 231.9 T |
9914 |
|
|
(arrowup) 150 231.9 T |
9915 |
|
|
(AD) 240 231.9 T |
9916 |
|
|
(2191) 294 231.9 T |
9917 |
|
|
0 10 Q |
9918 |
|
|
(UP ARROW) 348 233.23 T |
9919 |
|
|
9 14 Q |
9920 |
|
|
(\256) 42 206.57 T |
9921 |
|
|
0 12 Q |
9922 |
|
|
(rarr) 96 207.9 T |
9923 |
|
|
(arrowright) 150 207.9 T |
9924 |
|
|
(AE) 240 207.9 T |
9925 |
|
|
(2192) 294 207.9 T |
9926 |
|
|
0 10 Q |
9927 |
|
|
(RIGHT ARROW) 348 209.23 T |
9928 |
|
|
9 14 Q |
9929 |
|
|
(\257) 42 184.57 T |
9930 |
|
|
0 12 Q |
9931 |
|
|
(darr) 96 183.9 T |
9932 |
|
|
(arrowdown) 150 183.9 T |
9933 |
|
|
(AF) 240 183.9 T |
9934 |
|
|
(2193) 294 183.9 T |
9935 |
|
|
0 10 Q |
9936 |
|
|
(DOWN ARROW) 348 185.23 T |
9937 |
|
|
9 14 Q |
9938 |
|
|
(\262) 42 158.57 T |
9939 |
|
|
0 12 Q |
9940 |
|
|
(Prime) 96 159.9 T |
9941 |
|
|
(second) 150 159.9 T |
9942 |
|
|
(B2) 240 159.9 T |
9943 |
|
|
(2033) 294 159.9 T |
9944 |
|
|
0 10 Q |
9945 |
|
|
(DOUBLE PRIME) 348 161.23 T |
9946 |
|
|
9 14 Q |
9947 |
|
|
(\263) 42 134.57 T |
9948 |
|
|
0 12 Q |
9949 |
|
|
(ge) 96 135.9 T |
9950 |
|
|
(greaterequal) 150 135.9 T |
9951 |
|
|
(B3) 240 135.9 T |
9952 |
|
|
(2265) 294 135.9 T |
9953 |
|
|
0 10 Q |
9954 |
|
|
(GREA) 348 137.23 T |
9955 |
|
|
(TER THAN OR EQUAL T) 374.1 137.23 T |
9956 |
|
|
(O) 484.39 137.23 T |
9957 |
|
|
9 14 Q |
9958 |
|
|
(\265) 42 110.57 T |
9959 |
|
|
0 12 Q |
9960 |
|
|
(prop) 96 111.9 T |
9961 |
|
|
(proportional) 150 111.9 T |
9962 |
|
|
(B5) 240 111.9 T |
9963 |
|
|
(221D) 294 111.9 T |
9964 |
|
|
0 10 Q |
9965 |
|
|
(PROPOR) 348 113.23 T |
9966 |
|
|
(TIONAL T) 386.28 113.23 T |
9967 |
|
|
(O) 431.89 113.23 T |
9968 |
|
|
5 12 Q |
9969 |
|
|
(Symbol) 43.67 764.9 T |
9970 |
|
|
(ISO) 106.67 771.9 T |
9971 |
|
|
(8879) 105.01 757.9 T |
9972 |
|
|
(Adobe name) 156.85 764.9 T |
9973 |
|
|
(Adobe) 244.34 771.9 T |
9974 |
|
|
(Hex) 250.67 757.9 T |
9975 |
|
|
(Unicode) 294.01 764.9 T |
9976 |
|
|
(Unicode name) 413.52 764.9 T |
9977 |
|
|
36 787.65 36 102.15 2 L |
9978 |
|
|
V |
9979 |
|
|
0.5 H |
9980 |
|
|
0 Z |
9981 |
|
|
N |
9982 |
|
|
90 788.15 90 101.65 2 L |
9983 |
|
|
V |
9984 |
|
|
N |
9985 |
|
|
144 788.15 144 101.65 2 L |
9986 |
|
|
V |
9987 |
|
|
N |
9988 |
|
|
234 788.15 234 101.65 2 L |
9989 |
|
|
V |
9990 |
|
|
N |
9991 |
|
|
288 788.15 288 101.65 2 L |
9992 |
|
|
V |
9993 |
|
|
N |
9994 |
|
|
342 788.15 342 101.65 2 L |
9995 |
|
|
V |
9996 |
|
|
N |
9997 |
|
|
558 787.65 558 102.15 2 L |
9998 |
|
|
V |
9999 |
|
|
N |
10000 |
|
|
35.75 787.9 558.25 787.9 2 L |
10001 |
|
|
V |
10002 |
|
|
N |
10003 |
|
|
36.25 749.15 557.75 749.15 2 L |
10004 |
|
|
V |
10005 |
|
|
N |
10006 |
|
|
36.25 746.65 557.75 746.65 2 L |
10007 |
|
|
V |
10008 |
|
|
N |
10009 |
|
|
35.75 723.9 558.25 723.9 2 L |
10010 |
|
|
V |
10011 |
|
|
N |
10012 |
|
|
35.75 699.9 558.25 699.9 2 L |
10013 |
|
|
V |
10014 |
|
|
N |
10015 |
|
|
35.75 675.9 558.25 675.9 2 L |
10016 |
|
|
V |
10017 |
|
|
N |
10018 |
|
|
35.75 651.9 558.25 651.9 2 L |
10019 |
|
|
V |
10020 |
|
|
N |
10021 |
|
|
35.75 627.9 558.25 627.9 2 L |
10022 |
|
|
V |
10023 |
|
|
N |
10024 |
|
|
35.75 603.9 558.25 603.9 2 L |
10025 |
|
|
V |
10026 |
|
|
N |
10027 |
|
|
35.75 579.9 558.25 579.9 2 L |
10028 |
|
|
V |
10029 |
|
|
N |
10030 |
|
|
35.75 555.9 558.25 555.9 2 L |
10031 |
|
|
V |
10032 |
|
|
N |
10033 |
|
|
35.75 531.9 558.25 531.9 2 L |
10034 |
|
|
V |
10035 |
|
|
N |
10036 |
|
|
35.75 507.9 558.25 507.9 2 L |
10037 |
|
|
V |
10038 |
|
|
N |
10039 |
|
|
35.75 483.9 558.25 483.9 2 L |
10040 |
|
|
V |
10041 |
|
|
N |
10042 |
|
|
35.75 459.9 558.25 459.9 2 L |
10043 |
|
|
V |
10044 |
|
|
N |
10045 |
|
|
35.75 437.9 558.25 437.9 2 L |
10046 |
|
|
V |
10047 |
|
|
N |
10048 |
|
|
35.75 413.9 558.25 413.9 2 L |
10049 |
|
|
V |
10050 |
|
|
N |
10051 |
|
|
35.75 389.9 558.25 389.9 2 L |
10052 |
|
|
V |
10053 |
|
|
N |
10054 |
|
|
35.75 365.9 558.25 365.9 2 L |
10055 |
|
|
V |
10056 |
|
|
N |
10057 |
|
|
35.75 341.9 558.25 341.9 2 L |
10058 |
|
|
V |
10059 |
|
|
N |
10060 |
|
|
35.75 317.9 558.25 317.9 2 L |
10061 |
|
|
V |
10062 |
|
|
N |
10063 |
|
|
35.75 293.9 558.25 293.9 2 L |
10064 |
|
|
V |
10065 |
|
|
N |
10066 |
|
|
35.75 269.9 558.25 269.9 2 L |
10067 |
|
|
V |
10068 |
|
|
N |
10069 |
|
|
35.75 245.9 558.25 245.9 2 L |
10070 |
|
|
V |
10071 |
|
|
N |
10072 |
|
|
35.75 221.9 558.25 221.9 2 L |
10073 |
|
|
V |
10074 |
|
|
N |
10075 |
|
|
35.75 197.9 558.25 197.9 2 L |
10076 |
|
|
V |
10077 |
|
|
N |
10078 |
|
|
35.75 173.9 558.25 173.9 2 L |
10079 |
|
|
V |
10080 |
|
|
N |
10081 |
|
|
35.75 149.9 558.25 149.9 2 L |
10082 |
|
|
V |
10083 |
|
|
N |
10084 |
|
|
35.75 125.9 558.25 125.9 2 L |
10085 |
|
|
V |
10086 |
|
|
N |
10087 |
|
|
35.75 101.9 558.25 101.9 2 L |
10088 |
|
|
V |
10089 |
|
|
N |
10090 |
|
|
FMENDPAGE |
10091 |
|
|
%%EndPage: "53" 58 |
10092 |
|
|
%%Page: "54" 58 |
10093 |
|
|
595.3 841.9 0 FMBEGINPAGE |
10094 |
|
|
0 10 Q |
10095 |
|
|
0 X |
10096 |
|
|
0 K |
10097 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
10098 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
10099 |
|
|
(54) 292.65 70.23 T |
10100 |
|
|
9 14 Q |
10101 |
|
|
(\266) 42 732.57 T |
10102 |
|
|
0 12 Q |
10103 |
|
|
(part) 96 733.9 T |
10104 |
|
|
(partialdif) 150 733.9 T |
10105 |
|
|
(f) 193.75 733.9 T |
10106 |
|
|
(B6) 240 733.9 T |
10107 |
|
|
(2202) 294 733.9 T |
10108 |
|
|
0 10 Q |
10109 |
|
|
(P) 348 735.23 T |
10110 |
|
|
(AR) 352.64 735.23 T |
10111 |
|
|
(TIAL DIFFERENTIAL) 365.92 735.23 T |
10112 |
|
|
9 14 Q |
10113 |
|
|
(\267) 42 708.57 T |
10114 |
|
|
0 12 Q |
10115 |
|
|
(bull) 96 709.9 T |
10116 |
|
|
(bullet) 150 709.9 T |
10117 |
|
|
(B7) 240 709.9 T |
10118 |
|
|
(2022) 294 709.9 T |
10119 |
|
|
0 10 Q |
10120 |
|
|
(BULLET) 348 711.23 T |
10121 |
|
|
9 14 Q |
10122 |
|
|
(\271) 42 684.57 T |
10123 |
|
|
0 12 Q |
10124 |
|
|
(ne) 96 685.9 T |
10125 |
|
|
(notequal) 150 685.9 T |
10126 |
|
|
(B9) 240 685.9 T |
10127 |
|
|
(2260) 294 685.9 T |
10128 |
|
|
0 10 Q |
10129 |
|
|
(NOT EQUAL T) 348 687.23 T |
10130 |
|
|
(O) 413.32 687.23 T |
10131 |
|
|
9 14 Q |
10132 |
|
|
(\272) 42 660.57 T |
10133 |
|
|
0 12 Q |
10134 |
|
|
(equiv) 96 661.9 T |
10135 |
|
|
(equivalence) 150 661.9 T |
10136 |
|
|
(BA) 240 661.9 T |
10137 |
|
|
(2261) 294 661.9 T |
10138 |
|
|
0 10 Q |
10139 |
|
|
(IDENTICAL T) 348 663.23 T |
10140 |
|
|
(O) 409.72 663.23 T |
10141 |
|
|
9 14 Q |
10142 |
|
|
(\273) 42 636.57 T |
10143 |
|
|
0 12 Q |
10144 |
|
|
(ap) 96 637.9 T |
10145 |
|
|
(approxequal) 150 637.9 T |
10146 |
|
|
(BB) 240 637.9 T |
10147 |
|
|
(2248) 294 637.9 T |
10148 |
|
|
0 10 Q |
10149 |
|
|
(ALMOST EQUAL T) 348 639.23 T |
10150 |
|
|
(O) 433.87 639.23 T |
10151 |
|
|
9 14 Q |
10152 |
|
|
(\274) 42 612.57 T |
10153 |
|
|
0 12 Q |
10154 |
|
|
(hellip) 96 613.9 T |
10155 |
|
|
(ellipsis) 150 613.9 T |
10156 |
|
|
(BC) 240 613.9 T |
10157 |
|
|
(2026) 294 613.9 T |
10158 |
|
|
0 10 Q |
10159 |
|
|
(HORIZONT) 348 615.23 T |
10160 |
|
|
(AL ELLIPSIS) 398.27 615.23 T |
10161 |
|
|
9 14 Q |
10162 |
|
|
(\275) 42 588.57 T |
10163 |
|
|
0 12 Q |
10164 |
|
|
(arrowvertex) 150 589.9 T |
10165 |
|
|
(BD) 240 589.9 T |
10166 |
|
|
9 14 Q |
10167 |
|
|
(\276) 42 564.57 T |
10168 |
|
|
0 12 Q |
10169 |
|
|
(arrowhorizex) 150 565.9 T |
10170 |
|
|
(BE) 240 565.9 T |
10171 |
|
|
9 14 Q |
10172 |
|
|
(\277) 42 540.57 T |
10173 |
|
|
0 12 Q |
10174 |
|
|
(carriagereturn) 150 541.9 T |
10175 |
|
|
(BF) 240 541.9 T |
10176 |
|
|
(21B5) 294 541.9 T |
10177 |
|
|
0 10 Q |
10178 |
|
|
(DOWN ARROW WITH CORNER LEFT) 348 543.23 T |
10179 |
|
|
9 14 Q |
10180 |
|
|
(\300) 42 516.57 T |
10181 |
|
|
0 12 Q |
10182 |
|
|
(aleph) 96 517.9 T |
10183 |
|
|
(aleph) 150 517.9 T |
10184 |
|
|
(C0) 240 517.9 T |
10185 |
|
|
(2135) 294 517.9 T |
10186 |
|
|
0 10 Q |
10187 |
|
|
(FIRST TRANSFINITE CARDINAL) 348 519.23 T |
10188 |
|
|
9 14 Q |
10189 |
|
|
(\301) 42 492.57 T |
10190 |
|
|
0 12 Q |
10191 |
|
|
(image) 96 493.9 T |
10192 |
|
|
(Ifraktur) 150 493.9 T |
10193 |
|
|
(C1) 240 493.9 T |
10194 |
|
|
(21) 294 493.9 T |
10195 |
|
|
(1) 305.55 493.9 T |
10196 |
|
|
(1) 311.1 493.9 T |
10197 |
|
|
0 10 Q |
10198 |
|
|
(BLACK-LETTER I) 348 495.23 T |
10199 |
|
|
9 14 Q |
10200 |
|
|
(\302) 42 468.57 T |
10201 |
|
|
0 12 Q |
10202 |
|
|
(real) 96 469.9 T |
10203 |
|
|
(Rfraktur) 150 469.9 T |
10204 |
|
|
(C2) 240 469.9 T |
10205 |
|
|
(21) 294 469.9 T |
10206 |
|
|
(1C) 305.55 469.9 T |
10207 |
|
|
0 10 Q |
10208 |
|
|
(BLACK-LETTER R) 348 471.23 T |
10209 |
|
|
9 14 Q |
10210 |
|
|
(\303) 42 445.57 T |
10211 |
|
|
0 12 Q |
10212 |
|
|
(weierp) 96 445.9 T |
10213 |
|
|
(weierstrass) 150 445.9 T |
10214 |
|
|
(C3) 240 445.9 T |
10215 |
|
|
(21) 294 445.9 T |
10216 |
|
|
(18) 305.55 445.9 T |
10217 |
|
|
0 10 Q |
10218 |
|
|
(SCRIPT P) 348 447.23 T |
10219 |
|
|
9 14 Q |
10220 |
|
|
(\304) 42 420.57 T |
10221 |
|
|
0 12 Q |
10222 |
|
|
(otimes) 96 421.9 T |
10223 |
|
|
(circlemultiply) 150 421.9 T |
10224 |
|
|
(C4) 240 421.9 T |
10225 |
|
|
(2297) 294 421.9 T |
10226 |
|
|
0 10 Q |
10227 |
|
|
(CIRCLED TIMES) 348 423.23 T |
10228 |
|
|
9 14 Q |
10229 |
|
|
(\305) 42 396.57 T |
10230 |
|
|
0 12 Q |
10231 |
|
|
(oplus) 96 397.9 T |
10232 |
|
|
(circleplus) 150 397.9 T |
10233 |
|
|
(C5) 240 397.9 T |
10234 |
|
|
(2295) 294 397.9 T |
10235 |
|
|
0 10 Q |
10236 |
|
|
(CIRCLED PLUS) 348 399.23 T |
10237 |
|
|
9 14 Q |
10238 |
|
|
(\306) 42 372.57 T |
10239 |
|
|
0 12 Q |
10240 |
|
|
(empty) 96 373.9 T |
10241 |
|
|
(emptyset) 150 373.9 T |
10242 |
|
|
(C6) 240 373.9 T |
10243 |
|
|
(2205) 294 373.9 T |
10244 |
|
|
0 10 Q |
10245 |
|
|
(EMPTY SET) 348 375.23 T |
10246 |
|
|
9 14 Q |
10247 |
|
|
(\307) 42 348.57 T |
10248 |
|
|
0 12 Q |
10249 |
|
|
(cap) 96 349.9 T |
10250 |
|
|
(intersection) 150 349.9 T |
10251 |
|
|
(C7) 240 349.9 T |
10252 |
|
|
(2229) 294 349.9 T |
10253 |
|
|
0 10 Q |
10254 |
|
|
(INTERSECTION) 348 351.23 T |
10255 |
|
|
9 14 Q |
10256 |
|
|
(\310) 42 324.57 T |
10257 |
|
|
0 12 Q |
10258 |
|
|
(cup) 96 325.9 T |
10259 |
|
|
(union) 150 325.9 T |
10260 |
|
|
(C8) 240 325.9 T |
10261 |
|
|
(222A) 294 325.9 T |
10262 |
|
|
0 10 Q |
10263 |
|
|
(UNION) 348 327.23 T |
10264 |
|
|
9 14 Q |
10265 |
|
|
(\311) 42 300.57 T |
10266 |
|
|
0 12 Q |
10267 |
|
|
(sup) 96 301.9 T |
10268 |
|
|
(propersuperset) 150 301.9 T |
10269 |
|
|
(C9) 240 301.9 T |
10270 |
|
|
(2283) 294 301.9 T |
10271 |
|
|
0 10 Q |
10272 |
|
|
(SUPERSET OF) 348 303.23 T |
10273 |
|
|
9 14 Q |
10274 |
|
|
(\312) 42 277.57 T |
10275 |
|
|
0 12 Q |
10276 |
|
|
(supe) 96 277.9 T |
10277 |
|
|
(re\337exsuperset) 150 277.9 T |
10278 |
|
|
(CA) 240 277.9 T |
10279 |
|
|
(2287) 294 277.9 T |
10280 |
|
|
0 10 Q |
10281 |
|
|
(SUPERSET OF OR EQUAL T) 348 279.23 T |
10282 |
|
|
(O) 473.31 279.23 T |
10283 |
|
|
9 14 Q |
10284 |
|
|
(\313) 42 252.57 T |
10285 |
|
|
0 12 Q |
10286 |
|
|
(nsub) 96 253.9 T |
10287 |
|
|
(notsubset) 150 253.9 T |
10288 |
|
|
(CB) 240 253.9 T |
10289 |
|
|
(2284) 294 253.9 T |
10290 |
|
|
0 10 Q |
10291 |
|
|
(NOT A SUBSET OF) 348 255.23 T |
10292 |
|
|
9 14 Q |
10293 |
|
|
(\314) 42 228.57 T |
10294 |
|
|
0 12 Q |
10295 |
|
|
(sub) 96 229.9 T |
10296 |
|
|
(propersubset) 150 229.9 T |
10297 |
|
|
(CC) 240 229.9 T |
10298 |
|
|
(2282) 294 229.9 T |
10299 |
|
|
0 10 Q |
10300 |
|
|
(SUBSET OF) 348 231.23 T |
10301 |
|
|
9 14 Q |
10302 |
|
|
(\315) 42 205.57 T |
10303 |
|
|
0 12 Q |
10304 |
|
|
(sube) 96 205.9 T |
10305 |
|
|
(re\337exsubset) 150 205.9 T |
10306 |
|
|
(CD) 240 205.9 T |
10307 |
|
|
(2286) 294 205.9 T |
10308 |
|
|
0 10 Q |
10309 |
|
|
(SUBSET OF OR EQUAL T) 348 207.23 T |
10310 |
|
|
(O) 461.65 207.23 T |
10311 |
|
|
9 14 Q |
10312 |
|
|
(\316) 42 180.57 T |
10313 |
|
|
0 12 Q |
10314 |
|
|
(isin) 96 181.9 T |
10315 |
|
|
(element) 150 181.9 T |
10316 |
|
|
(CE) 240 181.9 T |
10317 |
|
|
(2208) 294 181.9 T |
10318 |
|
|
0 10 Q |
10319 |
|
|
(ELEMENT OF) 348 183.23 T |
10320 |
|
|
9 14 Q |
10321 |
|
|
(\317) 42 156.57 T |
10322 |
|
|
0 12 Q |
10323 |
|
|
(notin) 96 157.9 T |
10324 |
|
|
(notelement) 150 157.9 T |
10325 |
|
|
(CF) 240 157.9 T |
10326 |
|
|
(2209) 294 157.9 T |
10327 |
|
|
0 10 Q |
10328 |
|
|
(NOT AN ELEMENT OF) 348 159.23 T |
10329 |
|
|
9 14 Q |
10330 |
|
|
(\320) 42 132.57 T |
10331 |
|
|
0 12 Q |
10332 |
|
|
(ang) 96 133.9 T |
10333 |
|
|
(angle) 150 133.9 T |
10334 |
|
|
(D0) 240 133.9 T |
10335 |
|
|
(2220) 294 133.9 T |
10336 |
|
|
0 10 Q |
10337 |
|
|
(ANGLE) 348 135.23 T |
10338 |
|
|
9 14 Q |
10339 |
|
|
(\321) 42 108.57 T |
10340 |
|
|
0 12 Q |
10341 |
|
|
(nabla) 96 109.9 T |
10342 |
|
|
(gradient) 150 109.9 T |
10343 |
|
|
(D1) 240 109.9 T |
10344 |
|
|
(2207) 294 109.9 T |
10345 |
|
|
0 10 Q |
10346 |
|
|
(NABLA) 348 111.23 T |
10347 |
|
|
5 12 Q |
10348 |
|
|
(Symbol) 43.67 764.9 T |
10349 |
|
|
(ISO) 106.67 771.9 T |
10350 |
|
|
(8879) 105.01 757.9 T |
10351 |
|
|
(Adobe name) 156.85 764.9 T |
10352 |
|
|
(Adobe) 244.34 771.9 T |
10353 |
|
|
(Hex) 250.67 757.9 T |
10354 |
|
|
(Unicode) 294.01 764.9 T |
10355 |
|
|
(Unicode name) 413.52 764.9 T |
10356 |
|
|
36 787.65 36 100.15 2 L |
10357 |
|
|
V |
10358 |
|
|
0.5 H |
10359 |
|
|
0 Z |
10360 |
|
|
N |
10361 |
|
|
90 788.15 90 99.65 2 L |
10362 |
|
|
V |
10363 |
|
|
N |
10364 |
|
|
144 788.15 144 99.65 2 L |
10365 |
|
|
V |
10366 |
|
|
N |
10367 |
|
|
234 788.15 234 99.65 2 L |
10368 |
|
|
V |
10369 |
|
|
N |
10370 |
|
|
288 788.15 288 99.65 2 L |
10371 |
|
|
V |
10372 |
|
|
N |
10373 |
|
|
342 788.15 342 99.65 2 L |
10374 |
|
|
V |
10375 |
|
|
N |
10376 |
|
|
558 787.65 558 100.15 2 L |
10377 |
|
|
V |
10378 |
|
|
N |
10379 |
|
|
35.75 787.9 558.25 787.9 2 L |
10380 |
|
|
V |
10381 |
|
|
N |
10382 |
|
|
36.25 749.15 557.75 749.15 2 L |
10383 |
|
|
V |
10384 |
|
|
N |
10385 |
|
|
36.25 746.65 557.75 746.65 2 L |
10386 |
|
|
V |
10387 |
|
|
N |
10388 |
|
|
35.75 723.9 558.25 723.9 2 L |
10389 |
|
|
V |
10390 |
|
|
N |
10391 |
|
|
35.75 699.9 558.25 699.9 2 L |
10392 |
|
|
V |
10393 |
|
|
N |
10394 |
|
|
35.75 675.9 558.25 675.9 2 L |
10395 |
|
|
V |
10396 |
|
|
N |
10397 |
|
|
35.75 651.9 558.25 651.9 2 L |
10398 |
|
|
V |
10399 |
|
|
N |
10400 |
|
|
35.75 627.9 558.25 627.9 2 L |
10401 |
|
|
V |
10402 |
|
|
N |
10403 |
|
|
35.75 603.9 558.25 603.9 2 L |
10404 |
|
|
V |
10405 |
|
|
N |
10406 |
|
|
35.75 579.9 558.25 579.9 2 L |
10407 |
|
|
V |
10408 |
|
|
N |
10409 |
|
|
35.75 555.9 558.25 555.9 2 L |
10410 |
|
|
V |
10411 |
|
|
N |
10412 |
|
|
35.75 531.9 558.25 531.9 2 L |
10413 |
|
|
V |
10414 |
|
|
N |
10415 |
|
|
35.75 507.9 558.25 507.9 2 L |
10416 |
|
|
V |
10417 |
|
|
N |
10418 |
|
|
35.75 483.9 558.25 483.9 2 L |
10419 |
|
|
V |
10420 |
|
|
N |
10421 |
|
|
35.75 459.9 558.25 459.9 2 L |
10422 |
|
|
V |
10423 |
|
|
N |
10424 |
|
|
35.75 435.9 558.25 435.9 2 L |
10425 |
|
|
V |
10426 |
|
|
N |
10427 |
|
|
35.75 411.9 558.25 411.9 2 L |
10428 |
|
|
V |
10429 |
|
|
N |
10430 |
|
|
35.75 387.9 558.25 387.9 2 L |
10431 |
|
|
V |
10432 |
|
|
N |
10433 |
|
|
35.75 363.9 558.25 363.9 2 L |
10434 |
|
|
V |
10435 |
|
|
N |
10436 |
|
|
35.75 339.9 558.25 339.9 2 L |
10437 |
|
|
V |
10438 |
|
|
N |
10439 |
|
|
35.75 315.9 558.25 315.9 2 L |
10440 |
|
|
V |
10441 |
|
|
N |
10442 |
|
|
35.75 291.9 558.25 291.9 2 L |
10443 |
|
|
V |
10444 |
|
|
N |
10445 |
|
|
35.75 267.9 558.25 267.9 2 L |
10446 |
|
|
V |
10447 |
|
|
N |
10448 |
|
|
35.75 243.9 558.25 243.9 2 L |
10449 |
|
|
V |
10450 |
|
|
N |
10451 |
|
|
35.75 219.9 558.25 219.9 2 L |
10452 |
|
|
V |
10453 |
|
|
N |
10454 |
|
|
35.75 195.9 558.25 195.9 2 L |
10455 |
|
|
V |
10456 |
|
|
N |
10457 |
|
|
35.75 171.9 558.25 171.9 2 L |
10458 |
|
|
V |
10459 |
|
|
N |
10460 |
|
|
35.75 147.9 558.25 147.9 2 L |
10461 |
|
|
V |
10462 |
|
|
N |
10463 |
|
|
35.75 123.9 558.25 123.9 2 L |
10464 |
|
|
V |
10465 |
|
|
N |
10466 |
|
|
35.75 99.9 558.25 99.9 2 L |
10467 |
|
|
V |
10468 |
|
|
N |
10469 |
|
|
FMENDPAGE |
10470 |
|
|
%%EndPage: "54" 59 |
10471 |
|
|
%%Page: "55" 59 |
10472 |
|
|
595.3 841.9 0 FMBEGINPAGE |
10473 |
|
|
0 10 Q |
10474 |
|
|
0 X |
10475 |
|
|
0 K |
10476 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
10477 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
10478 |
|
|
(55) 292.65 70.23 T |
10479 |
|
|
9 14 Q |
10480 |
|
|
(\324) 42 732.57 T |
10481 |
|
|
0 12 Q |
10482 |
|
|
(trade) 96 733.9 T |
10483 |
|
|
(trademarkserif) 150 733.9 T |
10484 |
|
|
(D4) 240 733.9 T |
10485 |
|
|
(2122) 294 733.9 T |
10486 |
|
|
0 10 Q |
10487 |
|
|
(TRADEMARK) 348 735.23 T |
10488 |
|
|
9 14 Q |
10489 |
|
|
(\325) 42 708.57 T |
10490 |
|
|
0 12 Q |
10491 |
|
|
(prod) 96 709.9 T |
10492 |
|
|
(product) 150 709.9 T |
10493 |
|
|
(D5) 240 709.9 T |
10494 |
|
|
(220F) 294 709.9 T |
10495 |
|
|
0 10 Q |
10496 |
|
|
(N-AR) 348 711.23 T |
10497 |
|
|
(Y PRODUCT) 371.88 711.23 T |
10498 |
|
|
9 14 Q |
10499 |
|
|
(\326) 42 684.57 T |
10500 |
|
|
0 12 Q |
10501 |
|
|
(radic) 96 685.9 T |
10502 |
|
|
(radical) 150 685.9 T |
10503 |
|
|
(D6) 240 685.9 T |
10504 |
|
|
(221A) 294 685.9 T |
10505 |
|
|
0 10 Q |
10506 |
|
|
(SQUARE ROOT) 348 687.23 T |
10507 |
|
|
9 14 Q |
10508 |
|
|
(\327) 42 660.57 T |
10509 |
|
|
0 12 Q |
10510 |
|
|
(sdot) 96 661.9 T |
10511 |
|
|
(dotmath) 150 661.9 T |
10512 |
|
|
(D7) 240 661.9 T |
10513 |
|
|
(22C5) 294 661.9 T |
10514 |
|
|
0 10 Q |
10515 |
|
|
(DOT OPERA) 348 663.23 T |
10516 |
|
|
(T) 402.69 663.23 T |
10517 |
|
|
(OR) 408.62 663.23 T |
10518 |
|
|
9 14 Q |
10519 |
|
|
(\331) 42 636.57 T |
10520 |
|
|
0 12 Q |
10521 |
|
|
(and) 96 637.9 T |
10522 |
|
|
(logicaland) 150 637.9 T |
10523 |
|
|
(D9) 240 637.9 T |
10524 |
|
|
(2227) 294 637.9 T |
10525 |
|
|
0 10 Q |
10526 |
|
|
(LOGICAL AND) 348 639.23 T |
10527 |
|
|
9 14 Q |
10528 |
|
|
(\332) 42 612.57 T |
10529 |
|
|
0 12 Q |
10530 |
|
|
(or) 96 613.9 T |
10531 |
|
|
(logicalor) 150 613.9 T |
10532 |
|
|
(DA) 240 613.9 T |
10533 |
|
|
(2228) 294 613.9 T |
10534 |
|
|
0 10 Q |
10535 |
|
|
(LOGICAL OR) 348 615.23 T |
10536 |
|
|
9 14 Q |
10537 |
|
|
(\333) 42 588.57 T |
10538 |
|
|
0 12 Q |
10539 |
|
|
(hArr) 96 589.9 T |
10540 |
|
|
(arrowdblboth) 150 589.9 T |
10541 |
|
|
(DB) 240 589.9 T |
10542 |
|
|
(21D4) 294 589.9 T |
10543 |
|
|
0 10 Q |
10544 |
|
|
(LEFT RIGHT DOUBLE ARROW) 348 591.23 T |
10545 |
|
|
9 14 Q |
10546 |
|
|
(\334) 42 564.57 T |
10547 |
|
|
0 12 Q |
10548 |
|
|
(lArr) 96 565.9 T |
10549 |
|
|
(arrowdblleft) 150 565.9 T |
10550 |
|
|
(DC) 240 565.9 T |
10551 |
|
|
(21D0) 294 565.9 T |
10552 |
|
|
0 10 Q |
10553 |
|
|
(LEFT DOUBLE ARROW) 348 567.23 T |
10554 |
|
|
9 14 Q |
10555 |
|
|
(\335) 42 540.57 T |
10556 |
|
|
0 12 Q |
10557 |
|
|
(uArr) 96 541.9 T |
10558 |
|
|
(arrowdblup) 150 541.9 T |
10559 |
|
|
(DD) 240 541.9 T |
10560 |
|
|
(21D1) 294 541.9 T |
10561 |
|
|
0 10 Q |
10562 |
|
|
(UP DOUBLE ARROW) 348 543.23 T |
10563 |
|
|
9 14 Q |
10564 |
|
|
(\336) 42 516.57 T |
10565 |
|
|
0 12 Q |
10566 |
|
|
(rArr) 96 517.9 T |
10567 |
|
|
(arrowdblright) 150 517.9 T |
10568 |
|
|
(DE) 240 517.9 T |
10569 |
|
|
(21D2) 294 517.9 T |
10570 |
|
|
0 10 Q |
10571 |
|
|
(RIGHT DOUBLE ARROW) 348 519.23 T |
10572 |
|
|
9 14 Q |
10573 |
|
|
(\337) 42 492.57 T |
10574 |
|
|
0 12 Q |
10575 |
|
|
(dArr) 96 493.9 T |
10576 |
|
|
(arrowdbldown) 150 493.9 T |
10577 |
|
|
(DF) 240 493.9 T |
10578 |
|
|
(21D3) 294 493.9 T |
10579 |
|
|
0 10 Q |
10580 |
|
|
(DOWN DOUBLE ARROW) 348 495.23 T |
10581 |
|
|
9 14 Q |
10582 |
|
|
(\340) 42 468.57 T |
10583 |
|
|
0 12 Q |
10584 |
|
|
(loz) 96 469.9 T |
10585 |
|
|
(lozenge) 150 469.9 T |
10586 |
|
|
(E0) 240 469.9 T |
10587 |
|
|
(25CA) 294 469.9 T |
10588 |
|
|
0 10 Q |
10589 |
|
|
(LOZENGE) 348 471.23 T |
10590 |
|
|
9 14 Q |
10591 |
|
|
(\341) 42 444.57 T |
10592 |
|
|
0 12 Q |
10593 |
|
|
(lang) 96 445.9 T |
10594 |
|
|
(angleleft) 150 445.9 T |
10595 |
|
|
(E1) 240 445.9 T |
10596 |
|
|
(2329) 294 445.9 T |
10597 |
|
|
0 10 Q |
10598 |
|
|
(BRA) 348 447.23 T |
10599 |
|
|
9 14 Q |
10600 |
|
|
(\345) 42 420.57 T |
10601 |
|
|
0 12 Q |
10602 |
|
|
(sum) 96 421.9 T |
10603 |
|
|
(summation) 150 421.9 T |
10604 |
|
|
(E5) 240 421.9 T |
10605 |
|
|
(221) 294 421.9 T |
10606 |
|
|
(1) 311.55 421.9 T |
10607 |
|
|
0 10 Q |
10608 |
|
|
(N-AR) 348 423.23 T |
10609 |
|
|
(Y SUMMA) 371.88 423.23 T |
10610 |
|
|
(TION) 418.24 423.23 T |
10611 |
|
|
9 12 Q |
10612 |
|
|
(\346) 42 397.9 T |
10613 |
|
|
0 F |
10614 |
|
|
(parenlefttp) 150 397.9 T |
10615 |
|
|
(E6) 240 397.9 T |
10616 |
|
|
9 F |
10617 |
|
|
(\347) 42 375.9 T |
10618 |
|
|
0 F |
10619 |
|
|
(parenleftex) 150 375.9 T |
10620 |
|
|
(E7) 240 375.9 T |
10621 |
|
|
9 F |
10622 |
|
|
(\350) 42 353.9 T |
10623 |
|
|
0 F |
10624 |
|
|
(parenleftbt) 150 353.9 T |
10625 |
|
|
(E8) 240 353.9 T |
10626 |
|
|
9 14 Q |
10627 |
|
|
(\351) 42 330.57 T |
10628 |
|
|
0 12 Q |
10629 |
|
|
(lceil) 96 331.9 T |
10630 |
|
|
(bracketlefttp) 150 331.9 T |
10631 |
|
|
(E9) 240 331.9 T |
10632 |
|
|
(2308) 294 331.9 T |
10633 |
|
|
0 10 Q |
10634 |
|
|
(LEFT CEILING) 348 333.23 T |
10635 |
|
|
9 12 Q |
10636 |
|
|
(\352) 42 307.9 T |
10637 |
|
|
0 F |
10638 |
|
|
(bracketleftex) 150 307.9 T |
10639 |
|
|
(EA) 240 307.9 T |
10640 |
|
|
9 F |
10641 |
|
|
(\353) 42 285.9 T |
10642 |
|
|
0 F |
10643 |
|
|
(l\337oor) 96 285.9 T |
10644 |
|
|
(bracketleftbt) 150 285.9 T |
10645 |
|
|
(EB) 240 285.9 T |
10646 |
|
|
(230A) 294 285.9 T |
10647 |
|
|
0 10 Q |
10648 |
|
|
(LEFT FLOOR) 348 287.23 T |
10649 |
|
|
9 12 Q |
10650 |
|
|
(\354) 42 263.9 T |
10651 |
|
|
0 F |
10652 |
|
|
(bracelefttp) 150 263.9 T |
10653 |
|
|
(EC) 240 263.9 T |
10654 |
|
|
9 F |
10655 |
|
|
(\355) 42 241.9 T |
10656 |
|
|
0 F |
10657 |
|
|
(braceleftmid) 150 241.9 T |
10658 |
|
|
(ED) 240 241.9 T |
10659 |
|
|
9 F |
10660 |
|
|
(\356) 42 219.9 T |
10661 |
|
|
0 F |
10662 |
|
|
(braceleftbt) 150 219.9 T |
10663 |
|
|
(EE) 240 219.9 T |
10664 |
|
|
9 F |
10665 |
|
|
(\357) 42 197.9 T |
10666 |
|
|
0 F |
10667 |
|
|
(braceex) 150 197.9 T |
10668 |
|
|
(EF) 240 197.9 T |
10669 |
|
|
9 14 Q |
10670 |
|
|
(\361) 42 174.57 T |
10671 |
|
|
0 12 Q |
10672 |
|
|
(rang) 96 175.9 T |
10673 |
|
|
(angleright) 150 175.9 T |
10674 |
|
|
(F1) 240 175.9 T |
10675 |
|
|
(232A) 294 175.9 T |
10676 |
|
|
0 10 Q |
10677 |
|
|
(KET) 348 177.23 T |
10678 |
|
|
9 14 Q |
10679 |
|
|
(\362) 42 150.57 T |
10680 |
|
|
0 12 Q |
10681 |
|
|
(int) 96 151.9 T |
10682 |
|
|
(integral) 150 151.9 T |
10683 |
|
|
(F2) 240 151.9 T |
10684 |
|
|
(222B) 294 151.9 T |
10685 |
|
|
0 10 Q |
10686 |
|
|
(INTEGRAL) 348 153.23 T |
10687 |
|
|
9 14 Q |
10688 |
|
|
(\363) 42 126.57 T |
10689 |
|
|
0 12 Q |
10690 |
|
|
(integraltp) 150 127.9 T |
10691 |
|
|
(F3) 240 127.9 T |
10692 |
|
|
(2320) 294 127.9 T |
10693 |
|
|
0 10 Q |
10694 |
|
|
(T) 348 129.23 T |
10695 |
|
|
(OP HALF INTEGRAL) 353.93 129.23 T |
10696 |
|
|
9 12 Q |
10697 |
|
|
(\364) 42 103.9 T |
10698 |
|
|
0 F |
10699 |
|
|
(integralex) 150 103.9 T |
10700 |
|
|
(F4) 240 103.9 T |
10701 |
|
|
5 F |
10702 |
|
|
(Symbol) 43.67 764.9 T |
10703 |
|
|
(ISO) 106.67 771.9 T |
10704 |
|
|
(8879) 105.01 757.9 T |
10705 |
|
|
(Adobe name) 156.85 764.9 T |
10706 |
|
|
(Adobe) 244.34 771.9 T |
10707 |
|
|
(Hex) 250.67 757.9 T |
10708 |
|
|
(Unicode) 294.01 764.9 T |
10709 |
|
|
(Unicode name) 413.52 764.9 T |
10710 |
|
|
36 787.65 36 96.15 2 L |
10711 |
|
|
V |
10712 |
|
|
0.5 H |
10713 |
|
|
0 Z |
10714 |
|
|
N |
10715 |
|
|
90 788.15 90 95.65 2 L |
10716 |
|
|
V |
10717 |
|
|
N |
10718 |
|
|
144 788.15 144 95.65 2 L |
10719 |
|
|
V |
10720 |
|
|
N |
10721 |
|
|
234 788.15 234 95.65 2 L |
10722 |
|
|
V |
10723 |
|
|
N |
10724 |
|
|
288 788.15 288 95.65 2 L |
10725 |
|
|
V |
10726 |
|
|
N |
10727 |
|
|
342 788.15 342 95.65 2 L |
10728 |
|
|
V |
10729 |
|
|
N |
10730 |
|
|
558 787.65 558 96.15 2 L |
10731 |
|
|
V |
10732 |
|
|
N |
10733 |
|
|
35.75 787.9 558.25 787.9 2 L |
10734 |
|
|
V |
10735 |
|
|
N |
10736 |
|
|
36.25 749.15 557.75 749.15 2 L |
10737 |
|
|
V |
10738 |
|
|
N |
10739 |
|
|
36.25 746.65 557.75 746.65 2 L |
10740 |
|
|
V |
10741 |
|
|
N |
10742 |
|
|
35.75 723.9 558.25 723.9 2 L |
10743 |
|
|
V |
10744 |
|
|
N |
10745 |
|
|
35.75 699.9 558.25 699.9 2 L |
10746 |
|
|
V |
10747 |
|
|
N |
10748 |
|
|
35.75 675.9 558.25 675.9 2 L |
10749 |
|
|
V |
10750 |
|
|
N |
10751 |
|
|
35.75 651.9 558.25 651.9 2 L |
10752 |
|
|
V |
10753 |
|
|
N |
10754 |
|
|
35.75 627.9 558.25 627.9 2 L |
10755 |
|
|
V |
10756 |
|
|
N |
10757 |
|
|
35.75 603.9 558.25 603.9 2 L |
10758 |
|
|
V |
10759 |
|
|
N |
10760 |
|
|
35.75 579.9 558.25 579.9 2 L |
10761 |
|
|
V |
10762 |
|
|
N |
10763 |
|
|
35.75 555.9 558.25 555.9 2 L |
10764 |
|
|
V |
10765 |
|
|
N |
10766 |
|
|
35.75 531.9 558.25 531.9 2 L |
10767 |
|
|
V |
10768 |
|
|
N |
10769 |
|
|
35.75 507.9 558.25 507.9 2 L |
10770 |
|
|
V |
10771 |
|
|
N |
10772 |
|
|
35.75 483.9 558.25 483.9 2 L |
10773 |
|
|
V |
10774 |
|
|
N |
10775 |
|
|
35.75 459.9 558.25 459.9 2 L |
10776 |
|
|
V |
10777 |
|
|
N |
10778 |
|
|
35.75 435.9 558.25 435.9 2 L |
10779 |
|
|
V |
10780 |
|
|
N |
10781 |
|
|
35.75 411.9 558.25 411.9 2 L |
10782 |
|
|
V |
10783 |
|
|
N |
10784 |
|
|
35.75 389.9 558.25 389.9 2 L |
10785 |
|
|
V |
10786 |
|
|
N |
10787 |
|
|
35.75 367.9 558.25 367.9 2 L |
10788 |
|
|
V |
10789 |
|
|
N |
10790 |
|
|
35.75 345.9 558.25 345.9 2 L |
10791 |
|
|
V |
10792 |
|
|
N |
10793 |
|
|
35.75 321.9 558.25 321.9 2 L |
10794 |
|
|
V |
10795 |
|
|
N |
10796 |
|
|
35.75 299.9 558.25 299.9 2 L |
10797 |
|
|
V |
10798 |
|
|
N |
10799 |
|
|
35.75 277.9 558.25 277.9 2 L |
10800 |
|
|
V |
10801 |
|
|
N |
10802 |
|
|
35.75 255.9 558.25 255.9 2 L |
10803 |
|
|
V |
10804 |
|
|
N |
10805 |
|
|
35.75 233.9 558.25 233.9 2 L |
10806 |
|
|
V |
10807 |
|
|
N |
10808 |
|
|
35.75 211.9 558.25 211.9 2 L |
10809 |
|
|
V |
10810 |
|
|
N |
10811 |
|
|
35.75 189.9 558.25 189.9 2 L |
10812 |
|
|
V |
10813 |
|
|
N |
10814 |
|
|
35.75 165.9 558.25 165.9 2 L |
10815 |
|
|
V |
10816 |
|
|
N |
10817 |
|
|
35.75 141.9 558.25 141.9 2 L |
10818 |
|
|
V |
10819 |
|
|
N |
10820 |
|
|
35.75 117.9 558.25 117.9 2 L |
10821 |
|
|
V |
10822 |
|
|
N |
10823 |
|
|
35.75 95.9 558.25 95.9 2 L |
10824 |
|
|
V |
10825 |
|
|
N |
10826 |
|
|
FMENDPAGE |
10827 |
|
|
%%EndPage: "55" 60 |
10828 |
|
|
%%Page: "56" 60 |
10829 |
|
|
595.3 841.9 0 FMBEGINPAGE |
10830 |
|
|
0 10 Q |
10831 |
|
|
0 X |
10832 |
|
|
0 K |
10833 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
10834 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
10835 |
|
|
(56) 292.65 70.23 T |
10836 |
|
|
0 12 Q |
10837 |
|
|
(Many thanks to Bob Stayton for volunteering his time and ef) 36 503.9 T |
10838 |
|
|
(fort to prepare this table.) 327.61 503.9 T |
10839 |
|
|
9 14 Q |
10840 |
|
|
(\365) 42 734.57 T |
10841 |
|
|
0 12 Q |
10842 |
|
|
(integralbt) 150 733.9 T |
10843 |
|
|
(F5) 240 733.9 T |
10844 |
|
|
(2321) 294 733.9 T |
10845 |
|
|
0 10 Q |
10846 |
|
|
(BOTT) 348 735.23 T |
10847 |
|
|
(OM HALF INTEGRAL) 373.92 735.23 T |
10848 |
|
|
9 12 Q |
10849 |
|
|
(\366) 42 709.9 T |
10850 |
|
|
0 F |
10851 |
|
|
(parenrighttp) 150 709.9 T |
10852 |
|
|
(F6) 240 709.9 T |
10853 |
|
|
9 F |
10854 |
|
|
(\367) 42 687.9 T |
10855 |
|
|
0 F |
10856 |
|
|
(parenrightex) 150 687.9 T |
10857 |
|
|
(F7) 240 687.9 T |
10858 |
|
|
9 F |
10859 |
|
|
(\370) 42 665.9 T |
10860 |
|
|
0 F |
10861 |
|
|
(parenrightbt) 150 665.9 T |
10862 |
|
|
(F8) 240 665.9 T |
10863 |
|
|
9 F |
10864 |
|
|
(\371) 42 643.9 T |
10865 |
|
|
0 F |
10866 |
|
|
(rceil) 96 643.9 T |
10867 |
|
|
(bracketrighttp) 150 643.9 T |
10868 |
|
|
(F9) 240 643.9 T |
10869 |
|
|
(2309) 294 643.9 T |
10870 |
|
|
0 10 Q |
10871 |
|
|
(RIGHT CEILING) 348 645.23 T |
10872 |
|
|
9 12 Q |
10873 |
|
|
(\372) 42 621.9 T |
10874 |
|
|
0 F |
10875 |
|
|
(bracketrightex) 150 621.9 T |
10876 |
|
|
(F) 240 621.9 T |
10877 |
|
|
(A) 245.78 621.9 T |
10878 |
|
|
9 F |
10879 |
|
|
(\373) 42 599.9 T |
10880 |
|
|
0 F |
10881 |
|
|
(r\337oor) 96 599.9 T |
10882 |
|
|
(bracketrightbt) 150 599.9 T |
10883 |
|
|
(FB) 240 599.9 T |
10884 |
|
|
(230B) 294 599.9 T |
10885 |
|
|
0 10 Q |
10886 |
|
|
(RIGHT FLOOR) 348 601.23 T |
10887 |
|
|
9 12 Q |
10888 |
|
|
(\374) 42 577.9 T |
10889 |
|
|
0 F |
10890 |
|
|
(bracerighttp) 150 577.9 T |
10891 |
|
|
(FC) 240 577.9 T |
10892 |
|
|
9 14 Q |
10893 |
|
|
(\375) 42 557.57 T |
10894 |
|
|
0 12 Q |
10895 |
|
|
(bracerightmid) 150 555.9 T |
10896 |
|
|
(FD) 240 555.9 T |
10897 |
|
|
9 F |
10898 |
|
|
(\376) 42 531.9 T |
10899 |
|
|
0 F |
10900 |
|
|
(bracerightbt) 150 531.9 T |
10901 |
|
|
(FE) 240 531.9 T |
10902 |
|
|
5 F |
10903 |
|
|
(Symbol) 43.67 764.9 T |
10904 |
|
|
(ISO) 106.67 771.9 T |
10905 |
|
|
(8879) 105.01 757.9 T |
10906 |
|
|
(Adobe name) 156.85 764.9 T |
10907 |
|
|
(Adobe) 244.34 771.9 T |
10908 |
|
|
(Hex) 250.67 757.9 T |
10909 |
|
|
(Unicode) 294.01 764.9 T |
10910 |
|
|
(Unicode name) 413.52 764.9 T |
10911 |
|
|
36 787.65 36 524.15 2 L |
10912 |
|
|
V |
10913 |
|
|
0.5 H |
10914 |
|
|
0 Z |
10915 |
|
|
N |
10916 |
|
|
90 788.15 90 523.65 2 L |
10917 |
|
|
V |
10918 |
|
|
N |
10919 |
|
|
144 788.15 144 523.65 2 L |
10920 |
|
|
V |
10921 |
|
|
N |
10922 |
|
|
234 788.15 234 523.65 2 L |
10923 |
|
|
V |
10924 |
|
|
N |
10925 |
|
|
288 788.15 288 523.65 2 L |
10926 |
|
|
V |
10927 |
|
|
N |
10928 |
|
|
342 788.15 342 523.65 2 L |
10929 |
|
|
V |
10930 |
|
|
N |
10931 |
|
|
558 787.65 558 524.15 2 L |
10932 |
|
|
V |
10933 |
|
|
N |
10934 |
|
|
35.75 787.9 558.25 787.9 2 L |
10935 |
|
|
V |
10936 |
|
|
N |
10937 |
|
|
36.25 749.15 557.75 749.15 2 L |
10938 |
|
|
V |
10939 |
|
|
N |
10940 |
|
|
36.25 746.65 557.75 746.65 2 L |
10941 |
|
|
V |
10942 |
|
|
N |
10943 |
|
|
35.75 723.9 558.25 723.9 2 L |
10944 |
|
|
V |
10945 |
|
|
N |
10946 |
|
|
35.75 701.9 558.25 701.9 2 L |
10947 |
|
|
V |
10948 |
|
|
N |
10949 |
|
|
35.75 679.9 558.25 679.9 2 L |
10950 |
|
|
V |
10951 |
|
|
N |
10952 |
|
|
35.75 657.9 558.25 657.9 2 L |
10953 |
|
|
V |
10954 |
|
|
N |
10955 |
|
|
35.75 635.9 558.25 635.9 2 L |
10956 |
|
|
V |
10957 |
|
|
N |
10958 |
|
|
35.75 613.9 558.25 613.9 2 L |
10959 |
|
|
V |
10960 |
|
|
N |
10961 |
|
|
35.75 591.9 558.25 591.9 2 L |
10962 |
|
|
V |
10963 |
|
|
N |
10964 |
|
|
35.75 569.9 558.25 569.9 2 L |
10965 |
|
|
V |
10966 |
|
|
N |
10967 |
|
|
35.75 545.9 558.25 545.9 2 L |
10968 |
|
|
V |
10969 |
|
|
N |
10970 |
|
|
35.75 523.9 558.25 523.9 2 L |
10971 |
|
|
V |
10972 |
|
|
N |
10973 |
|
|
FMENDPAGE |
10974 |
|
|
%%EndPage: "56" 61 |
10975 |
|
|
%%Page: "57" 61 |
10976 |
|
|
595.3 841.9 0 FMBEGINPAGE |
10977 |
|
|
0 10 Q |
10978 |
|
|
0 X |
10979 |
|
|
0 K |
10980 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
10981 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
10982 |
|
|
(57) 292.65 70.23 T |
10983 |
|
|
1 18 Q |
10984 |
|
|
(Appendix III) 246.66 757.9 T |
10985 |
|
|
3 12 Q |
10986 |
|
|
(ANSI C Code for testing if a point lies within a polygon.) 144 725.9 T |
10987 |
|
|
(This may be freely used provided the original copyright) 144 711.9 T |
10988 |
|
|
(message is retained in full.) 144 697.9 T |
10989 |
|
|
2 10 Q |
10990 |
|
|
(/*) 72 680.23 T |
10991 |
|
|
(** Reproduced with thanks from mapper 1.2) 72 668.23 T |
10992 |
|
|
(** 7/26/93 Kevin Hughes, kevinh@pulua.hcc.hawaii.edu) 72 656.23 T |
10993 |
|
|
(** polygon code copyright 1992 by Eric Haines, erich@eye.com) 72 644.23 T |
10994 |
|
|
(*/) 72 632.23 T |
10995 |
|
|
(#include <stdio.h>) 72 608.23 T |
10996 |
|
|
(#def) 72 584.23 T |
10997 |
|
|
(ine MAXLINE 500) 95.99 584.23 T |
10998 |
|
|
(#def) 72 572.23 T |
10999 |
|
|
(ine MAXVERTS 100) 95.99 572.23 T |
11000 |
|
|
(#def) 72 560.23 T |
11001 |
|
|
(ine X 0) 95.99 560.23 T |
11002 |
|
|
(#def) 72 548.23 T |
11003 |
|
|
(ine Y 1) 95.99 548.23 T |
11004 |
|
|
(int pointinpoly\050double point[2], double pgon[MAXVERTS][2]\051) 72 524.23 T |
11005 |
|
|
({) 72 512.23 T |
11006 |
|
|
( int i, numverts, inside_f) 72 500.23 T |
11007 |
|
|
(lag, xf) 245.9 500.23 T |
11008 |
|
|
(lag0;) 287.88 500.23 T |
11009 |
|
|
( int crossings;) 72 488.23 T |
11010 |
|
|
( double *p, *stop;) 72 476.23 T |
11011 |
|
|
( double tx, ty, y;) 72 464.23 T |
11012 |
|
|
( for \050i = 0; pgon[i][X] != -1 && i < MAXVERTS; i++\051) 72 440.23 T |
11013 |
|
|
( ;) 72 428.23 T |
11014 |
|
|
( numverts = i;) 72 416.23 T |
11015 |
|
|
( crossings = 0;) 72 404.23 T |
11016 |
|
|
( tx = point[X];) 72 380.23 T |
11017 |
|
|
( ty = point[Y];) 72 368.23 T |
11018 |
|
|
( y = pgon[numverts - 1][Y];) 72 356.23 T |
11019 |
|
|
( p = \050double *\051 pgon + 1;) 72 332.23 T |
11020 |
|
|
( if \050\050y >= ty\051 != \050*p >= ty\051\051) 72 320.23 T |
11021 |
|
|
( {) 72 308.23 T |
11022 |
|
|
( if \050\050xf) 72 296.23 T |
11023 |
|
|
(lag0 = \050pgon[numverts - 1][X] >= tx\051\051 ==) 161.95 296.23 T |
11024 |
|
|
( \050*\050double *\051 pgon >= tx\051\051) 72 284.23 T |
11025 |
|
|
( {) 72 272.23 T |
11026 |
|
|
( if \050xf) 72 260.23 T |
11027 |
|
|
(lag0\051) 179.94 260.23 T |
11028 |
|
|
( crossings++;) 72 248.23 T |
11029 |
|
|
( }) 72 236.23 T |
11030 |
|
|
( else) 72 224.23 T |
11031 |
|
|
( {) 72 212.23 T |
11032 |
|
|
( crossings += \050pgon[numverts - 1][X] - \050y - ty\051 *) 72 200.23 T |
11033 |
|
|
( \050*\050double *\051 pgon - pgon[numverts - 1][X]\051 /) 72 188.23 T |
11034 |
|
|
( \050*p - y\051\051 >= tx;) 72 176.23 T |
11035 |
|
|
( }) 72 164.23 T |
11036 |
|
|
( }) 72 152.23 T |
11037 |
|
|
( stop = pgon[numverts];) 72 128.23 T |
11038 |
|
|
FMENDPAGE |
11039 |
|
|
%%EndPage: "57" 62 |
11040 |
|
|
%%Page: "58" 62 |
11041 |
|
|
595.3 841.9 0 FMBEGINPAGE |
11042 |
|
|
0 10 Q |
11043 |
|
|
0 X |
11044 |
|
|
0 K |
11045 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
11046 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
11047 |
|
|
(58) 292.65 70.23 T |
11048 |
|
|
2 F |
11049 |
|
|
( for \050y = *p, p += 2; p < stop; y = *p, p += 2\051) 72 763.23 T |
11050 |
|
|
( {) 72 751.23 T |
11051 |
|
|
( if \050y >= ty\051) 72 739.23 T |
11052 |
|
|
( {) 72 727.23 T |
11053 |
|
|
( while \050\050p < stop\051 && \050*p >= ty\051\051) 72 715.23 T |
11054 |
|
|
( p += 2;) 72 703.23 T |
11055 |
|
|
( if \050p >= stop\051) 72 691.23 T |
11056 |
|
|
( break;) 72 679.23 T |
11057 |
|
|
( if \050\050xf) 72 667.23 T |
11058 |
|
|
(lag0 = \050*\050p - 3\051 >= tx\051\051 == \050*\050p - 1\051 >= tx\051\051) 185.94 667.23 T |
11059 |
|
|
( {) 72 655.23 T |
11060 |
|
|
( if \050xf) 72 643.23 T |
11061 |
|
|
(lag0\051) 203.93 643.23 T |
11062 |
|
|
( crossings++;) 72 631.23 T |
11063 |
|
|
( }) 72 619.23 T |
11064 |
|
|
( else) 72 607.23 T |
11065 |
|
|
( {) 72 595.23 T |
11066 |
|
|
( crossings += \050*\050p - 3\051 - \050*\050p - 2\051 - ty\051 *) 72 583.23 T |
11067 |
|
|
-0.1 ( \050*\050p - 1\051 - *\050p - 3\051\051 / \050*p - *\050p - 2\051\051\051 >= tx;) 72 571.23 P |
11068 |
|
|
( }) 72 559.23 T |
11069 |
|
|
( }) 72 547.23 T |
11070 |
|
|
( else) 72 535.23 T |
11071 |
|
|
( {) 72 523.23 T |
11072 |
|
|
( while \050\050p < stop\051 && \050*p < ty\051\051) 72 511.23 T |
11073 |
|
|
( p += 2;) 72 499.23 T |
11074 |
|
|
( if \050p >= stop\051) 72 487.23 T |
11075 |
|
|
( break;) 72 475.23 T |
11076 |
|
|
( if \050\050xf) 72 463.23 T |
11077 |
|
|
(lag0 = \050*\050p - 3\051 >= tx\051\051 == \050*\050p - 1\051 >= tx\051\051) 185.94 463.23 T |
11078 |
|
|
( {) 72 451.23 T |
11079 |
|
|
( if \050xf) 72 439.23 T |
11080 |
|
|
(lag0\051) 203.93 439.23 T |
11081 |
|
|
( crossings++;) 72 427.23 T |
11082 |
|
|
( }) 72 415.23 T |
11083 |
|
|
( else) 72 403.23 T |
11084 |
|
|
( {) 72 391.23 T |
11085 |
|
|
( crossings += \050*\050p - 3\051 - \050*\050p - 2\051 - ty\051 *) 72 379.23 T |
11086 |
|
|
-0.1 ( \050*\050p - 1\051 - *\050p - 3\051\051 / \050*p - *\050p - 2\051\051\051 >= tx;) 72 367.23 P |
11087 |
|
|
( }) 72 355.23 T |
11088 |
|
|
( }) 72 343.23 T |
11089 |
|
|
( }) 72 331.23 T |
11090 |
|
|
( inside_f) 72 319.23 T |
11091 |
|
|
(lag = crossings & 0x01;) 143.96 319.23 T |
11092 |
|
|
( return \050inside_f) 72 307.23 T |
11093 |
|
|
(lag\051;) 191.93 307.23 T |
11094 |
|
|
(}) 72 295.23 T |
11095 |
|
|
FMENDPAGE |
11096 |
|
|
%%EndPage: "58" 63 |
11097 |
|
|
%%Page: "59" 63 |
11098 |
|
|
595.3 841.9 0 FMBEGINPAGE |
11099 |
|
|
0 10 Q |
11100 |
|
|
0 X |
11101 |
|
|
0 K |
11102 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
11103 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
11104 |
|
|
(59) 292.65 70.23 T |
11105 |
|
|
1 18 Q |
11106 |
|
|
(Appendix IV) 245.67 757.9 T |
11107 |
|
|
3 12 Q |
11108 |
|
|
(Alphabetically sorted list of HTML+ tags and their) 144 725.9 T |
11109 |
|
|
(associated attribute names.) 144 711.9 T |
11110 |
|
|
(A) 72 682.9 T |
11111 |
|
|
(id, name, shape, href, rel, rev) 216 682.9 T |
11112 |
|
|
(, methods, ef) 371.1 682.9 T |
11113 |
|
|
(fect, print, title,) 440.22 682.9 T |
11114 |
|
|
(type, size, lang) 216 668.9 T |
11115 |
|
|
(ABBREV) 72 654.9 T |
11116 |
|
|
(id, lang, index) 216 654.9 T |
11117 |
|
|
(ABSTRACT) 72 640.9 T |
11118 |
|
|
(id, lang, index) 216 640.9 T |
11119 |
|
|
(ACRONYM) 72 626.9 T |
11120 |
|
|
(id, lang, index) 216 626.9 T |
11121 |
|
|
(ADDED) 72 612.9 T |
11122 |
|
|
(id, lang, index) 216 612.9 T |
11123 |
|
|
(ADDRESS) 72 598.9 T |
11124 |
|
|
(ARG) 72 584.9 T |
11125 |
|
|
(id, lang, index) 216 584.9 T |
11126 |
|
|
(B) 72 570.9 T |
11127 |
|
|
(id, lang, index) 216 570.9 T |
11128 |
|
|
(BASE) 72 556.9 T |
11129 |
|
|
(href) 216 556.9 T |
11130 |
|
|
(BLOCKQUOTE) 72 542.9 T |
11131 |
|
|
(BODY) 72 528.9 T |
11132 |
|
|
(BOX) 72 514.9 T |
11133 |
|
|
(BR) 72 500.9 T |
11134 |
|
|
(BYLINE) 72 486.9 T |
11135 |
|
|
(id, lang, index) 216 486.9 T |
11136 |
|
|
(CAPTION) 72 472.9 T |
11137 |
|
|
(id, lang, index) 216 472.9 T |
11138 |
|
|
(CHANGED) 72 458.9 T |
11139 |
|
|
(id, idref) 216 458.9 T |
11140 |
|
|
(CITE) 72 444.9 T |
11141 |
|
|
(id, lang, index) 216 444.9 T |
11142 |
|
|
(CMD) 72 430.9 T |
11143 |
|
|
(id, lang, index) 216 430.9 T |
11144 |
|
|
(CODE) 72 416.9 T |
11145 |
|
|
(id, lang, index) 216 416.9 T |
11146 |
|
|
(DD) 72 402.9 T |
11147 |
|
|
(id, lang, index) 216 402.9 T |
11148 |
|
|
(DFN) 72 388.9 T |
11149 |
|
|
(id, lang, index) 216 388.9 T |
11150 |
|
|
(DIR) 72 374.9 T |
11151 |
|
|
(id, lang, index) 216 374.9 T |
11152 |
|
|
(DL) 72 360.9 T |
11153 |
|
|
(id, compact, lang, index) 216 360.9 T |
11154 |
|
|
(DT) 72 346.9 T |
11155 |
|
|
(id, lang, index) 216 346.9 T |
11156 |
|
|
(EM) 72 332.9 T |
11157 |
|
|
(id, lang, index) 216 332.9 T |
11158 |
|
|
(FIG) 72 318.9 T |
11159 |
|
|
(id, align, ismap, src, index, lang) 216 318.9 T |
11160 |
|
|
(FOOTNOTE) 72 304.9 T |
11161 |
|
|
(id, lang, index) 216 304.9 T |
11162 |
|
|
(FORM) 72 290.9 T |
11163 |
|
|
(id, action, method, lang, index) 216 290.9 T |
11164 |
|
|
(H1) 72 276.9 T |
11165 |
|
|
(id, lang, index) 216 276.9 T |
11166 |
|
|
(H2) 72 262.9 T |
11167 |
|
|
(id, lang, index) 216 262.9 T |
11168 |
|
|
(H3) 72 248.9 T |
11169 |
|
|
(id, lang, index) 216 248.9 T |
11170 |
|
|
(H4) 72 234.9 T |
11171 |
|
|
(id, lang, index) 216 234.9 T |
11172 |
|
|
(H5) 72 220.9 T |
11173 |
|
|
(id, lang, index) 216 220.9 T |
11174 |
|
|
(H6) 72 206.9 T |
11175 |
|
|
(id, lang, index) 216 206.9 T |
11176 |
|
|
(HEAD) 72 192.9 T |
11177 |
|
|
(HTMLPLUS) 72 178.9 T |
11178 |
|
|
(version, forms) 216 178.9 T |
11179 |
|
|
(I) 72 164.9 T |
11180 |
|
|
(id, lang, index) 216 164.9 T |
11181 |
|
|
(IMAGE) 72 150.9 T |
11182 |
|
|
(src, align, seethru, ismap, lang) 216 150.9 T |
11183 |
|
|
(IMG) 72 136.9 T |
11184 |
|
|
(src, align, seethru, alt, ismap) 216 136.9 T |
11185 |
|
|
FMENDPAGE |
11186 |
|
|
%%EndPage: "59" 64 |
11187 |
|
|
%%Page: "60" 64 |
11188 |
|
|
595.3 841.9 0 FMBEGINPAGE |
11189 |
|
|
0 10 Q |
11190 |
|
|
0 X |
11191 |
|
|
0 K |
11192 |
|
|
(HTML+ Discussion Document) 72 799.23 T |
11193 |
|
|
6.31 (October 28, 1993) 441 799.23 P |
11194 |
|
|
(60) 292.65 70.23 T |
11195 |
|
|
3 12 Q |
11196 |
|
|
(INPUT) 72 761.9 T |
11197 |
|
|
(name, type, size, min, max, value, checked, disabled,) 216 761.9 T |
11198 |
|
|
(error) 216 747.9 T |
11199 |
|
|
(, src, align, lang) 240.66 747.9 T |
11200 |
|
|
(ISINDEX) 72 733.9 T |
11201 |
|
|
(href) 216 733.9 T |
11202 |
|
|
(KBD) 72 719.9 T |
11203 |
|
|
(id, lang, index) 216 719.9 T |
11204 |
|
|
(L) 72 705.9 T |
11205 |
|
|
(id, align, lang, index) 216 705.9 T |
11206 |
|
|
(LI) 72 691.9 T |
11207 |
|
|
(id, src, lang, index) 216 691.9 T |
11208 |
|
|
(LINK) 72 677.9 T |
11209 |
|
|
(idref, href, rel, rev) 216 677.9 T |
11210 |
|
|
(, methods) 309.09 677.9 T |
11211 |
|
|
(LIT) 72 663.9 T |
11212 |
|
|
(id, lang, index) 216 663.9 T |
11213 |
|
|
(MARGIN) 72 649.9 T |
11214 |
|
|
(id, lang, index) 216 649.9 T |
11215 |
|
|
(MA) 72 635.9 T |
11216 |
|
|
(TH) 89.1 635.9 T |
11217 |
|
|
(id) 216 635.9 T |
11218 |
|
|
(MENU) 72 621.9 T |
11219 |
|
|
(id, lang, index) 216 621.9 T |
11220 |
|
|
(NEXTID) 72 607.9 T |
11221 |
|
|
(n) 216 607.9 T |
11222 |
|
|
(NOTE) 72 593.9 T |
11223 |
|
|
(id, role, lang, index) 216 593.9 T |
11224 |
|
|
(OL) 72 579.9 T |
11225 |
|
|
(id, compact, lang, index) 216 579.9 T |
11226 |
|
|
(OPTION) 72 565.9 T |
11227 |
|
|
(selected, disabled, lang) 216 565.9 T |
11228 |
|
|
(OVER) 72 551.9 T |
11229 |
|
|
(P) 72 537.9 T |
11230 |
|
|
(id, align, lang, index) 216 537.9 T |
11231 |
|
|
(PERSON) 72 523.9 T |
11232 |
|
|
(id, lang, index) 216 523.9 T |
11233 |
|
|
(PRE) 72 509.9 T |
11234 |
|
|
(id, lang, index) 216 509.9 T |
11235 |
|
|
(Q) 72 495.9 T |
11236 |
|
|
(id, lang, index) 216 495.9 T |
11237 |
|
|
(QUOTE) 72 481.9 T |
11238 |
|
|
(id, lang, index) 216 481.9 T |
11239 |
|
|
(RENDER) 72 467.9 T |
11240 |
|
|
(tag, style) 216 467.9 T |
11241 |
|
|
(REMOVED) 72 453.9 T |
11242 |
|
|
(id, lang, index) 216 453.9 T |
11243 |
|
|
(S) 72 439.9 T |
11244 |
|
|
(id, lang, index) 216 439.9 T |
11245 |
|
|
(SAMP) 72 425.9 T |
11246 |
|
|
(id, lang, index) 216 425.9 T |
11247 |
|
|
(SELECT) 72 411.9 T |
11248 |
|
|
(name, several, error) 216 411.9 T |
11249 |
|
|
(, lang) 322.64 411.9 T |
11250 |
|
|
(STRONG) 72 397.9 T |
11251 |
|
|
(id, lang, index) 216 397.9 T |
11252 |
|
|
(SUB) 72 383.9 T |
11253 |
|
|
(id, lang, index) 216 383.9 T |
11254 |
|
|
(SUP) 72 369.9 T |
11255 |
|
|
(id, lang, index) 216 369.9 T |
11256 |
|
|
(T) 72 355.9 T |
11257 |
|
|
(AB) 78.44 355.9 T |
11258 |
|
|
(at, align) 216 355.9 T |
11259 |
|
|
(T) 72 341.9 T |
11260 |
|
|
(ABLE) 78.44 341.9 T |
11261 |
|
|
(id, border) 216 341.9 T |
11262 |
|
|
(, lang, index) 266 341.9 T |
11263 |
|
|
(TD) 72 327.9 T |
11264 |
|
|
(colspan, rowspan, align, lang) 216 327.9 T |
11265 |
|
|
(TEXT) 72 313.9 T |
11266 |
|
|
(AREA) 101.77 313.9 T |
11267 |
|
|
(name, cols, rows, disabled, error) 216 313.9 T |
11268 |
|
|
(, lang) 388.63 313.9 T |
11269 |
|
|
(TH) 72 299.9 T |
11270 |
|
|
(colspan, rowspan, align, lang) 216 299.9 T |
11271 |
|
|
(TITLE) 72 285.9 T |
11272 |
|
|
(id, lang, index) 216 285.9 T |
11273 |
|
|
(TR) 72 271.9 T |
11274 |
|
|
(id) 216 271.9 T |
11275 |
|
|
(TT) 72 257.9 T |
11276 |
|
|
(id, lang, index) 216 257.9 T |
11277 |
|
|
(U) 72 243.9 T |
11278 |
|
|
(id, lang, index) 216 243.9 T |
11279 |
|
|
(UL) 72 229.9 T |
11280 |
|
|
(id, compact, plain, wrap, lang, index) 216 229.9 T |
11281 |
|
|
(V) 72 215.9 T |
11282 |
|
|
(AR) 79.11 215.9 T |
11283 |
|
|
(id, lang, index) 216 215.9 T |
11284 |
|
|
FMENDPAGE |
11285 |
|
|
%%EndPage: "60" 65 |
11286 |
|
|
%%Trailer |
11287 |
|
|
%%BoundingBox: 0 0 595.3 841.9 |
11288 |
|
|
%%Pages: 64 1 |
11289 |
|
|
%%DocumentFonts: Times-Roman |
11290 |
|
|
%%+ Helvetica-Bold |
11291 |
|
|
%%+ Courier |
11292 |
|
|
%%+ Helvetica |
11293 |
|
|
%%+ Times-Italic |
11294 |
|
|
%%+ Times-Bold |
11295 |
|
|
%%+ Courier-Oblique |
11296 |
|
|
%%+ Courier-BoldOblique |
11297 |
|
|
%%+ Courier-Bold |
11298 |
|
|
%%+ Symbol |