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 792 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: Letter |
976 |
|
|
%%EndPaperSize |
977 |
|
|
595.3 792 0 FMBEGINPAGE |
978 |
|
|
0 10 Q |
979 |
|
|
0 X |
980 |
|
|
0 K |
981 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
982 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
983 |
|
|
(INTERNET-DRAFT) 70.7 64.28 T |
984 |
|
|
(i) 294.96 64.28 T |
985 |
|
|
1 18 Q |
986 |
|
|
(HTML+ \050Hypertext markup format\051) 151.96 732.95 T |
987 |
|
|
1 14 Q |
988 |
|
|
(Status of this memo) 72 697.61 T |
989 |
|
|
0 12 Q |
990 |
|
|
(This document is an Internet-Draft. Internet-Drafts are working documents of the Internet) 72 677.95 T |
991 |
|
|
-0.06 (Engineering T) 72 663.95 P |
992 |
|
|
-0.06 (ask Force \050IETF\051, its areas, and its working groups. Note that other groups may) 140.05 663.95 P |
993 |
|
|
(also distribute working documents as Internet-Drafts.) 72 649.95 T |
994 |
|
|
(Internet-Drafts are draft documents valid for a maximum of six months. Internet-Drafts may) 72 630.95 T |
995 |
|
|
-0.06 (be updated, replaced, or obsoleted by other documents at any time. It is not appropriate to use) 72 616.95 P |
996 |
|
|
(Internet-Drafts as reference material or to cite them other than as a \322working draft\323 or \322work) 72 602.95 T |
997 |
|
|
(in progress\323.) 72 588.95 T |
998 |
|
|
-0.12 (T) 72 569.95 P |
999 |
|
|
-0.12 (o learn the current status of any Internet-Draft, please check the) 78.49 569.95 P |
1000 |
|
|
2 10 Q |
1001 |
|
|
-0.23 (1id-abstracts.txt) 385.6 569.95 P |
1002 |
|
|
0 12 Q |
1003 |
|
|
-0.12 ( listing) 487.54 569.95 P |
1004 |
|
|
(contained in the Internet-Drafts Shadow directories on) 72 555.95 T |
1005 |
|
|
2 10 Q |
1006 |
|
|
(ds.internic.txt) 336.13 555.95 T |
1007 |
|
|
0 12 Q |
1008 |
|
|
(,) 426.08 555.95 T |
1009 |
|
|
2 10 Q |
1010 |
|
|
(nic.nordu.net) 432.08 555.95 T |
1011 |
|
|
0 12 Q |
1012 |
|
|
(,) 510.04 555.95 T |
1013 |
|
|
2 10 Q |
1014 |
|
|
(ftp.nisc.sri.com) 72 541.95 T |
1015 |
|
|
0 12 Q |
1016 |
|
|
( or) 167.95 541.95 T |
1017 |
|
|
2 10 Q |
1018 |
|
|
(munnari.oz.au) 183.93 541.95 T |
1019 |
|
|
0 12 Q |
1020 |
|
|
(. Distribution of this document is unlimited. Please) 261.89 541.95 T |
1021 |
|
|
(mail comments to the author at) 72 527.95 T |
1022 |
|
|
2 10 Q |
1023 |
|
|
(dsr@hplb.hpl.hp.com) 72 513.95 T |
1024 |
|
|
0 12 Q |
1025 |
|
|
( or to the discussion list:) 185.94 513.95 T |
1026 |
|
|
2 10 Q |
1027 |
|
|
(www-talk@nxoc01.cern.ch) 305.88 513.95 T |
1028 |
|
|
0 12 Q |
1029 |
|
|
( This draft is valid until May 1st, 1994. It is available in the \336le) 72 494.95 T |
1030 |
|
|
2 10 Q |
1031 |
|
|
(draft-raggett-www-html-) 378.83 494.95 T |
1032 |
|
|
(00.ps) 72 480.95 T |
1033 |
|
|
0 12 Q |
1034 |
|
|
( and) 101.98 480.95 T |
1035 |
|
|
2 10 Q |
1036 |
|
|
(draft-raggett-www-html-00.txt.) 125.3 480.95 T |
1037 |
|
|
0 12 Q |
1038 |
|
|
(The Postscript \336le contains \336gures and for-) 305.2 480.95 T |
1039 |
|
|
(matting examples which are missing from the plain text version.) 72 466.95 T |
1040 |
|
|
1 14 Q |
1041 |
|
|
(Abstract) 72 437.61 T |
1042 |
|
|
0 12 Q |
1043 |
|
|
(This draft presents a proposal for a light weight delivery format for browsing and querying) 72 417.95 T |
1044 |
|
|
(information in a web of globally distributed hypertext, accessible over the Internet. HTML+) 72 403.95 T |
1045 |
|
|
(embodies a pageless model making it suitable for ef) 72 389.95 T |
1046 |
|
|
(\336cient rendering on a wide range of dis-) 320.95 389.95 T |
1047 |
|
|
(play types, for example, VT100 terminals, X1) 72 375.95 T |
1048 |
|
|
(1 W) 292.4 375.95 T |
1049 |
|
|
(orkstations, W) 311.76 375.95 T |
1050 |
|
|
(indows 3.x and the Macin-) 381.24 375.95 T |
1051 |
|
|
(tosh. HTML+ is based upon SGML, and represents document elements at a logical level, e.g.) 72 361.95 T |
1052 |
|
|
(headers, paragraphs, lists, tables, and \336gures. Authors can choose to create HTML+ docu-) 72 347.95 T |
1053 |
|
|
-0.33 (ments directly) 72 333.95 P |
1054 |
|
|
-0.33 (, or to use \336lters to convert from other formats such as LaT) 139.18 333.95 P |
1055 |
|
|
-0.33 (eX, Framemaker) 417.85 333.95 P |
1056 |
|
|
-0.33 (, and) 497.64 333.95 P |
1057 |
|
|
(W) 72 319.95 T |
1058 |
|
|
(ord for W) 82.36 319.95 T |
1059 |
|
|
(indows.) 129.17 319.95 T |
1060 |
|
|
(HTML+ has grown out of several years experience with the HTML document format in the) 72 300.95 T |
1061 |
|
|
(W) 72 286.95 T |
1062 |
|
|
(orld W) 82.36 286.95 T |
1063 |
|
|
(ide W) 115.52 286.95 T |
1064 |
|
|
(eb community) 143.54 286.95 T |
1065 |
|
|
(. Browser writers are experimenting with extensions to HTML) 211.72 286.95 T |
1066 |
|
|
(and it is now appropriate to draw these ideas together into a revised document format.. The) 72 272.95 T |
1067 |
|
|
(new format is designed to allow a gradual roll over from HTML, adding features like tables,) 72 258.95 T |
1068 |
|
|
(captioned \336gures and \336ll-out forms for querying remote databases or mailing questionnaires.) 72 244.95 T |
1069 |
|
|
-0.31 (Lar) 72 230.95 P |
1070 |
|
|
-0.31 (ge documents can be split into a number of smaller nodes for reduced latency) 88.43 230.95 P |
1071 |
|
|
-0.31 (, with explicit) 454.94 230.95 P |
1072 |
|
|
(or implicit navigation links. This draft also includes a proposal to add direct support for math-) 72 216.95 T |
1073 |
|
|
(ematical formulae. Authors can include limited presentation hints, and further control may) 72 202.95 T |
1074 |
|
|
(eventually be possible via associated style sheets.) 72 188.95 T |
1075 |
|
|
FMENDPAGE |
1076 |
|
|
%%EndPage: "i" 2 |
1077 |
|
|
%%Page: "ii" 2 |
1078 |
|
|
595.3 792 0 FMBEGINPAGE |
1079 |
|
|
0 10 Q |
1080 |
|
|
0 X |
1081 |
|
|
0 K |
1082 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1083 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1084 |
|
|
(INTERNET-DRAFT) 70.7 64.28 T |
1085 |
|
|
(ii) 293.57 64.28 T |
1086 |
|
|
FMENDPAGE |
1087 |
|
|
%%EndPage: "ii" 3 |
1088 |
|
|
%%Page: "iii" 3 |
1089 |
|
|
595.3 792 0 FMBEGINPAGE |
1090 |
|
|
0 10 Q |
1091 |
|
|
0 X |
1092 |
|
|
0 K |
1093 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1094 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1095 |
|
|
(INTERNET-DRAFT) 70.7 64.28 T |
1096 |
|
|
(iii) 292.18 64.28 T |
1097 |
|
|
1 20 Q |
1098 |
|
|
(T) 72 731.62 T |
1099 |
|
|
(able of Contents) 82.73 731.62 T |
1100 |
|
|
1 12 Q |
1101 |
|
|
(HTML+ Discussion Document 1) 72 709.95 T |
1102 |
|
|
3 F |
1103 |
|
|
(Introduction 1) 90 695.95 T |
1104 |
|
|
(Positioning of HTML+ 1) 90 681.95 T |
1105 |
|
|
(HTML+ and HTML 1) 90 667.95 T |
1106 |
|
|
(HTML+ and SGML 2) 90 653.95 T |
1107 |
|
|
1 F |
1108 |
|
|
(An Overview of HTML+ 2) 72 639.95 T |
1109 |
|
|
3 F |
1110 |
|
|
(Document Structure 3) 90 625.95 T |
1111 |
|
|
(Large Documents 3) 90 611.95 T |
1112 |
|
|
1 F |
1113 |
|
|
(Headers 4) 72 597.95 T |
1114 |
|
|
(Paragraphs and <P> 4) 72 583.95 T |
1115 |
|
|
(Normal Text 5) 72 569.95 T |
1116 |
|
|
3 F |
1117 |
|
|
(Character Sets and Entity Definitions 6) 90 555.95 T |
1118 |
|
|
(Hypertext Links 7) 90 541.95 T |
1119 |
|
|
(Character Emphasis 8) 90 527.95 T |
1120 |
|
|
(Presentation Only Tags 8) 90 513.95 T |
1121 |
|
|
(Generic Emphasis 9) 90 499.95 T |
1122 |
|
|
(Logical Emphasis 9) 90 485.95 T |
1123 |
|
|
(Extending the Set of Logical Roles 9) 90 471.95 T |
1124 |
|
|
(Annotations 10) 90 457.95 T |
1125 |
|
|
(Images 10) 90 443.95 T |
1126 |
|
|
(Change Bars and Document Amendments 11) 90 429.95 T |
1127 |
|
|
(Conditional Text 12) 90 415.95 T |
1128 |
|
|
(Explicit Line Breaks 12) 90 401.95 T |
1129 |
|
|
1 F |
1130 |
|
|
(Different Paragraph Styles 13) 72 387.95 T |
1131 |
|
|
3 F |
1132 |
|
|
(Longer Quotations 13) 90 373.95 T |
1133 |
|
|
2 10 Q |
1134 |
|
|
(Abstracts 13) 90 359.95 T |
1135 |
|
|
(Bylines 13) 90 345.95 T |
1136 |
|
|
3 12 Q |
1137 |
|
|
(Notes and admonishments 14) 90 331.95 T |
1138 |
|
|
1 F |
1139 |
|
|
(Lists 14) 72 317.95 T |
1140 |
|
|
3 F |
1141 |
|
|
(Ordered Lists 14) 90 303.95 T |
1142 |
|
|
(Bulleted Lists 15) 90 289.95 T |
1143 |
|
|
(Plain Lists 15) 90 275.95 T |
1144 |
|
|
(Definition Lists 16) 90 261.95 T |
1145 |
|
|
1 F |
1146 |
|
|
(Figures 17) 72 247.95 T |
1147 |
|
|
3 F |
1148 |
|
|
(Active Areas 18) 90 233.95 T |
1149 |
|
|
(Placing Hypertext Buttons on Images 18) 90 219.95 T |
1150 |
|
|
(Possible extensions 19) 90 205.95 T |
1151 |
|
|
1 F |
1152 |
|
|
(Tables 19) 72 191.95 T |
1153 |
|
|
3 F |
1154 |
|
|
(Implementation Issues for Tables 21) 90 177.95 T |
1155 |
|
|
1 F |
1156 |
|
|
(Fill-out Forms and Input fields 21) 72 163.95 T |
1157 |
|
|
3 F |
1158 |
|
|
(Sending form data to an HTTP server 25) 90 149.95 T |
1159 |
|
|
(Sending a form via Electronic Mail 26) 90 135.95 T |
1160 |
|
|
1 F |
1161 |
|
|
(Literal and Preformatted Text 26) 72 121.95 T |
1162 |
|
|
(Mathematical Equations 28) 72 107.95 T |
1163 |
|
|
(Indexing 30) 72 93.95 T |
1164 |
|
|
FMENDPAGE |
1165 |
|
|
%%EndPage: "iii" 4 |
1166 |
|
|
%%Page: "iv" 4 |
1167 |
|
|
595.3 792 0 FMBEGINPAGE |
1168 |
|
|
0 10 Q |
1169 |
|
|
0 X |
1170 |
|
|
0 K |
1171 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1172 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1173 |
|
|
(INTERNET-DRAFT) 70.7 64.28 T |
1174 |
|
|
(iv) 292.46 64.28 T |
1175 |
|
|
1 12 Q |
1176 |
|
|
(Document declarations 30) 72 736.95 T |
1177 |
|
|
3 F |
1178 |
|
|
(HTMLPLUS 31) 90 722.95 T |
1179 |
|
|
(The HEAD and BODY elements 31) 90 708.95 T |
1180 |
|
|
(TITLE 31) 90 694.95 T |
1181 |
|
|
(ISINDEX 31) 90 680.95 T |
1182 |
|
|
(NEXTID 32) 90 666.95 T |
1183 |
|
|
(BASE 32) 90 652.95 T |
1184 |
|
|
(LINK 32) 90 638.95 T |
1185 |
|
|
1 F |
1186 |
|
|
(Dealing with Large Documents 33) 72 624.95 T |
1187 |
|
|
(Acknowledgements 35) 72 610.95 T |
1188 |
|
|
(References 35) 72 596.95 T |
1189 |
|
|
(Appendix I - HTML+ DTD 37) 72 577.95 T |
1190 |
|
|
(Appendix II - character entities 47) 72 563.95 T |
1191 |
|
|
(Appendix III - C code for Point in Polygon testing 57) 72 549.95 T |
1192 |
|
|
(Appendix IV - Sorted list of tags and their attributes 59) 72 535.95 T |
1193 |
|
|
FMENDPAGE |
1194 |
|
|
%%EndPage: "iv" 5 |
1195 |
|
|
%%Page: "1" 5 |
1196 |
|
|
595.3 792 0 FMBEGINPAGE |
1197 |
|
|
0 10 Q |
1198 |
|
|
0 X |
1199 |
|
|
0 K |
1200 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1201 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1202 |
|
|
(1) 295.15 63.28 T |
1203 |
|
|
1 18 Q |
1204 |
|
|
(HTML+ \050Hypertext markup format\051) 151.96 732.95 T |
1205 |
|
|
1 14 Q |
1206 |
|
|
(1) 72 697.61 T |
1207 |
|
|
(HTML+ Discussion Document) 90 697.61 T |
1208 |
|
|
0 12 Q |
1209 |
|
|
(Following the WWW workshop in July 1993 and subsequent discussions on www-talk, it) 72 677.95 T |
1210 |
|
|
(seems an opportune moment to try and reach a consensus before writing a more formal draft) 72 663.95 T |
1211 |
|
|
(as an informational RFC.) 72 649.95 T |
1212 |
|
|
1 F |
1213 |
|
|
(1.1) 72 621.95 T |
1214 |
|
|
(Introduction) 99 621.95 T |
1215 |
|
|
0 F |
1216 |
|
|
-0.16 (The W) 72 602.95 P |
1217 |
|
|
-0.16 (orld W) 103.85 602.95 P |
1218 |
|
|
-0.16 (ide W) 136.86 602.95 P |
1219 |
|
|
-0.16 (eb is a wide-area client-server architecture for retrieving hypermedia docu-) 164.71 602.95 P |
1220 |
|
|
-0.05 (ments over the Internet. It also supports a means of searching remote information sources, for) 72 588.95 P |
1221 |
|
|
(example bibliographies, phone directories and instruction manuals. There are three main) 72 574.95 T |
1222 |
|
|
(ingredients: naming schemes for retrievable objects, protocols and interchange formats.) 72 560.95 T |
1223 |
|
|
(\245) 90 541.95 T |
1224 |
|
|
(Universal naming scheme for documents. The Universal Resource Location \050URL\051) 108 541.95 T |
1225 |
|
|
(syntax speci\336es documents in terms of the protocol to be used to retrieve them, their) 108 527.95 T |
1226 |
|
|
(Internet Host and path name. A format for location independent lifetime identi\336ers is) 108 513.95 T |
1227 |
|
|
-0.36 (currently being de\336ned by a working group of the IETF) 108 499.95 P |
1228 |
|
|
-0.36 (. A network protocol will allow) 371.24 499.95 P |
1229 |
|
|
-0.11 (Universal Resource Numbers \050URNs\051 to be resolved to the URL for the nearest availa-) 108 485.95 P |
1230 |
|
|
(ble copy) 108 471.95 T |
1231 |
|
|
(. A URN may specify a number of variants of a document, but the URL will) 148.19 471.95 T |
1232 |
|
|
(always specify a single copy) 108 457.95 T |
1233 |
|
|
(.) 244.45 457.95 T |
1234 |
|
|
(\245) 90 438.95 T |
1235 |
|
|
(Use of) 108 438.95 T |
1236 |
|
|
4 F |
1237 |
|
|
(de facto) 142.64 438.95 T |
1238 |
|
|
0 F |
1239 |
|
|
( protocols for retrieving documents over the Internet including FTP) 180.94 438.95 T |
1240 |
|
|
(,) 503.06 438.95 T |
1241 |
|
|
(NNTP) 108 424.95 T |
1242 |
|
|
(, W) 137.98 424.95 T |
1243 |
|
|
(AIS, Gopher and HTTP) 153.97 424.95 T |
1244 |
|
|
(. The latter being designed speci\336cally for the W) 267.22 424.95 T |
1245 |
|
|
(orld) 500.42 424.95 T |
1246 |
|
|
(W) 108 410.95 T |
1247 |
|
|
(ide W) 118.84 410.95 T |
1248 |
|
|
(eb, and uses the MIME message format for document exchange.) 146.86 410.95 T |
1249 |
|
|
(\245) 90 391.95 T |
1250 |
|
|
(A document format supporting hypertext links based on URLs and URNs which can) 108 391.95 T |
1251 |
|
|
(be rendered on a wide variety of display types. HTML+ is intended in this role as a) 108 377.95 T |
1252 |
|
|
(successor to the existing HTML format.) 108 363.95 T |
1253 |
|
|
(HTML+ documents of) 72 344.95 T |
1254 |
|
|
(fer a means for providing hypertext links to a variety of media includ-) 180.48 344.95 T |
1255 |
|
|
(ing images, sound sequences, MPEG movies, Postscript \336les and other formats. These links) 72 330.95 T |
1256 |
|
|
(allow a global web of information sources to be established as new servers and document) 72 316.95 T |
1257 |
|
|
(names are announced. Registers of information sources can also be made available via the) 72 302.95 T |
1258 |
|
|
-0.32 (web, using its ability to let users search for information via keywords. It is hoped that HTML+) 72 288.95 P |
1259 |
|
|
(will be useful for information exchange via email and network news as well as HTTP) 72 274.95 T |
1260 |
|
|
(.) 481.04 274.95 T |
1261 |
|
|
1 F |
1262 |
|
|
(1.2) 72 246.95 T |
1263 |
|
|
(Positioning of HTML+) 99 246.95 T |
1264 |
|
|
0 F |
1265 |
|
|
(HTML+ is designed for use in the W) 72 227.95 T |
1266 |
|
|
(orld W) 248.69 227.95 T |
1267 |
|
|
(ide W) 281.85 227.95 T |
1268 |
|
|
(eb as a non-proprietary delivery format for) 309.86 227.95 T |
1269 |
|
|
-0.46 (wide-area hypertext. It embodies a pageless model making it suitable for ef) 72 213.95 P |
1270 |
|
|
-0.46 (\336cient rendering on) 427.75 213.95 P |
1271 |
|
|
(a wide range of display types including VT100 terminals, X1) 72 199.95 T |
1272 |
|
|
(1, W) 365.36 199.95 T |
1273 |
|
|
(indows 3.1 and the Macin-) 388.19 199.95 T |
1274 |
|
|
(tosh. HTML+ is based upon SGML and represents document elements at a logical level.) 72 185.95 T |
1275 |
|
|
(Authors may choose to create HTML+ documents directly or to use \336lters to convert from) 72 171.95 T |
1276 |
|
|
(other formats such as LaT) 72 157.95 T |
1277 |
|
|
(eX, Framemaker) 196.4 157.95 T |
1278 |
|
|
(, and W) 276.51 157.95 T |
1279 |
|
|
(ord for W) 313.19 157.95 T |
1280 |
|
|
(indows.) 360 157.95 T |
1281 |
|
|
1 F |
1282 |
|
|
(1.3) 72 129.95 T |
1283 |
|
|
(HTML+ and HTML) 99 129.95 T |
1284 |
|
|
0 F |
1285 |
|
|
(HTML+ is a superset of HTML and designed to allow a gradual roll over from the earlier for-) 72 110.95 T |
1286 |
|
|
(mat, with features like tables, captioned \336gures and \336ll-out forms for querying remote data-) 72 96.95 T |
1287 |
|
|
FMENDPAGE |
1288 |
|
|
%%EndPage: "1" 6 |
1289 |
|
|
%%Page: "2" 6 |
1290 |
|
|
595.3 792 0 FMBEGINPAGE |
1291 |
|
|
0 10 Q |
1292 |
|
|
0 X |
1293 |
|
|
0 K |
1294 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1295 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1296 |
|
|
(2) 295.15 63.28 T |
1297 |
|
|
0 12 Q |
1298 |
|
|
-0.06 (bases or mailing questionnaires. Lar) 72 736.95 P |
1299 |
|
|
-0.06 (ge documents can be split into a number of smaller nodes) 245.1 736.95 P |
1300 |
|
|
(for reduced latency) 72 722.95 T |
1301 |
|
|
(, with explicit or implicit navigation links. This draft also includes a pro-) 163.8 722.95 T |
1302 |
|
|
(posal to add support for mathematical formulae. Authors can include limited presentation) 72 708.95 T |
1303 |
|
|
(hints, and further control may eventually be possible via associated style sheets.) 72 694.95 T |
1304 |
|
|
1 F |
1305 |
|
|
(1.4) 72 666.95 T |
1306 |
|
|
(HTML+ and SGML) 99 666.95 T |
1307 |
|
|
0 F |
1308 |
|
|
(HTML+ is based on the Standard Generalized Markup Language which is an international) 72 647.95 T |
1309 |
|
|
(standard for document markup that is becoming increasingly important. The term markup) 72 633.95 T |
1310 |
|
|
(derives from the way proof-readers have traditionally pencilled in marks that indicate how a) 72 619.95 T |
1311 |
|
|
(document is to be revised.) 72 605.95 T |
1312 |
|
|
-0.2 (SGML grew out of a decade of work addressing the need for capturing the logical elements of) 72 586.95 P |
1313 |
|
|
(documents as opposed to the processing functions to be performed on those elements. SGML) 72 572.95 T |
1314 |
|
|
-0.34 (is essentially an extensible document description language, based on a notation for embedding) 72 558.95 P |
1315 |
|
|
(tags into the body of a document\325 s text. It is de\336ned by the international standard ISO 8879.) 72 544.95 T |
1316 |
|
|
(The markup structure permitted for each class of documents is de\336ned by an SGML Docu-) 72 530.95 T |
1317 |
|
|
(ment T) 72 516.95 T |
1318 |
|
|
(ype De\336nition, usually abbreviated to DTD.) 105.47 516.95 T |
1319 |
|
|
-0.34 (A lot of work is underway to produce DTDs for a range of purposes. These include ISO 12083) 72 497.95 P |
1320 |
|
|
(for books and ISO 10744 which de\336nes the HyT) 72 483.95 T |
1321 |
|
|
(ime architectural forms for hypermedia/time-) 304.76 483.95 T |
1322 |
|
|
(based documents. The T) 72 469.95 T |
1323 |
|
|
(ext Encoding Initiative \050TEI\051 is an international research project for) 188.41 469.95 T |
1324 |
|
|
(SGML-based document exchange in the humanities. Publishers are cooperating to produce) 72 455.95 T |
1325 |
|
|
(common DTDs for computer manuals, e.g. the DocBook DTD. The CALS programme of the) 72 441.95 T |
1326 |
|
|
-0.03 (US Department of Defence de\336nes SGML DTDs for documentation for defence procurement) 72 427.95 P |
1327 |
|
|
(contracts.) 72 413.95 T |
1328 |
|
|
(So what sets HTML+ apart from these ef) 72 394.95 T |
1329 |
|
|
(forts? It is impractical to design a DTD to meet the) 268.74 394.95 T |
1330 |
|
|
(needs of all possible users. Instead, the markup has to be tailored to the needs of a speci\336c) 72 380.95 T |
1331 |
|
|
-0.16 (community) 72 366.95 P |
1332 |
|
|
-0.16 (. HTML+ is aimed at ful\336lling the dream of a web of information freely accessible) 125.86 366.95 P |
1333 |
|
|
(over the Internet with links between documents spanning continents. The need to support a) 72 352.95 T |
1334 |
|
|
-0.2 (very wide range of display types and to keep browser software as simple as possible limits the) 72 338.95 P |
1335 |
|
|
(complexity that can be handled. Similarly the disparate needs of authors has led to the inclu-) 72 324.95 T |
1336 |
|
|
(sion of limited rendering hints. The features supported arise from several years experience) 72 310.95 T |
1337 |
|
|
(with the W) 72 296.95 T |
1338 |
|
|
(orld W) 124.34 296.95 T |
1339 |
|
|
(eb and the existing HTML format.) 157.02 296.95 T |
1340 |
|
|
1 14 Q |
1341 |
|
|
(2) 72 267.61 T |
1342 |
|
|
(An Overview of HTML+) 90 267.61 T |
1343 |
|
|
0 12 Q |
1344 |
|
|
(HTML+ documents consists of headers, paragraphs, lists, tables and \336gures. A simple exam-) 72 247.95 T |
1345 |
|
|
(ple of an HTML+ document is:) 72 233.95 T |
1346 |
|
|
2 10 Q |
1347 |
|
|
(<title>A simple HTML+ Document</title>) 90 216.28 T |
1348 |
|
|
(<h1 id=\323a1\323>This is a level one header</h1>) 90 199.28 T |
1349 |
|
|
(<p>This is some normal text which will wrap at the window margin.) 90 182.28 T |
1350 |
|
|
(You can emphasise <em>parts of the text</em> if you wish.) 90 170.28 T |
1351 |
|
|
(<p>This is a new paragraph. Note that unlike title and header tags) 90 153.28 T |
1352 |
|
|
(the matching end tag is not needed.) 90 141.28 T |
1353 |
|
|
0 12 Q |
1354 |
|
|
(The text of the document includes tags which are enclosed in <angle brackets>. Many tags) 72 122.95 T |
1355 |
|
|
-0.41 (require matching end tags for which the tag name is preceded by the \322/\323 character) 72 108.95 P |
1356 |
|
|
-0.41 (. The tags are) 457.32 108.95 P |
1357 |
|
|
(used to markup the document\325) 72 94.95 T |
1358 |
|
|
(s logical elements, for example the title, headers and para-) 217.24 94.95 T |
1359 |
|
|
FMENDPAGE |
1360 |
|
|
%%EndPage: "2" 7 |
1361 |
|
|
%%Page: "3" 7 |
1362 |
|
|
595.3 792 0 FMBEGINPAGE |
1363 |
|
|
0 10 Q |
1364 |
|
|
0 X |
1365 |
|
|
0 K |
1366 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1367 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1368 |
|
|
(3) 295.15 63.28 T |
1369 |
|
|
0 12 Q |
1370 |
|
|
(graphs. T) 72 736.95 T |
1371 |
|
|
(ags may also be accompanied by attributes, e.g. the) 116.46 736.95 T |
1372 |
|
|
4 F |
1373 |
|
|
(id) 365.61 736.95 T |
1374 |
|
|
0 F |
1375 |
|
|
( attribute in the header tag) 374.94 736.95 T |
1376 |
|
|
(which can be used to name destinations for hypertext links.) 72 722.95 T |
1377 |
|
|
-0.13 (Unlike most document formats, HTML+ leaves out the processing instructions that determine) 72 703.95 P |
1378 |
|
|
(the precise appearance, for instance the font names and point size, the mar) 72 689.95 T |
1379 |
|
|
(gins, tab settings) 428.16 689.95 T |
1380 |
|
|
(and how much white space to leave before and after dif) 72 675.95 T |
1381 |
|
|
(ferent elements. The rendering soft-) 337.56 675.95 T |
1382 |
|
|
(ware makes these choices for itself \050perhaps guided by user preferences\051. This ensures that) 72 661.95 T |
1383 |
|
|
(browsers can avoid problems with dif) 72 647.95 T |
1384 |
|
|
(ferent page sizes or missing fonts. Logical markup also) 252.66 647.95 T |
1385 |
|
|
-0.24 (preserves essential distinctions that are often lost by lower level procedural formats, making it) 72 633.95 P |
1386 |
|
|
(easier to carry out operations like indexing and conversion into other document formats.) 72 619.95 T |
1387 |
|
|
(Note that the tag and attribute names are case insensitive. HTML+ parsers are expected to) 72 600.95 T |
1388 |
|
|
(ignore unrecognised tags and attributes, and to process their contents as if the start/end tags) 72 586.95 T |
1389 |
|
|
(weren\325) 72 572.95 T |
1390 |
|
|
(t present. SGML minimisation is not supported - this avoids any possibility of confu-) 105.08 572.95 T |
1391 |
|
|
(sion with unrecognised tags.) 72 558.95 T |
1392 |
|
|
1 F |
1393 |
|
|
(2.1) 72 530.95 T |
1394 |
|
|
(Document Structure) 99 530.95 T |
1395 |
|
|
0 F |
1396 |
|
|
(An HTML+ document consists of some optional declarations followed by one or more ele-) 72 511.95 T |
1397 |
|
|
(ments from the following:) 72 497.95 T |
1398 |
|
|
(\245) 90 478.95 T |
1399 |
|
|
(Headers) 108 478.95 T |
1400 |
|
|
(\245) 90 459.95 T |
1401 |
|
|
(Paragraphs) 108 459.95 T |
1402 |
|
|
(\245) 90 440.95 T |
1403 |
|
|
(Lists) 108 440.95 T |
1404 |
|
|
(\245) 90 421.95 T |
1405 |
|
|
(Figures) 108 421.95 T |
1406 |
|
|
(\245) 90 402.95 T |
1407 |
|
|
(T) 108 402.95 T |
1408 |
|
|
(ables) 114.49 402.95 T |
1409 |
|
|
(\245) 90 383.95 T |
1410 |
|
|
(Forms) 108 383.95 T |
1411 |
|
|
(\245) 90 364.95 T |
1412 |
|
|
(Literal or Preformatted text) 108 364.95 T |
1413 |
|
|
(\245) 90 345.95 T |
1414 |
|
|
(Mathematical formulae) 108 345.95 T |
1415 |
|
|
1 F |
1416 |
|
|
(2.2) 72 317.95 T |
1417 |
|
|
(Large Documents) 99 317.95 T |
1418 |
|
|
0 F |
1419 |
|
|
-0.27 (Keeping a lar) 72 298.95 P |
1420 |
|
|
-0.27 (ge document such as a book in one node will increase the time it takes to retrieve) 135.85 298.95 P |
1421 |
|
|
(the node over the network. It is generally better to split lar) 72 284.95 T |
1422 |
|
|
(ge documents into a number of) 350.92 284.95 T |
1423 |
|
|
(smaller nodes. Many documents are written with the expectation that the reader will start at) 72 270.95 T |
1424 |
|
|
(the beginning and read through until the end. If the document is split into a number of nodes,) 72 256.95 T |
1425 |
|
|
(the intended sequence is known as a) 72 242.95 T |
1426 |
|
|
4 F |
1427 |
|
|
(path) 248.87 242.95 T |
1428 |
|
|
0 F |
1429 |
|
|
(. HTML+ provides a means for authors to specify) 270.19 242.95 T |
1430 |
|
|
(such paths either explicitly via declarations at the beginning of the node or implicitly accord-) 72 228.95 T |
1431 |
|
|
(ing to the context in which a given node is reached. Another possibility is for servers to send) 72 214.95 T |
1432 |
|
|
(such information independently) 72 200.95 T |
1433 |
|
|
(, e.g. as MIME message headers.) 223.79 200.95 T |
1434 |
|
|
-0.28 (Y) 72 181.95 P |
1435 |
|
|
-0.28 (ou can provide navigation links for readers which appear as buttons on a toolbar or as entries) 79.46 181.95 P |
1436 |
|
|
-0.06 (in a navigation menu. For works using a lot of technical terms or perhaps in an unfamiliar lan-) 72 167.95 P |
1437 |
|
|
(guage, you can provide glossaries of) 72 153.95 T |
1438 |
|
|
(fering further explanation. Readers can invoke this by) 246.98 153.95 T |
1439 |
|
|
(double clicking on words, or by drag selection and clicking the Glossary menu item. Y) 72 139.95 T |
1440 |
|
|
(ou can) 487.19 139.95 T |
1441 |
|
|
-0.4 (also provide a search \336eld that is always present \050and can\325) 72 125.95 P |
1442 |
|
|
-0.4 (t be scrolled away\051, in which readers) 346.91 125.95 P |
1443 |
|
|
-0.17 (can enter one or more keywords to search an index. These facilities can be speci\336ed explicitly) 72 111.95 P |
1444 |
|
|
(using the) 72 97.95 T |
1445 |
|
|
2 10 Q |
1446 |
|
|
(LINK) 118.64 97.95 T |
1447 |
|
|
0 12 Q |
1448 |
|
|
( element. Implicit links allow you to de\336ne the table of contents \050toc\051 as an) 142.63 97.95 T |
1449 |
|
|
FMENDPAGE |
1450 |
|
|
%%EndPage: "3" 8 |
1451 |
|
|
%%Page: "4" 8 |
1452 |
|
|
595.3 792 0 FMBEGINPAGE |
1453 |
|
|
0 10 Q |
1454 |
|
|
0 X |
1455 |
|
|
0 K |
1456 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1457 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1458 |
|
|
(4) 295.15 63.28 T |
1459 |
|
|
0 12 Q |
1460 |
|
|
(HTML+ document without needing to place links to the toc in every subdocument. The link) 72 736.95 T |
1461 |
|
|
(back to the toc is implied when you follow hypertext link from the toc to its subdocuments.) 72 722.95 T |
1462 |
|
|
1 14 Q |
1463 |
|
|
(3) 72 693.61 T |
1464 |
|
|
(Headers) 90 693.61 T |
1465 |
|
|
0 12 Q |
1466 |
|
|
-0.04 (The tags) 72 673.95 P |
1467 |
|
|
2 10 Q |
1468 |
|
|
-0.08 (H1) 115.89 673.95 P |
1469 |
|
|
0 12 Q |
1470 |
|
|
-0.04 (,) 127.89 673.95 P |
1471 |
|
|
2 10 Q |
1472 |
|
|
-0.08 (H2) 133.85 673.95 P |
1473 |
|
|
0 12 Q |
1474 |
|
|
-0.04 (, ...) 145.84 673.95 P |
1475 |
|
|
2 10 Q |
1476 |
|
|
-0.08 (H6) 163.75 673.95 P |
1477 |
|
|
0 12 Q |
1478 |
|
|
-0.04 ( are used to represent headers.) 175.75 673.95 P |
1479 |
|
|
2 10 Q |
1480 |
|
|
-0.08 (H1) 323.05 673.95 P |
1481 |
|
|
0 12 Q |
1482 |
|
|
-0.04 ( is the most signi\336cant and rendered in) 335.05 673.95 P |
1483 |
|
|
(a lar) 72 659.95 T |
1484 |
|
|
(ge font) 92.76 659.95 T |
1485 |
|
|
0 10 Q |
1486 |
|
|
(1) 126.4 664.75 T |
1487 |
|
|
0 12 Q |
1488 |
|
|
( \050preferably centered\051.) 131.4 659.95 T |
1489 |
|
|
2 10 Q |
1490 |
|
|
(H2) 241.28 659.95 T |
1491 |
|
|
0 12 Q |
1492 |
|
|
( to) 253.28 659.95 T |
1493 |
|
|
2 10 Q |
1494 |
|
|
(H6) 268.6 659.95 T |
1495 |
|
|
0 12 Q |
1496 |
|
|
( are progressively less signi\336cant and usually ren-) 280.6 659.95 T |
1497 |
|
|
(dered \337ush left in smaller fonts. A common convention is to begin the body of a document) 72 645.95 T |
1498 |
|
|
(with an) 72 631.95 T |
1499 |
|
|
2 10 Q |
1500 |
|
|
(H1) 110.64 631.95 T |
1501 |
|
|
0 12 Q |
1502 |
|
|
( header) 122.64 631.95 T |
1503 |
|
|
(, e.g.) 157.12 631.95 T |
1504 |
|
|
2 10 Q |
1505 |
|
|
(<h1>Introduction to HTML+</h1>) 90 614.28 T |
1506 |
|
|
0 12 Q |
1507 |
|
|
(Header names should be appropriate to the following section of the document, while the title) 72 595.95 T |
1508 |
|
|
(should cover the document as a whole. There are no restrictions on the sequence of headers,) 72 581.95 T |
1509 |
|
|
(e.g. you could use a level three header following a level one header) 72 567.95 T |
1510 |
|
|
(.Header and section ele-) 394.41 567.95 T |
1511 |
|
|
(ments can take an identi\336er) 72 553.95 T |
1512 |
|
|
(, unique to the current document, for use as named destinations of) 203.42 553.95 T |
1513 |
|
|
(hypertext links. This is speci\336ed with the) 72 539.95 T |
1514 |
|
|
2 10 Q |
1515 |
|
|
(ID) 272.55 539.95 T |
1516 |
|
|
0 12 Q |
1517 |
|
|
( attribute, e.g.) 284.55 539.95 T |
1518 |
|
|
2 10 Q |
1519 |
|
|
(<h1 id=\323intro\323>Introduction to HTML+</h1>) 90 522.28 T |
1520 |
|
|
0 12 Q |
1521 |
|
|
(This allows authors to create hypertext links to particular sections of documents. It is a good) 72 503.95 T |
1522 |
|
|
(idea to use something obvious when creating an identi\336er) 72 489.95 T |
1523 |
|
|
(, to help jog your memory at a later) 348 489.95 T |
1524 |
|
|
(date. WYSIWYG editors should automatically generate identi\336ers. In this case, they should) 72 475.95 T |
1525 |
|
|
(provide a point and click mechanism for de\336ning links so that authors don\325) 72 461.95 T |
1526 |
|
|
(t need to deal) 432.22 461.95 T |
1527 |
|
|
(explicitly with identi\336er names. Automatic generation of) 72 447.95 T |
1528 |
|
|
2 10 Q |
1529 |
|
|
(ID) 347.82 447.95 T |
1530 |
|
|
0 12 Q |
1531 |
|
|
(s for headers, paragraphs and) 359.82 447.95 T |
1532 |
|
|
(other major elements is important as it makes it easier for other people to create links to your) 72 433.95 T |
1533 |
|
|
(document, by ensuring that there are plenty of) 72 419.95 T |
1534 |
|
|
2 10 Q |
1535 |
|
|
(ID) 296.17 419.95 T |
1536 |
|
|
0 12 Q |
1537 |
|
|
( attributes present as potential destinations.) 308.16 419.95 T |
1538 |
|
|
(Should we support headers for which the level is implicitly de\336ned by nestable section ele-) 72 400.95 T |
1539 |
|
|
-0.18 (ments?) 72 386.95 P |
1540 |
|
|
0 10 Q |
1541 |
|
|
-0.15 (2) 105.98 391.75 P |
1542 |
|
|
0 12 Q |
1543 |
|
|
-0.18 ( W) 110.97 386.95 P |
1544 |
|
|
-0.18 (e could also support autonumbering of headers. Unfortunately) 124.16 386.95 P |
1545 |
|
|
-0.18 (, on further investiga-) 419.91 386.95 P |
1546 |
|
|
(tion these ideas proved trickier than thought at \336rst, and so have been dropped from this draft.) 72 372.95 T |
1547 |
|
|
1 14 Q |
1548 |
|
|
(4) 72 343.61 T |
1549 |
|
|
(Paragraphs and <P>) 90 343.61 T |
1550 |
|
|
0 12 Q |
1551 |
|
|
-0.39 (Normal text is automatically wrapped by the browser at the current window mar) 72 323.95 P |
1552 |
|
|
-0.39 (gin and adapts) 452.18 323.95 P |
1553 |
|
|
(to changes in window size. The text is generally shown in a proportional font:) 72 309.95 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 292.28 P |
1556 |
|
|
-0.75 (tag <P>) 90 280.28 P |
1557 |
|
|
2 8 Q |
1558 |
|
|
-0.6 (3) 167.2 284.28 P |
1559 |
|
|
2 10 Q |
1560 |
|
|
-0.75 ( and end tag </P>. You don\325t need to give the end tag) 172 280.28 P |
1561 |
|
|
(as it is implied by the context, e.g. the following <P> tag.) 90 268.28 T |
1562 |
|
|
-0.84 (<P ID=\323p2\323>If you wish, you may think of the <P> tag as a paragraph) 90 256.28 P |
1563 |
|
|
(separator. This works since HTML+ formally doesn\325t require you to wrap) 90 244.28 T |
1564 |
|
|
(text up as paragraphs.) 90 232.28 T |
1565 |
|
|
0 12 Q |
1566 |
|
|
(This would be rendered as:) 72 213.95 T |
1567 |
|
|
-0.33 (The P element acts as a container for the text between the start tag <P> and the end) 90 194.95 P |
1568 |
|
|
-0.22 (tag </P>. Y) 90 180.95 P |
1569 |
|
|
-0.22 (ou don\325) 144.2 180.95 P |
1570 |
|
|
-0.22 (t need to give the end tag as it is implied by the context, e.g. the) 180.74 180.95 P |
1571 |
|
|
(following <P> tag.) 90 166.95 T |
1572 |
|
|
72 119.05 523.3 134.03 C |
1573 |
|
|
81 132.01 225 132.01 2 L |
1574 |
|
|
0.5 H |
1575 |
|
|
2 Z |
1576 |
|
|
0 X |
1577 |
|
|
0 K |
1578 |
|
|
N |
1579 |
|
|
0 -24.95 595.3 816.95 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 112.39 T |
1584 |
|
|
(2. For example with) 90 100.39 T |
1585 |
|
|
2 F |
1586 |
|
|
(<H>) 173 100.39 T |
1587 |
|
|
0 F |
1588 |
|
|
( for headers and) 190.99 100.39 T |
1589 |
|
|
2 F |
1590 |
|
|
(<SECTION>) 257.6 100.39 T |
1591 |
|
|
0 F |
1592 |
|
|
( for nestable sections.) 311.57 100.39 T |
1593 |
|
|
(3. < and > are SGML entity de\336nitions for the < and > characters, see section 5.1.) 90 88.39 T |
1594 |
|
|
FMENDPAGE |
1595 |
|
|
%%EndPage: "4" 9 |
1596 |
|
|
%%Page: "5" 9 |
1597 |
|
|
595.3 792 0 FMBEGINPAGE |
1598 |
|
|
0 10 Q |
1599 |
|
|
0 X |
1600 |
|
|
0 K |
1601 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1602 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1603 |
|
|
(5) 295.15 63.28 T |
1604 |
|
|
0 12 Q |
1605 |
|
|
(If you wish, you may think of the <P> tag as a paragraph separator) 90 736.95 T |
1606 |
|
|
(. This works) 409.97 736.95 T |
1607 |
|
|
(since HTML+ formally doesn\325) 90 722.95 T |
1608 |
|
|
(t require you to wrap text up as paragraphs.) 237.45 722.95 T |
1609 |
|
|
(The following samples of HTML+ all produce exactly the same results when displayed:) 72 703.95 T |
1610 |
|
|
2 10 Q |
1611 |
|
|
(<H1>Different ways of using the P element</H1>) 90 686.28 T |
1612 |
|
|
(<P>The f) 90 674.28 T |
1613 |
|
|
(irst piece of text</P><P>The second piece</P>) 137.97 674.28 T |
1614 |
|
|
(<H1>Different ways of using the P element</H1>) 90 657.28 T |
1615 |
|
|
(<P>The f) 90 645.28 T |
1616 |
|
|
(irst piece of text<P>The second piece) 137.97 645.28 T |
1617 |
|
|
(<H1>Different ways of using the P element</H1>) 90 628.28 T |
1618 |
|
|
(The f) 90 616.28 T |
1619 |
|
|
(irst piece of text<P>The second piece) 119.98 616.28 T |
1620 |
|
|
0 12 Q |
1621 |
|
|
(They all produce:) 72 597.95 T |
1622 |
|
|
1 F |
1623 |
|
|
(Different ways of using the P element) 126 578.95 T |
1624 |
|
|
0 F |
1625 |
|
|
(The \336rst piece of text) 126 559.95 T |
1626 |
|
|
(The second piece) 126 540.95 T |
1627 |
|
|
(In some situations you will want to preserve the original line breaks and spacing, for this you) 72 521.95 T |
1628 |
|
|
(should use the) 72 507.95 T |
1629 |
|
|
2 10 Q |
1630 |
|
|
(LIT) 143.62 507.95 T |
1631 |
|
|
0 12 Q |
1632 |
|
|
( or) 161.62 507.95 T |
1633 |
|
|
2 10 Q |
1634 |
|
|
(PRE) 177.6 507.95 T |
1635 |
|
|
0 12 Q |
1636 |
|
|
( elements, these are described in a later section. Y) 195.59 507.95 T |
1637 |
|
|
(ou can force line) 433.86 507.95 T |
1638 |
|
|
(breaks in normal paragraph text with the) 72 493.95 T |
1639 |
|
|
2 10 Q |
1640 |
|
|
(<BR>) 269.52 493.95 T |
1641 |
|
|
0 12 Q |
1642 |
|
|
( element, but the browser may wrap lines arbi-) 293.51 493.95 T |
1643 |
|
|
(trarily at window mar) 72 479.95 T |
1644 |
|
|
(gins prior to reaching the) 176.04 479.95 T |
1645 |
|
|
2 10 Q |
1646 |
|
|
(<BR>) 299.62 479.95 T |
1647 |
|
|
0 12 Q |
1648 |
|
|
( element.) 323.61 479.95 T |
1649 |
|
|
(The) 72 460.95 T |
1650 |
|
|
2 10 Q |
1651 |
|
|
(ALIGN) 93.65 460.95 T |
1652 |
|
|
0 12 Q |
1653 |
|
|
( attribute can be used to center a paragraph, e.g.) 123.63 460.95 T |
1654 |
|
|
2 10 Q |
1655 |
|
|
(<P ALIGN=center>) 355.76 460.95 T |
1656 |
|
|
0 12 Q |
1657 |
|
|
(. Other possi-) 451.71 460.95 T |
1658 |
|
|
-0.54 (bilities are) 72 446.95 P |
1659 |
|
|
2 10 Q |
1660 |
|
|
-1.09 (ALIGN=left) 124.21 446.95 P |
1661 |
|
|
0 12 Q |
1662 |
|
|
-0.54 ( \050the default\051,) 184.18 446.95 P |
1663 |
|
|
2 10 Q |
1664 |
|
|
-1.09 (ALIGN=right) 250.5 446.95 P |
1665 |
|
|
0 12 Q |
1666 |
|
|
-0.54 (,) 316.46 446.95 P |
1667 |
|
|
2 10 Q |
1668 |
|
|
-1.09 (ALIGN=justify) 321.91 446.95 P |
1669 |
|
|
0 12 Q |
1670 |
|
|
-0.54 ( and) 399.87 446.95 P |
1671 |
|
|
2 10 Q |
1672 |
|
|
-1.09 (ALIGN=indent) 422.1 446.95 P |
1673 |
|
|
0 12 Q |
1674 |
|
|
-0.54 (. This) 494.06 446.95 P |
1675 |
|
|
(attribute is a hint and may be ignored by some browsers. Note that when using explicit line) 72 432.95 T |
1676 |
|
|
(breaks \050see section 5.12\051 you may wish to switch of) 72 418.95 T |
1677 |
|
|
(f word wrap with) 320.28 418.95 T |
1678 |
|
|
2 10 Q |
1679 |
|
|
(WRAP=OFF) 406.21 418.95 T |
1680 |
|
|
0 12 Q |
1681 |
|
|
(.) 453.22 418.95 T |
1682 |
|
|
-0.09 (Browsers, when parsing paragraphs, can choose to simply treat the) 72 399.95 P |
1683 |
|
|
2 10 Q |
1684 |
|
|
-0.18 (<P>) 394.18 399.95 P |
1685 |
|
|
0 12 Q |
1686 |
|
|
-0.09 ( tag as denoting a para-) 412.17 399.95 P |
1687 |
|
|
(graph break. If the paragraph style includes a blank line between paragraphs, then additional) 72 385.95 T |
1688 |
|
|
(care is needed after headers and other major elements) 72 371.95 T |
1689 |
|
|
0 10 Q |
1690 |
|
|
(1) 329.1 376.75 T |
1691 |
|
|
0 12 Q |
1692 |
|
|
( to avoid inserting an unwanted blank) 334.1 371.95 T |
1693 |
|
|
-0.02 (line, e.g. when a) 72 357.95 P |
1694 |
|
|
2 10 Q |
1695 |
|
|
-0.04 (<P>) 153.52 357.95 P |
1696 |
|
|
0 12 Q |
1697 |
|
|
-0.02 ( tag directly follows a header) 171.51 357.95 P |
1698 |
|
|
-0.02 (. This ability to perceive) 310.31 357.95 P |
1699 |
|
|
2 10 Q |
1700 |
|
|
-0.04 (<P>) 430.13 357.95 P |
1701 |
|
|
0 12 Q |
1702 |
|
|
-0.02 ( as a paragraph) 448.12 357.95 P |
1703 |
|
|
(break provides for continuity with HTML, and allows authors to graduate to treating it as a) 72 343.95 T |
1704 |
|
|
(container in their own time.) 72 329.95 T |
1705 |
|
|
1 14 Q |
1706 |
|
|
(5) 72 300.61 T |
1707 |
|
|
(Normal T) 90 300.61 T |
1708 |
|
|
(ext) 149.61 300.61 T |
1709 |
|
|
0 12 Q |
1710 |
|
|
( Paragraphs can include the following:) 72 280.95 T |
1711 |
|
|
(\245) 90 261.95 T |
1712 |
|
|
(Character entity names for unusual characters such as) 108 261.95 T |
1713 |
|
|
0 14 Q |
1714 |
|
|
(\227) 368.45 261.95 T |
1715 |
|
|
0 12 Q |
1716 |
|
|
( which are included using) 375.45 261.95 T |
1717 |
|
|
(SGML entity de\336nitions: &) 108 247.95 T |
1718 |
|
|
4 F |
1719 |
|
|
(name) 240.95 247.95 T |
1720 |
|
|
0 F |
1721 |
|
|
(; as in \322the dream of óengus\323 which is dis-) 266.92 247.95 T |
1722 |
|
|
-0.05 (played as: \322the dream of) 108 233.95 P |
1723 |
|
|
0 14 Q |
1724 |
|
|
-0.06 (\227) 227.99 233.95 P |
1725 |
|
|
0 12 Q |
1726 |
|
|
-0.05 (engus\323. The full list of standard entity names recognised by) 234.99 233.95 P |
1727 |
|
|
(most browsers is given in Appendix II) 108 219.95 T |
1728 |
|
|
(\245) 90 200.95 T |
1729 |
|
|
-0.16 (Character emphasis using logical and presentational markup. The set of logical charac-) 108 200.95 P |
1730 |
|
|
(ter emphasis can be extended, and HTML+ provides the means for browsers to deter-) 108 186.95 T |
1731 |
|
|
(mine how to render such extensions) 108 172.95 T |
1732 |
|
|
(\245) 90 153.95 T |
1733 |
|
|
(Simple footnotes or mar) 108 153.95 T |
1734 |
|
|
(gin notes, which can be rendered as pop-up overlays) 224.05 153.95 T |
1735 |
|
|
(\245) 90 134.95 T |
1736 |
|
|
(Images which act as single characters and which can be vertically aligned relative to) 108 134.95 T |
1737 |
|
|
(the text line in which they are embedded) 108 120.95 T |
1738 |
|
|
72 95.05 523.3 110.03 C |
1739 |
|
|
81 108.01 225 108.01 2 L |
1740 |
|
|
0.5 H |
1741 |
|
|
2 Z |
1742 |
|
|
0 X |
1743 |
|
|
0 K |
1744 |
|
|
N |
1745 |
|
|
0 -24.95 595.3 816.95 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 88.39 T |
1750 |
|
|
(, FIG, T) 305.21 88.39 T |
1751 |
|
|
(ABLE, FORM and MA) 336.61 88.39 T |
1752 |
|
|
(TH) 430.45 88.39 T |
1753 |
|
|
FMENDPAGE |
1754 |
|
|
%%EndPage: "5" 10 |
1755 |
|
|
%%Page: "6" 10 |
1756 |
|
|
595.3 792 0 FMBEGINPAGE |
1757 |
|
|
0 10 Q |
1758 |
|
|
0 X |
1759 |
|
|
0 K |
1760 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1761 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1762 |
|
|
(6) 295.15 63.28 T |
1763 |
|
|
0 12 Q |
1764 |
|
|
(\245) 90 736.95 T |
1765 |
|
|
(Hypertext Links based on the URL or URN notations) 108 736.95 T |
1766 |
|
|
(\245) 90 717.95 T |
1767 |
|
|
(Markup signifying the start and end of change bars. Y) 108 717.95 T |
1768 |
|
|
(ou can also mark text as being) 365.94 717.95 T |
1769 |
|
|
(removed or added, as is common in legal documents) 108 703.95 T |
1770 |
|
|
(\245) 90 684.95 T |
1771 |
|
|
(Conditional text which appears only on-line or only when printed) 108 684.95 T |
1772 |
|
|
(\245) 90 665.95 T |
1773 |
|
|
(Input \336elds when the paragraph is part of a form) 108 665.95 T |
1774 |
|
|
(\245) 90 646.95 T |
1775 |
|
|
(Explicit line breaks) 108 646.95 T |
1776 |
|
|
1 F |
1777 |
|
|
(5.1) 72 618.95 T |
1778 |
|
|
(Character Sets and Entity De\336nitions) 99 618.95 T |
1779 |
|
|
0 F |
1780 |
|
|
(By default, HTML+ documents are made up of 8-bit characters from the ISO 8859 Latin-1) 72 599.95 T |
1781 |
|
|
-0.14 (character set. The network protocol used to retrieve documents may translate the character set) 72 585.95 P |
1782 |
|
|
(into a locally acceptable form, e.g. EBCDIC. The HTTP protocol uses the MIME standard) 72 571.95 T |
1783 |
|
|
(\050RFC 1341\051 to specify the document type and character set. ISO SGML entity de\336nitions are) 72 557.95 T |
1784 |
|
|
-0.09 (used to include characters which are missing from the character set or which would otherwise) 72 543.95 P |
1785 |
|
|
(be confused with markup elements, e.g:) 72 529.95 T |
1786 |
|
|
2 10 Q |
1787 |
|
|
(&) 108 510.95 T |
1788 |
|
|
0 12 Q |
1789 |
|
|
(ampersand &) 180 510.95 T |
1790 |
|
|
2 10 Q |
1791 |
|
|
(<) 108 496.95 T |
1792 |
|
|
0 12 Q |
1793 |
|
|
(less than sign <) 180 496.95 T |
1794 |
|
|
2 10 Q |
1795 |
|
|
(>) 108 482.95 T |
1796 |
|
|
0 12 Q |
1797 |
|
|
(greater than sign >) 180 482.95 T |
1798 |
|
|
2 10 Q |
1799 |
|
|
(") 108 468.95 T |
1800 |
|
|
0 12 Q |
1801 |
|
|
(the double quote sign \322) 180 468.95 T |
1802 |
|
|
-0.09 (Appendix II lists a broad range of characters and symbols, relating their ISO names to the cor-) 72 449.95 P |
1803 |
|
|
-0.13 (responding character codes in common character sets. They allow authors to include accented) 72 435.95 P |
1804 |
|
|
(characters in 7-bit ASCII documents. Some other useful entity de\336nitions are:) 72 421.95 T |
1805 |
|
|
2 10 Q |
1806 |
|
|
(–) 108 402.95 T |
1807 |
|
|
0 12 Q |
1808 |
|
|
(en dash \050half the width of an em unit\051) 180 402.95 T |
1809 |
|
|
2 10 Q |
1810 |
|
|
(—) 108 388.95 T |
1811 |
|
|
0 12 Q |
1812 |
|
|
(em dash \050equal to width of an \322m\323 character\051) 180 388.95 T |
1813 |
|
|
2 10 Q |
1814 |
|
|
( ) 108 374.95 T |
1815 |
|
|
0 12 Q |
1816 |
|
|
(en space) 180 374.95 T |
1817 |
|
|
2 10 Q |
1818 |
|
|
( ) 108 360.95 T |
1819 |
|
|
0 12 Q |
1820 |
|
|
(em space) 180 360.95 T |
1821 |
|
|
2 10 Q |
1822 |
|
|
( ) 108 346.95 T |
1823 |
|
|
0 12 Q |
1824 |
|
|
(non breaking space) 180 346.95 T |
1825 |
|
|
2 10 Q |
1826 |
|
|
(­) 108 332.95 T |
1827 |
|
|
0 12 Q |
1828 |
|
|
(soft hyphen \050normally invisible\051) 180 332.95 T |
1829 |
|
|
2 10 Q |
1830 |
|
|
(©) 108 318.95 T |
1831 |
|
|
0 12 Q |
1832 |
|
|
(copyright sign) 180 318.95 T |
1833 |
|
|
0 14 Q |
1834 |
|
|
(\251) 251.96 318.95 T |
1835 |
|
|
2 10 Q |
1836 |
|
|
(™) 108 304.95 T |
1837 |
|
|
0 12 Q |
1838 |
|
|
(trade mark sign) 180 304.95 T |
1839 |
|
|
0 14 Q |
1840 |
|
|
(\252) 257.61 304.95 T |
1841 |
|
|
2 10 Q |
1842 |
|
|
(®) 108 290.95 T |
1843 |
|
|
0 12 Q |
1844 |
|
|
(registered sign) 180 290.95 T |
1845 |
|
|
0 14 Q |
1846 |
|
|
(\250) 253.28 290.95 T |
1847 |
|
|
0 12 Q |
1848 |
|
|
-0.28 (There are a lar) 72 271.95 P |
1849 |
|
|
-0.28 (ge number of entities de\336ned by the ISO, covering most languages and symbols) 140.53 271.95 P |
1850 |
|
|
-0.37 (for publishing and mathematics. Requiring all browsers to support these would be impractical,) 72 257.95 P |
1851 |
|
|
(e.g. how should a dumb terminal show such symbols. In some cases there will be accepted) 72 243.95 T |
1852 |
|
|
-0.15 (ways of mapping them to normal characters, e.g.) 72 229.95 P |
1853 |
|
|
5 14 Q |
1854 |
|
|
-0.17 (\276) 307.64 229.95 P |
1855 |
|
|
0 12 Q |
1856 |
|
|
-0.15 ( as) 317.74 229.95 P |
1857 |
|
|
5 F |
1858 |
|
|
-0.15 (ae) 333.43 229.95 P |
1859 |
|
|
0 F |
1860 |
|
|
-0.15 (and) 347.6 229.95 P |
1861 |
|
|
5 14 Q |
1862 |
|
|
-0.17 (\217) 367.77 229.95 P |
1863 |
|
|
0 12 Q |
1864 |
|
|
-0.15 (as) 376.83 229.95 P |
1865 |
|
|
5 F |
1866 |
|
|
-0.15 ( e) 386.82 229.95 P |
1867 |
|
|
0 F |
1868 |
|
|
-0.15 (. Perhaps the safest recom-) 395 229.95 P |
1869 |
|
|
-0.29 (mendation is that where authors need to use a specialised character or symbol, they should use) 72 215.95 P |
1870 |
|
|
(ISO entity names rather than inventing their own. Browsers should leave unrecognised entity) 72 201.95 T |
1871 |
|
|
(names untranslated.) 72 187.95 T |
1872 |
|
|
(In some cases it is useful to specify the language used in a given element, with the) 72 168.95 T |
1873 |
|
|
2 10 Q |
1874 |
|
|
(LANG) 469.73 168.95 T |
1875 |
|
|
0 12 Q |
1876 |
|
|
(attribute. The ISO de\336nes abbreviations for most languages, e.g. FR for french as in:) 72 154.95 T |
1877 |
|
|
2 10 Q |
1878 |
|
|
(<Q LANG=\323FR\323>Je m\325aveugle.</Q>) 72 140.95 T |
1879 |
|
|
0 12 Q |
1880 |
|
|
(. This attribute permits language dependent layout and) 251.9 140.95 T |
1881 |
|
|
(hyphenation decisions, e.g. Hebrew uses right to left word order) 72 126.95 T |
1882 |
|
|
(.) 379.11 126.95 T |
1883 |
|
|
-0.39 (T) 72 107.95 P |
1884 |
|
|
-0.39 (o allow SGML parsers to recognise entity names, authors should declare them before use, for) 78.49 107.95 P |
1885 |
|
|
(example:) 72 93.95 T |
1886 |
|
|
FMENDPAGE |
1887 |
|
|
%%EndPage: "6" 11 |
1888 |
|
|
%%Page: "7" 11 |
1889 |
|
|
595.3 792 0 FMBEGINPAGE |
1890 |
|
|
0 10 Q |
1891 |
|
|
0 X |
1892 |
|
|
0 K |
1893 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
1894 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
1895 |
|
|
(7) 295.15 63.28 T |
1896 |
|
|
2 F |
1897 |
|
|
(<!ENTITY % ISOcyr1 PUBLIC \323ISO 8879-1986//ENTITIES Russian Cyrillic/EN\323>) 90 738.28 T |
1898 |
|
|
(%ISOcyr1;) 90 726.28 T |
1899 |
|
|
0 12 Q |
1900 |
|
|
(This introduces ISOcyr1 as a local name for the ISO public identi\336er for the cyrillic alphabet) 72 707.95 T |
1901 |
|
|
(and then includes the associated set of entity de\336nitions as part of the current document. This) 72 693.95 T |
1902 |
|
|
(declaration is unnecessary for entities de\336ned within the HTML+ DTD.) 72 679.95 T |
1903 |
|
|
1 F |
1904 |
|
|
(5.2) 72 651.95 T |
1905 |
|
|
(Hypertext Links) 99 651.95 T |
1906 |
|
|
0 F |
1907 |
|
|
(HTML+ allows authors to embed hypertext links into the document text. In a browser this) 72 632.95 T |
1908 |
|
|
(might look to the reader like:) 72 618.95 T |
1909 |
|
|
2 10 Q |
1910 |
|
|
(Links are def) 90 601.28 T |
1911 |
|
|
(ined with the) 167.96 601.28 T |
1912 |
|
|
281.89 600.46 251.91 600.46 2 L |
1913 |
|
|
4 K |
1914 |
|
|
V |
1915 |
|
|
0.4 H |
1916 |
|
|
0 Z |
1917 |
|
|
N |
1918 |
|
|
6 F |
1919 |
|
|
(A tag) 251.91 601.28 T |
1920 |
|
|
2 F |
1921 |
|
|
0 K |
1922 |
|
|
(. HTML+ supports a number of) 281.89 601.28 T |
1923 |
|
|
515.77 600.46 455.8 600.46 2 L |
1924 |
|
|
4 K |
1925 |
|
|
V |
1926 |
|
|
N |
1927 |
|
|
6 F |
1928 |
|
|
(different) 455.8 601.28 T |
1929 |
|
|
149.97 588.46 90 588.46 2 L |
1930 |
|
|
V |
1931 |
|
|
N |
1932 |
|
|
(link types) 90 589.28 T |
1933 |
|
|
2 F |
1934 |
|
|
0 K |
1935 |
|
|
(.) 149.97 589.28 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 570.95 P |
1938 |
|
|
(it in place of the current one. This example is represented by the following piece of HTML+) 72 556.95 T |
1939 |
|
|
2 10 Q |
1940 |
|
|
(Links are def) 90 539.28 T |
1941 |
|
|
(ined with the <a href=\323#z1\323>A tag</a>. HTML+ supports a) 167.96 539.28 T |
1942 |
|
|
(number of <a href=\323links.html\323>different link types.) 90 527.28 T |
1943 |
|
|
0 12 Q |
1944 |
|
|
(The \336rst link is to an anchor named \322z1\323 in the current document \050using an) 72 508.95 T |
1945 |
|
|
2 10 Q |
1946 |
|
|
(ID) 434.74 508.95 T |
1947 |
|
|
0 12 Q |
1948 |
|
|
( attribute on) 446.73 508.95 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 494.95 P |
1950 |
|
|
(document. The link caption is the text between the start and end tags. The) 72 480.95 T |
1951 |
|
|
2 10 Q |
1952 |
|
|
(HREF) 428.42 480.95 T |
1953 |
|
|
0 12 Q |
1954 |
|
|
( attribute) 452.41 480.95 T |
1955 |
|
|
(de\336nes the link destination using the URL or URN notations. This may be abbreviated in cer-) 72 466.95 T |
1956 |
|
|
(tain circumstances using relative URLs. The link should be rendered in a clearly distinguisha-) 72 452.95 T |
1957 |
|
|
(ble way) 72 438.95 T |
1958 |
|
|
(, e.g. as a raised button, or with underlined text in a particular color or emphasis. For) 108.86 438.95 T |
1959 |
|
|
(displays without pointing devices, it is suggested that the link is indicated with a reference) 72 424.95 T |
1960 |
|
|
(number in square brackets after the caption, which the reader enters to follow the link. Note) 72 410.95 T |
1961 |
|
|
(that it is illegal for anchors to include headers, paragraphs, lists etc. The anchor text is) 72 396.95 T |
1962 |
|
|
(restricted to normal text with emphasis and inline images.) 72 382.95 T |
1963 |
|
|
(The A element has several optional attributes:) 72 363.95 T |
1964 |
|
|
2 10 Q |
1965 |
|
|
(ID) 72 344.95 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 344.95 T |
1968 |
|
|
(element. Another document can then make a reference to this by putting the) 146.17 330.95 T |
1969 |
|
|
(identi\336er after the URL for this document, separated by a hash sign. The) 146.17 316.95 T |
1970 |
|
|
2 10 Q |
1971 |
|
|
(ID) 496.91 316.95 T |
1972 |
|
|
0 12 Q |
1973 |
|
|
(attribute replaces the) 146.17 302.95 T |
1974 |
|
|
2 10 Q |
1975 |
|
|
(NAME) 249.08 302.95 T |
1976 |
|
|
0 12 Q |
1977 |
|
|
( attribute in HTML.) 273.07 302.95 T |
1978 |
|
|
2 10 Q |
1979 |
|
|
(HREF) 72 283.95 T |
1980 |
|
|
0 12 Q |
1981 |
|
|
(This speci\336es a URL or URN of a linked document which will be retrieved) 144.17 283.95 T |
1982 |
|
|
(when the user clicks on the anchor) 146.17 269.95 T |
1983 |
|
|
(\325) 312.48 269.95 T |
1984 |
|
|
(s label.) 315.81 269.95 T |
1985 |
|
|
2 10 Q |
1986 |
|
|
(HREF=#) 352.79 269.95 T |
1987 |
|
|
6 F |
1988 |
|
|
(id) 388.77 269.95 T |
1989 |
|
|
0 12 Q |
1990 |
|
|
( can be used for links to) 400.76 269.95 T |
1991 |
|
|
(other parts of the same document.) 146.17 255.95 T |
1992 |
|
|
2 10 Q |
1993 |
|
|
(REL) 72 236.95 T |
1994 |
|
|
0 12 Q |
1995 |
|
|
(The relationship the linked document has to this one.) 144.17 236.95 T |
1996 |
|
|
2 10 Q |
1997 |
|
|
(REL=Subdocument) 401.34 236.95 T |
1998 |
|
|
0 12 Q |
1999 |
|
|
( is) 491.29 236.95 T |
2000 |
|
|
-0.25 (used to break long documents into smaller ones. This importance of this partic-) 146.17 222.95 P |
2001 |
|
|
(ular attribute value is explained in section 14.) 146.17 208.95 T |
2002 |
|
|
2 10 Q |
2003 |
|
|
(REV) 72 189.95 T |
2004 |
|
|
0 12 Q |
2005 |
|
|
(The reverse relationship type, and the inverse of) 144.17 189.95 T |
2006 |
|
|
2 10 Q |
2007 |
|
|
(REL) 378.31 189.95 T |
2008 |
|
|
0 12 Q |
2009 |
|
|
(.) 396.3 189.95 T |
2010 |
|
|
2 10 Q |
2011 |
|
|
(EFFECT) 72 170.95 T |
2012 |
|
|
0 12 Q |
2013 |
|
|
-0.51 (This determines how the browser displays the linked document when following) 144.17 170.95 P |
2014 |
|
|
-0.05 (the link.) 146.17 156.95 P |
2015 |
|
|
2 10 Q |
2016 |
|
|
-0.11 (EFFECT=Replace) 188.37 156.95 P |
2017 |
|
|
0 12 Q |
2018 |
|
|
-0.05 ( causes the browser to replace the current document) 272.33 156.95 P |
2019 |
|
|
(with the linked one;) 146.17 142.95 T |
2020 |
|
|
2 10 Q |
2021 |
|
|
(EFFECT=NEW) 244.78 142.95 T |
2022 |
|
|
0 12 Q |
2023 |
|
|
( results in the linked document being shown) 304.74 142.95 T |
2024 |
|
|
(in a new window \050if practical\051; and) 146.17 128.95 T |
2025 |
|
|
2 10 Q |
2026 |
|
|
(EFFECT=OVERLAY) 317.7 128.95 T |
2027 |
|
|
0 12 Q |
2028 |
|
|
( causes the linked docu-) 401.65 128.95 T |
2029 |
|
|
(ment to be shown in a pop-up window) 146.17 114.95 T |
2030 |
|
|
(, as used by the Microsoft W) 329.61 114.95 T |
2031 |
|
|
(indows) 467.36 114.95 T |
2032 |
|
|
(Help system.) 146.17 100.95 T |
2033 |
|
|
FMENDPAGE |
2034 |
|
|
%%EndPage: "7" 12 |
2035 |
|
|
%%Page: "8" 12 |
2036 |
|
|
595.3 792 0 FMBEGINPAGE |
2037 |
|
|
0 10 Q |
2038 |
|
|
0 X |
2039 |
|
|
0 K |
2040 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2041 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2042 |
|
|
(8) 295.15 63.28 T |
2043 |
|
|
2 F |
2044 |
|
|
(PRINT) 72 736.95 T |
2045 |
|
|
0 12 Q |
2046 |
|
|
-0.17 (This attribute makes it easy for users to print of) 144.17 736.95 P |
2047 |
|
|
-0.17 (f the current document and rele-) 369.94 736.95 P |
2048 |
|
|
-0.48 (vant parts.) 146.17 722.95 P |
2049 |
|
|
2 10 Q |
2050 |
|
|
-0.96 (PRINT=REFERENCE) 198.17 722.95 P |
2051 |
|
|
0 12 Q |
2052 |
|
|
-0.48 ( \050the default\051 treats the link as a reference, i.e. the) 288.12 722.95 P |
2053 |
|
|
(URL is given as a footnote;) 146.17 708.95 T |
2054 |
|
|
2 10 Q |
2055 |
|
|
(PRINT=FOOTNOTE) 281.42 708.95 T |
2056 |
|
|
0 12 Q |
2057 |
|
|
( prints the linked document as a) 365.37 708.95 T |
2058 |
|
|
(footnote;) 146.17 694.95 T |
2059 |
|
|
2 10 Q |
2060 |
|
|
(PRINT=SIDEBAR) 192.47 694.95 T |
2061 |
|
|
0 12 Q |
2062 |
|
|
( prints the linked document as a sidebar; and) 270.43 694.95 T |
2063 |
|
|
2 10 Q |
2064 |
|
|
(PRINT=SECTION) 146.17 680.95 T |
2065 |
|
|
0 12 Q |
2066 |
|
|
( prints the linked document as a follow on section. Use) 224.12 680.95 T |
2067 |
|
|
2 10 Q |
2068 |
|
|
(PRINT=SILENT) 146.17 666.95 T |
2069 |
|
|
0 12 Q |
2070 |
|
|
( when you don\325) 218.13 666.95 T |
2071 |
|
|
(t want the link referenced or printed out) 292.86 666.95 T |
2072 |
|
|
0 10 Q |
2073 |
|
|
(1) 483.71 671.75 T |
2074 |
|
|
0 12 Q |
2075 |
|
|
(.) 488.71 666.95 T |
2076 |
|
|
2 10 Q |
2077 |
|
|
(TITLE) 72 647.95 T |
2078 |
|
|
0 12 Q |
2079 |
|
|
(De\336nes the title to use when the linked document is otherwise untitled.) 144.17 647.95 T |
2080 |
|
|
2 10 Q |
2081 |
|
|
(TYPE) 72 628.95 T |
2082 |
|
|
0 12 Q |
2083 |
|
|
-0.23 (The MIME content type of the linked document - for use in providing presenta-) 144.17 628.95 P |
2084 |
|
|
(tion cues only) 146.17 614.95 T |
2085 |
|
|
(, as it could easily become out of date.) 212.68 614.95 T |
2086 |
|
|
2 10 Q |
2087 |
|
|
(SIZE) 72 595.95 T |
2088 |
|
|
0 12 Q |
2089 |
|
|
(The size in bytes for the linked document. This should only be used as a guide) 144.17 595.95 T |
2090 |
|
|
(to progress in retrieving documents, as it is likely to get out of step with) 146.17 581.95 T |
2091 |
|
|
(changes to the tar) 146.17 567.95 T |
2092 |
|
|
(get document.) 230.22 567.95 T |
2093 |
|
|
2 10 Q |
2094 |
|
|
(METHODS) 72 548.95 T |
2095 |
|
|
0 12 Q |
2096 |
|
|
(This is a comma separated list of HTTP methods supported by the linked) 144.17 548.95 T |
2097 |
|
|
-0.1 (object. The browser might choose a dif) 146.17 534.95 P |
2098 |
|
|
-0.1 (ferent way of rendering the link for say) 332.9 534.95 P |
2099 |
|
|
(searchable objects.) 146.17 520.95 T |
2100 |
|
|
2 10 Q |
2101 |
|
|
(SHAPE) 72 501.95 T |
2102 |
|
|
0 12 Q |
2103 |
|
|
(This is used to de\336ne shaped buttons on top of images or \336gures, and is) 144.17 501.95 T |
2104 |
|
|
(explained later on.) 146.17 487.95 T |
2105 |
|
|
-0.03 (Y) 72 468.95 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 468.95 P |
2107 |
|
|
(tionships with other documents, e.g. a link to a table of contents. This is described later on.) 72 454.95 T |
2108 |
|
|
1 F |
2109 |
|
|
(5.3) 72 426.95 T |
2110 |
|
|
(Character Emphasis) 99 426.95 T |
2111 |
|
|
0 F |
2112 |
|
|
-0.18 (There has been considerable discussion on how to represent character emphasis. The previous) 72 407.95 P |
2113 |
|
|
(draft of HTML+ used a single element to handle all forms with a role attribute for the logical) 72 393.95 T |
2114 |
|
|
-0.44 (role, and other attributes for providing hints as to how to render the emphasis. This mechanism) 72 379.95 P |
2115 |
|
|
(was seen as being overloaded and prompted the use of separate elements in the current draft.) 72 365.95 T |
2116 |
|
|
1 F |
2117 |
|
|
(5.4) 72 337.95 T |
2118 |
|
|
(Presentation Only T) 99 337.95 T |
2119 |
|
|
(ags) 211.41 337.95 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 318.95 P |
2122 |
|
|
(bold, underline or strike-through:) 72 304.95 T |
2123 |
|
|
2 10 Q |
2124 |
|
|
(<I>italic text</I>) 108 285.95 T |
2125 |
|
|
4 12 Q |
2126 |
|
|
(italic text) 288 285.95 T |
2127 |
|
|
2 10 Q |
2128 |
|
|
(<B>bold text</B>) 108 271.95 T |
2129 |
|
|
5 12 Q |
2130 |
|
|
(bold text) 288 271.95 T |
2131 |
|
|
2 10 Q |
2132 |
|
|
(<U>underlined text</U>) 108 257.95 T |
2133 |
|
|
360.28 256.64 288 256.64 2 L |
2134 |
|
|
V |
2135 |
|
|
0.59 H |
2136 |
|
|
0 Z |
2137 |
|
|
N |
2138 |
|
|
0 12 Q |
2139 |
|
|
(underlined text) 288 257.95 T |
2140 |
|
|
2 10 Q |
2141 |
|
|
(<S>strike through</S>) 108 243.95 T |
2142 |
|
|
354.96 246.34 288 246.34 2 L |
2143 |
|
|
V |
2144 |
|
|
N |
2145 |
|
|
0 12 Q |
2146 |
|
|
(strike through) 288 243.95 T |
2147 |
|
|
2 10 Q |
2148 |
|
|
(<SUP>superscript</SUP>) 108 229.95 T |
2149 |
|
|
0 F |
2150 |
|
|
(superscript) 288 234.75 T |
2151 |
|
|
2 F |
2152 |
|
|
(<SUB>subscript</SUB>) 108 215.95 T |
2153 |
|
|
0 F |
2154 |
|
|
(subscript) 288 212.95 T |
2155 |
|
|
2 F |
2156 |
|
|
(<TT>f) 108 201.95 T |
2157 |
|
|
(ixed pitch</TT>) 137.98 201.95 T |
2158 |
|
|
(f) 288 201.95 T |
2159 |
|
|
(ixed pitch \050TT for Teletype\051) 294 201.95 T |
2160 |
|
|
0 12 Q |
2161 |
|
|
(These tags may be nested to combine ef) 72 182.95 T |
2162 |
|
|
(fects, e.g. bold-italic-\336xed-pitch text, and should be) 263.31 182.95 T |
2163 |
|
|
(considered as hints rather than as binding obligations on the browser) 72 168.95 T |
2164 |
|
|
(, e.g.) 400.63 168.95 T |
2165 |
|
|
2 10 Q |
2166 |
|
|
(Some <B><I><TT>bold italic f) 90 151.28 T |
2167 |
|
|
(ixed pitch text</TT></I></B>.) 257.91 151.28 T |
2168 |
|
|
0 12 Q |
2169 |
|
|
(which is rendered as: Some) 72 132.95 T |
2170 |
|
|
7 F |
2171 |
|
|
(bold italic f) 206.9 132.95 T |
2172 |
|
|
(ixed pitch text) 300.45 132.95 T |
2173 |
|
|
0 F |
2174 |
|
|
(.) 408.39 132.95 T |
2175 |
|
|
72 107.05 523.3 122.03 C |
2176 |
|
|
81 120.01 225 120.01 2 L |
2177 |
|
|
0.5 H |
2178 |
|
|
2 Z |
2179 |
|
|
0 X |
2180 |
|
|
0 K |
2181 |
|
|
N |
2182 |
|
|
0 -24.95 595.3 816.95 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 100.39 P |
2187 |
|
|
(too many to reference in footnotes.) 90 88.39 T |
2188 |
|
|
FMENDPAGE |
2189 |
|
|
%%EndPage: "8" 13 |
2190 |
|
|
%%Page: "9" 13 |
2191 |
|
|
595.3 792 0 FMBEGINPAGE |
2192 |
|
|
0 10 Q |
2193 |
|
|
0 X |
2194 |
|
|
0 K |
2195 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2196 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2197 |
|
|
(9) 295.15 63.28 T |
2198 |
|
|
1 12 Q |
2199 |
|
|
(5.5) 72 736.95 T |
2200 |
|
|
(Generic Emphasis) 99 736.95 T |
2201 |
|
|
0 F |
2202 |
|
|
-0.44 (These are some tags for indicating a level of emphasis without committing oneself to how they) 72 717.95 P |
2203 |
|
|
(should be rendered:) 72 703.95 T |
2204 |
|
|
2 10 Q |
2205 |
|
|
(<EM>normal emphasis</EM>) 108 684.95 T |
2206 |
|
|
0 12 Q |
2207 |
|
|
(typically italic) 342 684.95 T |
2208 |
|
|
2 10 Q |
2209 |
|
|
(<STRONG>strong emphasis</STRONG>) 108 670.95 T |
2210 |
|
|
0 12 Q |
2211 |
|
|
(typically bold) 342 670.95 T |
2212 |
|
|
1 F |
2213 |
|
|
(5.6) 72 642.95 T |
2214 |
|
|
(Logical Emphasis) 99 642.95 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 623.95 P |
2217 |
|
|
-0.22 (ard way of marking up text, it becomes possible to automatically index such references. There) 72 609.95 P |
2218 |
|
|
(are a potentially huge number of dif) 72 595.95 T |
2219 |
|
|
(ferent distinctions that could be made, and the set given) 244.32 595.95 T |
2220 |
|
|
-0.24 (below is intentionally minimalistic. Discussion is welcomed on just which elements should be) 72 581.95 P |
2221 |
|
|
(included in HTML+ given its intended role as a delivery format for hypertext documents:) 72 567.95 T |
2222 |
|
|
2 10 Q |
2223 |
|
|
(q) 108 548.95 T |
2224 |
|
|
0 12 Q |
2225 |
|
|
(a short quotation which can be included inline,) 216 548.95 T |
2226 |
|
|
(e.g.) 216 534.95 T |
2227 |
|
|
3 10 Q |
2228 |
|
|
( <q>to be or not to be, that is the question</q>) 233.32 534.95 T |
2229 |
|
|
0 12 Q |
2230 |
|
|
(use) 216 520.95 T |
2231 |
|
|
3 10 Q |
2232 |
|
|
( <q> and </q>) 231.99 520.95 T |
2233 |
|
|
0 12 Q |
2234 |
|
|
( in place of double quote marks.) 294.23 520.95 T |
2235 |
|
|
2 10 Q |
2236 |
|
|
(cite) 108 501.95 T |
2237 |
|
|
0 12 Q |
2238 |
|
|
(citation, e.g.) 216 501.95 T |
2239 |
|
|
3 10 Q |
2240 |
|
|
(<cite>Festinger) 278.29 501.95 T |
2241 |
|
|
(, L.\0501957\051, <I>A Theory) 346.63 501.95 T |
2242 |
|
|
(of Cognitive Dissonance</I>, Stanford.</cite>) 216 487.95 T |
2243 |
|
|
2 F |
2244 |
|
|
(person) 108 468.95 T |
2245 |
|
|
0 12 Q |
2246 |
|
|
(proper names, e.g.) 216 468.95 T |
2247 |
|
|
3 10 Q |
2248 |
|
|
(<person>Albert Einstein</person>) 307.26 468.95 T |
2249 |
|
|
2 F |
2250 |
|
|
(acronym) 108 454.95 T |
2251 |
|
|
0 12 Q |
2252 |
|
|
(acronyms e.g) 216 454.95 T |
2253 |
|
|
3 10 Q |
2254 |
|
|
(<acronym>NA) 282.95 454.95 T |
2255 |
|
|
(T) 346.08 454.95 T |
2256 |
|
|
(O</acronym>) 352.01 454.95 T |
2257 |
|
|
2 F |
2258 |
|
|
(abbrev) 108 440.95 T |
2259 |
|
|
0 12 Q |
2260 |
|
|
(abbreviations, e.g.) 216 440.95 T |
2261 |
|
|
3 10 Q |
2262 |
|
|
(<abbrev>v) 306.93 440.95 T |
2263 |
|
|
(. aux</abbrev>) 353.42 440.95 T |
2264 |
|
|
2 F |
2265 |
|
|
(cmd) 108 426.95 T |
2266 |
|
|
0 12 Q |
2267 |
|
|
(command name, e.g. chmod in Unix) 216 426.95 T |
2268 |
|
|
2 10 Q |
2269 |
|
|
(arg) 108 412.95 T |
2270 |
|
|
0 12 Q |
2271 |
|
|
(command ar) 216 412.95 T |
2272 |
|
|
(gument, e.g.) 275.4 412.95 T |
2273 |
|
|
3 10 Q |
2274 |
|
|
(<arg>-s</arg>) 337.7 412.95 T |
2275 |
|
|
2 F |
2276 |
|
|
(kbd) 108 398.95 T |
2277 |
|
|
0 12 Q |
2278 |
|
|
(something the use would have to type) 216 398.95 T |
2279 |
|
|
2 10 Q |
2280 |
|
|
(var) 108 384.95 T |
2281 |
|
|
0 12 Q |
2282 |
|
|
(named place holder) 216 384.95 T |
2283 |
|
|
(, e.g.) 309.44 384.95 T |
2284 |
|
|
3 10 Q |
2285 |
|
|
(<var>\336lename</var>) 335.75 384.95 T |
2286 |
|
|
2 F |
2287 |
|
|
(dfn) 108 370.95 T |
2288 |
|
|
0 12 Q |
2289 |
|
|
(de\336ning instance of a term) 216 370.95 T |
2290 |
|
|
2 10 Q |
2291 |
|
|
(code) 108 356.95 T |
2292 |
|
|
0 12 Q |
2293 |
|
|
(code example - usually shown in \336xed pitch font) 216 356.95 T |
2294 |
|
|
2 10 Q |
2295 |
|
|
(samp) 108 342.95 T |
2296 |
|
|
0 12 Q |
2297 |
|
|
(sequence of literal characters usually in variable pitch font) 216 342.95 T |
2298 |
|
|
(All these tags require a matching closing tag like the other emphasis elements, e.g.) 72 323.95 T |
2299 |
|
|
3 10 Q |
2300 |
|
|
(<cmd>cmp</cmd> [<arg>-l</arg>] [<arg>-s</arg>] <var>\336le1</var> <var>\336le2</var>) 81 306.28 T |
2301 |
|
|
1 12 Q |
2302 |
|
|
(5.7) 72 278.95 T |
2303 |
|
|
(Extending the Set of Logical Roles) 99 278.95 T |
2304 |
|
|
0 F |
2305 |
|
|
(When translating from other SGML-based formats, documents may include non-standard ele-) 72 259.95 T |
2306 |
|
|
(ments e.g.) 72 245.95 T |
2307 |
|
|
2 10 Q |
2308 |
|
|
(PROPNAME) 123.97 245.95 T |
2309 |
|
|
0 12 Q |
2310 |
|
|
( for proper names. HTML+ browsers will normally ignore such markup) 171.94 245.95 T |
2311 |
|
|
-0.13 (and process their contents as if these tags weren\325) 72 231.95 P |
2312 |
|
|
-0.13 (t present. The) 304.59 231.95 P |
2313 |
|
|
2 10 Q |
2314 |
|
|
-0.25 (RENDER) 372.83 231.95 P |
2315 |
|
|
0 12 Q |
2316 |
|
|
-0.13 ( element can be used to) 408.81 231.95 P |
2317 |
|
|
(tell the browser how to render such tags, e.g.) 72 217.95 T |
2318 |
|
|
2 10 Q |
2319 |
|
|
(<RENDER TAG=\323PROPNAME\323 STYLE=\323I\323>) 90 200.28 T |
2320 |
|
|
0 12 Q |
2321 |
|
|
(The) 72 181.95 T |
2322 |
|
|
2 10 Q |
2323 |
|
|
(STYLE) 93.65 181.95 T |
2324 |
|
|
0 12 Q |
2325 |
|
|
( attribute is a comma separated list of presentation tag names, i.e. one or more) 123.63 181.95 T |
2326 |
|
|
-0.24 (names from the list:) 72 167.95 P |
2327 |
|
|
2 10 Q |
2328 |
|
|
-0.48 (I) 169.65 167.95 P |
2329 |
|
|
0 12 Q |
2330 |
|
|
-0.24 (,) 175.64 167.95 P |
2331 |
|
|
2 10 Q |
2332 |
|
|
-0.48 (B) 181.4 167.95 P |
2333 |
|
|
0 12 Q |
2334 |
|
|
-0.24 (,) 187.4 167.95 P |
2335 |
|
|
2 10 Q |
2336 |
|
|
-0.48 (U) 193.15 167.95 P |
2337 |
|
|
0 12 Q |
2338 |
|
|
-0.24 (,) 199.15 167.95 P |
2339 |
|
|
2 10 Q |
2340 |
|
|
-0.48 (S) 204.91 167.95 P |
2341 |
|
|
0 12 Q |
2342 |
|
|
-0.24 (,) 210.9 167.95 P |
2343 |
|
|
2 10 Q |
2344 |
|
|
-0.48 (SUP) 216.66 167.95 P |
2345 |
|
|
0 12 Q |
2346 |
|
|
-0.24 (,) 233.32 167.95 P |
2347 |
|
|
2 10 Q |
2348 |
|
|
-0.48 (SUB) 239.07 167.95 P |
2349 |
|
|
0 12 Q |
2350 |
|
|
-0.24 (,) 257.06 167.95 P |
2351 |
|
|
2 10 Q |
2352 |
|
|
-0.48 (TT) 262.82 167.95 P |
2353 |
|
|
0 12 Q |
2354 |
|
|
-0.24 (. Include) 273.93 167.95 P |
2355 |
|
|
2 10 Q |
2356 |
|
|
-0.48 (P) 318.41 167.95 P |
2357 |
|
|
0 12 Q |
2358 |
|
|
-0.24 ( in the list of styles if the element needs a) 324.4 167.95 P |
2359 |
|
|
(paragraph break. Keeping non-standard markup in HTML+ documents may be useful for) 72 153.95 T |
2360 |
|
|
(indexing purposes. Note that the) 72 139.95 T |
2361 |
|
|
2 10 Q |
2362 |
|
|
(RENDER) 230.57 139.95 T |
2363 |
|
|
0 12 Q |
2364 |
|
|
( element isn\325) 266.55 139.95 T |
2365 |
|
|
(t meant to apply retrospectively) 328.29 139.95 T |
2366 |
|
|
(.) 479.4 139.95 T |
2367 |
|
|
FMENDPAGE |
2368 |
|
|
%%EndPage: "9" 14 |
2369 |
|
|
%%Page: "10" 14 |
2370 |
|
|
595.3 792 0 FMBEGINPAGE |
2371 |
|
|
0 10 Q |
2372 |
|
|
0 X |
2373 |
|
|
0 K |
2374 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2375 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2376 |
|
|
(10) 292.65 63.28 T |
2377 |
|
|
1 12 Q |
2378 |
|
|
(5.8) 72 736.95 T |
2379 |
|
|
(Annotations) 99 736.95 T |
2380 |
|
|
0 F |
2381 |
|
|
(Authors can include annotations which act to draw the readers attention or which provide) 72 717.95 T |
2382 |
|
|
(some additional comment on the main text of the paragraph. There are two types:) 72 703.95 T |
2383 |
|
|
2 10 Q |
2384 |
|
|
(footnote) 108 684.95 T |
2385 |
|
|
0 12 Q |
2386 |
|
|
(for additional information on some point) 216 684.95 T |
2387 |
|
|
2 10 Q |
2388 |
|
|
(margin) 108 670.95 T |
2389 |
|
|
0 12 Q |
2390 |
|
|
(attention getter for this paragraph) 216 670.95 T |
2391 |
|
|
-0.43 (When printed out, these annotations appear as footnotes or mar) 72 651.95 P |
2392 |
|
|
-0.43 (gin notes as their name implies,) 370.99 651.95 P |
2393 |
|
|
(e.g. <footnote>This is an example of a footnote</footnote>) 72 637.95 T |
2394 |
|
|
0 10 Q |
2395 |
|
|
(1) 357.21 642.75 T |
2396 |
|
|
0 12 Q |
2397 |
|
|
(. For on-line use, browsers may) 362.21 637.95 T |
2398 |
|
|
-0.09 (show the annotation by a hypertext button, e.g. a superscripted dingbat symbol or icon, which) 72 623.95 P |
2399 |
|
|
(when clicked reveals the annotation in a pop-up window) 72 609.95 T |
2400 |
|
|
(. Footnotes and mar) 342.36 609.95 T |
2401 |
|
|
(gins can contain) 437.42 609.95 T |
2402 |
|
|
(text with emphasis and images, but not other markup such as paragraphs, lists or tables. The) 72 595.95 T |
2403 |
|
|
2 10 Q |
2404 |
|
|
-0.4 (PANEL) 72 581.95 P |
2405 |
|
|
0 12 Q |
2406 |
|
|
-0.2 ( element in the previous draft has been dropped. Y) 101.98 581.95 P |
2407 |
|
|
-0.2 (ou can however) 341.46 581.95 P |
2408 |
|
|
-0.2 (, indicate that a hyper-) 416.52 581.95 P |
2409 |
|
|
(text link should be rendered as a sidebar when printed out.) 72 567.95 T |
2410 |
|
|
1 F |
2411 |
|
|
(5.9) 72 539.95 T |
2412 |
|
|
(Images) 99 539.95 T |
2413 |
|
|
0 F |
2414 |
|
|
(Images can be included as character like elements with text \337owing around the image, e.g.) 72 520.95 T |
2415 |
|
|
(This example is produced by the following piece of HTML+) 72 388.95 T |
2416 |
|
|
2 10 Q |
2417 |
|
|
(<p><img align=top src=\323http://spoof.cern.ch/people/tbl.gif\323> Before com-) 90 371.28 T |
2418 |
|
|
(ing to CERN, Tim worked on, among other things, document production and) 90 359.28 T |
2419 |
|
|
(text processing. He developed his f) 90 347.28 T |
2420 |
|
|
(irst hypertext system, \322Enquire\323, in) 299.89 347.28 T |
2421 |
|
|
(1980 for his own use \050although unaware of the existence of the term) 90 335.28 T |
2422 |
|
|
-0.45 (HyperText\051. With a background in text processing, real-time software and) 90 323.28 P |
2423 |
|
|
(communications, Tim decided that high energy physics needed a networked) 90 311.28 T |
2424 |
|
|
(hypertext system and CERN was an ideal site for the development of wide-) 90 299.28 T |
2425 |
|
|
(area hypertext ideas. Tim started the WorldWideWeb project at CERN in) 90 287.28 T |
2426 |
|
|
(1989. He wrote the application on the NeXT along with most of the commu-) 90 275.28 T |
2427 |
|
|
(nications software.) 90 263.28 T |
2428 |
|
|
0 12 Q |
2429 |
|
|
-0.22 (The) 72 244.95 P |
2430 |
|
|
2 10 Q |
2431 |
|
|
-0.44 (IMG) 93.43 244.95 P |
2432 |
|
|
0 12 Q |
2433 |
|
|
-0.22 ( element speci\336es an image via a) 111.42 244.95 P |
2434 |
|
|
2 10 Q |
2435 |
|
|
-0.44 (URL) 270.77 244.95 P |
2436 |
|
|
0 12 Q |
2437 |
|
|
-0.22 (. The) 288.76 244.95 P |
2438 |
|
|
2 10 Q |
2439 |
|
|
-0.44 (ALIGN=TOP) 315.96 244.95 P |
2440 |
|
|
0 12 Q |
2441 |
|
|
-0.22 ( attribute ensures that the top of) 369.93 244.95 P |
2442 |
|
|
-0.34 (the image is level with the top of the current text line. Y) 72 230.95 P |
2443 |
|
|
-0.34 (ou can also use) 335.49 230.95 P |
2444 |
|
|
2 10 Q |
2445 |
|
|
-0.69 (ALIGN=MIDDLE) 410.05 230.95 P |
2446 |
|
|
0 12 Q |
2447 |
|
|
-0.34 ( to align) 482.02 230.95 P |
2448 |
|
|
(the center of the image with that of the current text line, and) 72 216.95 T |
2449 |
|
|
2 10 Q |
2450 |
|
|
(ALIGN=BOTTOM) 363.12 216.95 T |
2451 |
|
|
0 12 Q |
2452 |
|
|
( to align the bot-) 435.08 216.95 T |
2453 |
|
|
(tom of the image with the bottom of the current text line. Browsers are not expected to apply) 72 202.95 T |
2454 |
|
|
-0.03 (text \337ow retrospectively) 72 188.95 P |
2455 |
|
|
-0.03 (, so using) 187.75 188.95 P |
2456 |
|
|
2 10 Q |
2457 |
|
|
-0.05 (ALIGN=MIDDLE) 236.32 188.95 P |
2458 |
|
|
0 12 Q |
2459 |
|
|
-0.03 ( and) 308.28 188.95 P |
2460 |
|
|
2 10 Q |
2461 |
|
|
-0.05 (ALIGN=BOTTOM) 331.54 188.95 P |
2462 |
|
|
0 12 Q |
2463 |
|
|
-0.03 ( may overwrite previous) 403.5 188.95 P |
2464 |
|
|
(lines of text. If the) 72 174.95 T |
2465 |
|
|
2 10 Q |
2466 |
|
|
(ALIGN) 163.27 174.95 T |
2467 |
|
|
0 12 Q |
2468 |
|
|
( attribute is missing then) 193.25 174.95 T |
2469 |
|
|
2 10 Q |
2470 |
|
|
(ALIGN=TOP) 314.2 174.95 T |
2471 |
|
|
0 12 Q |
2472 |
|
|
( is assumed.) 368.17 174.95 T |
2473 |
|
|
72 95.05 523.3 110.03 C |
2474 |
|
|
81 108.01 225 108.01 2 L |
2475 |
|
|
0.5 H |
2476 |
|
|
2 Z |
2477 |
|
|
0 X |
2478 |
|
|
0 K |
2479 |
|
|
N |
2480 |
|
|
0 -24.95 595.3 816.95 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 88.39 T |
2485 |
|
|
72 83.05 523.3 744.95 C |
2486 |
|
|
73.46 403.95 521.83 516.95 C |
2487 |
|
|
146.26 435.95 515.26 507.95 R |
2488 |
|
|
7 X |
2489 |
|
|
0 K |
2490 |
|
|
V |
2491 |
|
|
3 10 Q |
2492 |
|
|
0 X |
2493 |
|
|
(Before coming to CERN, T) 146.26 501.28 T |
2494 |
|
|
(im worked on, among other things, document produc-) 264.2 501.28 T |
2495 |
|
|
(tion and text processing. He developed his \336rst hypertext system, \322Enquire\323, in) 146.26 489.28 T |
2496 |
|
|
(1980 for his own use \050although unaware of the existence of the term HyperT) 146.26 477.28 T |
2497 |
|
|
(ext\051.) 481.8 477.28 T |
2498 |
|
|
(With a background in text processing, real-time software and communications,) 146.26 465.28 T |
2499 |
|
|
(T) 146.26 453.28 T |
2500 |
|
|
(im decided that high energy physics needed a networked hypertext system and) 152 453.28 T |
2501 |
|
|
(CERN was an ideal site for the development of wide-area hypertext ideas.T) 146.26 441.28 T |
2502 |
|
|
(im) 479.18 441.28 T |
2503 |
|
|
91.46 408.95 514.46 435.95 R |
2504 |
|
|
7 X |
2505 |
|
|
V |
2506 |
|
|
0 X |
2507 |
|
|
(started the W) 91.46 429.28 T |
2508 |
|
|
(orldWideW) 150.72 429.28 T |
2509 |
|
|
(eb project at CERN in 1989. He wrote the application on the NeXT) 199.41 429.28 T |
2510 |
|
|
(along with most of the communications software.) 91.46 417.28 T |
2511 |
|
|
%%BeginBinary: 9960 |
2512 |
|
|
64 89 45 63 0 91.46 444.95 |
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 83.05 523.3 744.95 C |
2637 |
|
|
0 -24.95 595.3 816.95 C |
2638 |
|
|
FMENDPAGE |
2639 |
|
|
%%EndPage: "10" 15 |
2640 |
|
|
%%Page: "11" 15 |
2641 |
|
|
595.3 792 0 FMBEGINPAGE |
2642 |
|
|
0 10 Q |
2643 |
|
|
0 X |
2644 |
|
|
0 K |
2645 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2646 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2647 |
|
|
(11) 292.65 63.28 T |
2648 |
|
|
0 12 Q |
2649 |
|
|
(Not all display types can show images. The) 72 736.95 T |
2650 |
|
|
2 10 Q |
2651 |
|
|
(IMAGE) 283.53 736.95 T |
2652 |
|
|
0 12 Q |
2653 |
|
|
( element behaves in the same way as) 313.51 736.95 T |
2654 |
|
|
2 10 Q |
2655 |
|
|
(IMG) 492.7 736.95 T |
2656 |
|
|
0 F |
2657 |
|
|
(1) 510.7 741.75 T |
2658 |
|
|
0 12 Q |
2659 |
|
|
(but allows you to include descriptive text, which can be shown on text-only displays:) 72 722.95 T |
2660 |
|
|
2 10 Q |
2661 |
|
|
(<image align=top src=\323http://spoof.cern.ch/people/tbl.gif\323>A photo of) 90 705.28 T |
2662 |
|
|
-0.95 (Tim Berners-Lee</image> Before coming to CERN, Tim worked on, among other) 90 693.28 P |
2663 |
|
|
(things, document production and text processing.) 90 681.28 T |
2664 |
|
|
6 F |
2665 |
|
|
(etc.) 383.84 681.28 T |
2666 |
|
|
0 12 Q |
2667 |
|
|
(On text-only displays, the text within the) 72 662.95 T |
2668 |
|
|
2 10 Q |
2669 |
|
|
(IMAGE) 271.22 662.95 T |
2670 |
|
|
0 12 Q |
2671 |
|
|
( element can be shown in place of the image:) 301.21 662.95 T |
2672 |
|
|
2 10 Q |
2673 |
|
|
-0.34 ([A photo of Tim Berners-Lee] Before coming to CERN, Tim worked on, among) 90 645.28 P |
2674 |
|
|
(other things, document production and text processing.) 90 633.28 T |
2675 |
|
|
6 F |
2676 |
|
|
(etc.) 419.82 633.28 T |
2677 |
|
|
0 12 Q |
2678 |
|
|
(The) 72 614.95 T |
2679 |
|
|
2 10 Q |
2680 |
|
|
(SEETHRU) 93.65 614.95 T |
2681 |
|
|
0 12 Q |
2682 |
|
|
( attribute can be used to designate a chromakey so that the image background) 135.62 614.95 T |
2683 |
|
|
(matches the document background. This is an experimental feature and the format of the) 72 600.95 T |
2684 |
|
|
(attribute\325) 72 586.95 T |
2685 |
|
|
(s value has yet to be de\336ned -) 115.31 586.95 T |
2686 |
|
|
4 F |
2687 |
|
|
(suggestions ar) 260.54 586.95 T |
2688 |
|
|
(e welcomed.) 329.73 586.95 T |
2689 |
|
|
0 F |
2690 |
|
|
(Images can be made active in one of three ways) 72 567.95 T |
2691 |
|
|
(\245) 90 548.95 T |
2692 |
|
|
(The whole image can be made into a hypertext link) 108 548.95 T |
2693 |
|
|
(\245) 90 529.95 T |
2694 |
|
|
(Mouse/Pen clicks on the image can be passed to a WWW server) 108 529.95 T |
2695 |
|
|
(\245) 90 510.95 T |
2696 |
|
|
(Shaped hypertext buttons can be overlayed on the image) 108 510.95 T |
2697 |
|
|
(Making the entire image into an iconic hypertext button is simple:) 72 491.95 T |
2698 |
|
|
2 10 Q |
2699 |
|
|
(<a href=\323bigpic.giff\323><image src=\323smallpic.gif\323>Our house</image></a>) 90 474.28 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 455.95 P |
2702 |
|
|
-0.17 (ger) 505.16 455.95 P |
2703 |
|
|
(version, which would take signi\336cantly longer to retrieve. When using images as hypertext) 72 441.95 T |
2704 |
|
|
(links, don\325) 72 427.95 T |
2705 |
|
|
(t for) 123.09 427.95 T |
2706 |
|
|
(get to include a textual description. This is needed for the link caption for peo-) 143.19 427.95 T |
2707 |
|
|
(ple using text-only displays.) 72 413.95 T |
2708 |
|
|
(In some cases, servers can handle mouse clicks or drags on the image. This capability is sig-) 72 394.95 T |
2709 |
|
|
(nalled in the header information returned along with the image data. Y) 72 380.95 T |
2710 |
|
|
(ou can also use the) 409.22 380.95 T |
2711 |
|
|
2 10 Q |
2712 |
|
|
(ISMAP) 72 366.95 T |
2713 |
|
|
0 12 Q |
2714 |
|
|
( attribute. This mechanism and the ability to add shaped buttons are de\336ned in detail in) 101.98 366.95 T |
2715 |
|
|
(the description of \336gures.) 72 352.95 T |
2716 |
|
|
(The delay in connecting to the server for each image in turn can be reduced by asking HTTP) 72 333.95 T |
2717 |
|
|
(servers to include images with the HTML+ document as a MIME multipart message \050include) 72 319.95 T |
2718 |
|
|
2 10 Q |
2719 |
|
|
(multipart/mixed) 72 305.95 T |
2720 |
|
|
0 12 Q |
2721 |
|
|
( with the) 161.95 305.95 T |
2722 |
|
|
2 10 Q |
2723 |
|
|
(Accept) 206.93 305.95 T |
2724 |
|
|
0 12 Q |
2725 |
|
|
(: header in the request message\051.) 242.91 305.95 T |
2726 |
|
|
1 F |
2727 |
|
|
(5.10) 72 277.95 T |
2728 |
|
|
(Change Bars and Document Amendments) 99 277.95 T |
2729 |
|
|
0 F |
2730 |
|
|
(Change bars are shown for parts of the document designated with the) 72 258.95 T |
2731 |
|
|
2 10 Q |
2732 |
|
|
(CHANGED) 407.08 258.95 T |
2733 |
|
|
0 12 Q |
2734 |
|
|
( element. This) 449.06 258.95 T |
2735 |
|
|
(can appear anywhere that normal text is allowed \050as shown by the) 72 244.95 T |
2736 |
|
|
2 10 Q |
2737 |
|
|
(%text;) 391.08 244.95 T |
2738 |
|
|
0 12 Q |
2739 |
|
|
( entity reference in) 427.07 244.95 T |
2740 |
|
|
(the DTD\051:) 72 230.95 T |
2741 |
|
|
2 10 Q |
2742 |
|
|
(<changed id=z34>text including some changes<changed idref=z34>) 90 213.28 T |
2743 |
|
|
0 12 Q |
2744 |
|
|
(The same element) 72 194.95 T |
2745 |
|
|
0 10 Q |
2746 |
|
|
(2) 159.26 199.75 T |
2747 |
|
|
0 12 Q |
2748 |
|
|
( is used to designate the start and end of changes, using matched) 164.26 194.95 T |
2749 |
|
|
2 10 Q |
2750 |
|
|
(ID) 476.04 194.95 T |
2751 |
|
|
0 12 Q |
2752 |
|
|
( and) 488.04 194.95 T |
2753 |
|
|
2 10 Q |
2754 |
|
|
-0.88 (IDREF) 72 180.95 P |
2755 |
|
|
0 12 Q |
2756 |
|
|
-0.44 ( attribute values. This mechanism avoids syntactic problems that would arise from using) 101.98 180.95 P |
2757 |
|
|
-0.22 (a conventional start and end tag pair) 72 166.95 P |
2758 |
|
|
-0.22 (, as changes to a document can span dif) 244.06 166.95 P |
2759 |
|
|
-0.22 (ferent levels of the) 431.59 166.95 P |
2760 |
|
|
72 131.05 523.3 146.03 C |
2761 |
|
|
81 144.01 225 144.01 2 L |
2762 |
|
|
0.5 H |
2763 |
|
|
2 Z |
2764 |
|
|
0 X |
2765 |
|
|
0 K |
2766 |
|
|
N |
2767 |
|
|
0 -24.95 595.3 816.95 C |
2768 |
|
|
0 10 Q |
2769 |
|
|
0 X |
2770 |
|
|
0 K |
2771 |
|
|
(1. Y) 90 124.39 T |
2772 |
|
|
(ou can also use) 106.21 124.39 T |
2773 |
|
|
2 F |
2774 |
|
|
(IMG) 169.5 124.39 T |
2775 |
|
|
0 F |
2776 |
|
|
(\325) 187.49 124.39 T |
2777 |
|
|
(s) 190.26 124.39 T |
2778 |
|
|
2 F |
2779 |
|
|
(ALT) 196.65 124.39 T |
2780 |
|
|
0 F |
2781 |
|
|
( attribute for textual descriptions, but authors are recommended to use) 214.64 124.39 T |
2782 |
|
|
2 F |
2783 |
|
|
(IMAGE) 90 112.39 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 112.39 T |
2786 |
|
|
(ing graphical browsers. The descriptions are also useful when the images take a long time to retrieve.) 90 100.39 T |
2787 |
|
|
(2. Maybe we should use distinct tag names- if so what names?) 90 88.39 T |
2788 |
|
|
FMENDPAGE |
2789 |
|
|
%%EndPage: "11" 16 |
2790 |
|
|
%%Page: "12" 16 |
2791 |
|
|
595.3 792 0 FMBEGINPAGE |
2792 |
|
|
0 10 Q |
2793 |
|
|
0 X |
2794 |
|
|
0 K |
2795 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2796 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2797 |
|
|
(12) 292.65 63.28 T |
2798 |
|
|
0 12 Q |
2799 |
|
|
(document\325) 72 736.95 T |
2800 |
|
|
(s formal structure. Additional attributes may be used with the) 122.64 736.95 T |
2801 |
|
|
2 10 Q |
2802 |
|
|
(CHANGED) 420.11 736.95 T |
2803 |
|
|
0 12 Q |
2804 |
|
|
( element to) 462.09 736.95 T |
2805 |
|
|
(hold related details, e.g.) 72 722.95 T |
2806 |
|
|
2 10 Q |
2807 |
|
|
(BY) 189.58 722.95 T |
2808 |
|
|
0 12 Q |
2809 |
|
|
(,) 200.03 722.95 T |
2810 |
|
|
2 10 Q |
2811 |
|
|
(WHEN) 206.03 722.95 T |
2812 |
|
|
0 12 Q |
2813 |
|
|
(,) 230.01 722.95 T |
2814 |
|
|
2 10 Q |
2815 |
|
|
(WHY) 236.01 722.95 T |
2816 |
|
|
0 12 Q |
2817 |
|
|
(,) 252.45 722.95 T |
2818 |
|
|
2 10 Q |
2819 |
|
|
(WHAT) 258.45 722.95 T |
2820 |
|
|
0 12 Q |
2821 |
|
|
(.) 281.55 722.95 T |
2822 |
|
|
(In legal documents and amendments to proposed legislation, there is often the need to show) 72 703.95 T |
2823 |
|
|
(parts of the text as being removed or added to the document. This is commonly shown using) 72 689.95 T |
2824 |
|
|
-0.33 (strike-through and underlining respectively) 72 675.95 P |
2825 |
|
|
-0.33 (. The) 277.76 675.95 P |
2826 |
|
|
2 10 Q |
2827 |
|
|
-0.66 (REMOVED) 304.74 675.95 P |
2828 |
|
|
0 12 Q |
2829 |
|
|
-0.33 ( and) 346.72 675.95 P |
2830 |
|
|
2 10 Q |
2831 |
|
|
-0.66 (ADDED) 369.38 675.95 P |
2832 |
|
|
0 12 Q |
2833 |
|
|
-0.33 ( tags are provided for this) 399.36 675.95 P |
2834 |
|
|
(purpose:) 72 661.95 T |
2835 |
|
|
2 10 Q |
2836 |
|
|
-0.62 (<P>This bill would require the Legislative Counsel, with the advice of the) 81 644.28 P |
2837 |
|
|
-0.57 (Joint Rules Committee of the Senate and Assembly, to make available to the) 81 632.28 P |
2838 |
|
|
(public by means of access by way of <removed>computer modem</removed>) 81 620.28 T |
2839 |
|
|
(<added>the largest nonproprietary, nonprof) 81 608.28 T |
2840 |
|
|
(it cooperative public computer) 332.86 608.28 T |
2841 |
|
|
(network,</added> specif) 81 596.28 T |
2842 |
|
|
(ied information concerning bills, the proceedings) 218.92 596.28 T |
2843 |
|
|
-0.68 (of the houses and committees of the Legislature, statutory enactments, and) 81 584.28 P |
2844 |
|
|
(the California Constitution.) 81 572.28 T |
2845 |
|
|
0 12 Q |
2846 |
|
|
(Which might be displayed as:) 72 553.95 T |
2847 |
|
|
0 10 Q |
2848 |
|
|
(This bill would require the Legislative Counsel, with the advice of the Joint Rules Committee of the) 90 536.28 T |
2849 |
|
|
(Senate and Assembly) 90 524.28 T |
2850 |
|
|
(, to make available to the public by means of access by way of) 175.4 524.28 T |
2851 |
|
|
497.95 526.27 427.71 526.27 2 L |
2852 |
|
|
V |
2853 |
|
|
0.49 H |
2854 |
|
|
0 Z |
2855 |
|
|
N |
2856 |
|
|
(computer modem) 427.71 524.28 T |
2857 |
|
|
115.26 511.19 90 511.19 2 L |
2858 |
|
|
V |
2859 |
|
|
N |
2860 |
|
|
(the lar) 90 512.28 T |
2861 |
|
|
193.07 511.19 115.08 511.19 2 L |
2862 |
|
|
V |
2863 |
|
|
N |
2864 |
|
|
(gest nonproprietary) 115.08 512.28 T |
2865 |
|
|
386.18 511.19 192.42 511.19 2 L |
2866 |
|
|
V |
2867 |
|
|
N |
2868 |
|
|
(, nonpro\336t cooperative public computer network) 192.42 512.28 T |
2869 |
|
|
4 F |
2870 |
|
|
(,) 386.18 512.28 T |
2871 |
|
|
0 F |
2872 |
|
|
(speci\336ed information con-) 391.17 512.28 T |
2873 |
|
|
(cerning bills, the proceedings of the houses and committees of the Legislature, statutory enactments,) 90 500.28 T |
2874 |
|
|
(and the California Constitution.) 90 488.28 T |
2875 |
|
|
0 12 Q |
2876 |
|
|
(Color enhancements may be used to further distinguish the amendments, e.g. red lines for) 72 469.95 T |
2877 |
|
|
(strike-through. This mechanism is not intended for representing revision histories, which are) 72 455.95 T |
2878 |
|
|
(better served by traditional change control mechanisms.) 72 441.95 T |
2879 |
|
|
1 F |
2880 |
|
|
(5.1) 72 413.95 T |
2881 |
|
|
(1) 88.01 413.95 T |
2882 |
|
|
(Conditional T) 99 413.95 T |
2883 |
|
|
(ext) 174.74 413.95 T |
2884 |
|
|
0 F |
2885 |
|
|
(It is often quite dif) 72 394.95 T |
2886 |
|
|
(\336cult to phrase the captions for hypertext buttons so that they make sense) 161.06 394.95 T |
2887 |
|
|
(when printed out. The) 72 380.95 T |
2888 |
|
|
2 10 Q |
2889 |
|
|
(ONLINE) 180.92 380.95 T |
2890 |
|
|
0 12 Q |
2891 |
|
|
( and) 216.9 380.95 T |
2892 |
|
|
2 10 Q |
2893 |
|
|
(PRINTED) 240.22 380.95 T |
2894 |
|
|
0 12 Q |
2895 |
|
|
( elements can be used to de\336ne text which is for) 282.2 380.95 T |
2896 |
|
|
(use only when read on-line or on the printed page respectively:) 72 366.95 T |
2897 |
|
|
2 10 Q |
2898 |
|
|
(<online>click <a href=\323info.html\323>here</a>for more information.</online>) 90 349.28 T |
2899 |
|
|
(<printed>Further information can be found in [Higgins 84b].</printed>) 90 337.28 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 318.95 P |
2902 |
|
|
-0.47 (Browsers can help by referencing hypertext links as footnotes when printed out. See the earlier) 72 304.95 P |
2903 |
|
|
(description of the) 72 290.95 T |
2904 |
|
|
2 10 Q |
2905 |
|
|
(PRINT) 158.94 290.95 T |
2906 |
|
|
0 12 Q |
2907 |
|
|
( attribute for the) 188.92 290.95 T |
2908 |
|
|
2 10 Q |
2909 |
|
|
(A) 269.53 290.95 T |
2910 |
|
|
0 12 Q |
2911 |
|
|
( tag.) 275.53 290.95 T |
2912 |
|
|
1 F |
2913 |
|
|
(5.12) 72 262.95 T |
2914 |
|
|
(Explicit Line Breaks) 99 262.95 T |
2915 |
|
|
0 F |
2916 |
|
|
(Y) 72 243.95 T |
2917 |
|
|
(ou can make individual lines explicit with the) 79.46 243.95 T |
2918 |
|
|
2 10 Q |
2919 |
|
|
(<L>) 301.33 243.95 T |
2920 |
|
|
0 12 Q |
2921 |
|
|
( element, which contains the text of the) 319.32 243.95 T |
2922 |
|
|
(line in the same way that) 72 229.95 T |
2923 |
|
|
2 10 Q |
2924 |
|
|
(<P>) 194.59 229.95 T |
2925 |
|
|
0 12 Q |
2926 |
|
|
( contains the text of the paragraph.) 212.57 229.95 T |
2927 |
|
|
2 10 Q |
2928 |
|
|
(<P>) 90 212.28 T |
2929 |
|
|
(<L>22 The Avenue,) 90 200.28 T |
2930 |
|
|
(<L>Harrow,) 90 188.28 T |
2931 |
|
|
(<L>London, NW1 5ER) 90 176.28 T |
2932 |
|
|
0 12 Q |
2933 |
|
|
(An alternative is the) 72 157.95 T |
2934 |
|
|
2 10 Q |
2935 |
|
|
(<BR>) 171.93 157.95 T |
2936 |
|
|
0 12 Q |
2937 |
|
|
( element which acts as a forced line break.) 195.92 157.95 T |
2938 |
|
|
2 10 Q |
2939 |
|
|
(<P>22 The Avenue<BR>) 90 140.28 T |
2940 |
|
|
(Harrow,<BR>London, NW1 5ER) 90 128.28 T |
2941 |
|
|
0 12 Q |
2942 |
|
|
(The) 72 109.95 T |
2943 |
|
|
2 10 Q |
2944 |
|
|
(<L>) 93.65 109.95 T |
2945 |
|
|
0 12 Q |
2946 |
|
|
( element is useful when you want to name each line, e.g.) 111.64 109.95 T |
2947 |
|
|
2 10 Q |
2948 |
|
|
(<L ID=\323L23\323>) 385.77 109.95 T |
2949 |
|
|
0 12 Q |
2950 |
|
|
(. Y) 457.73 109.95 T |
2951 |
|
|
(ou may) 471.19 109.95 T |
2952 |
|
|
(also want to disable word wrap for the current paragraph, as in) 72 95.95 T |
2953 |
|
|
2 10 Q |
2954 |
|
|
(<P WRAP=OFF>) 375.42 95.95 T |
2955 |
|
|
0 12 Q |
2956 |
|
|
(.) 447.38 95.95 T |
2957 |
|
|
FMENDPAGE |
2958 |
|
|
%%EndPage: "12" 17 |
2959 |
|
|
%%Page: "13" 17 |
2960 |
|
|
595.3 792 0 FMBEGINPAGE |
2961 |
|
|
0 10 Q |
2962 |
|
|
0 X |
2963 |
|
|
0 K |
2964 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
2965 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
2966 |
|
|
(13) 292.65 63.28 T |
2967 |
|
|
1 14 Q |
2968 |
|
|
(6) 72 735.62 T |
2969 |
|
|
(Different Paragraph Styles) 90 735.62 T |
2970 |
|
|
0 12 Q |
2971 |
|
|
(T) 72 715.95 T |
2972 |
|
|
(o avoid all text appearing in the same style, HTML+ provides distinct styles for quotes,) 78.49 715.95 T |
2973 |
|
|
(abstracts, bylines and admonishments. All these elements can contain multiple paragraphs:) 72 701.95 T |
2974 |
|
|
1 F |
2975 |
|
|
(6.1) 72 673.95 T |
2976 |
|
|
(Longer Quotations) 99 673.95 T |
2977 |
|
|
0 F |
2978 |
|
|
(When you want to include a quotation that extends over more that one paragraph, you should) 72 654.95 T |
2979 |
|
|
(use the) 72 640.95 T |
2980 |
|
|
2 10 Q |
2981 |
|
|
(QUOTE) 108.64 640.95 T |
2982 |
|
|
0 F |
2983 |
|
|
(1) 138.62 645.75 T |
2984 |
|
|
0 12 Q |
2985 |
|
|
( element. Quoted text should preferably be indented, and rendered using a dis-) 143.62 640.95 T |
2986 |
|
|
(tinctive font, e.g.) 72 626.95 T |
2987 |
|
|
2 10 Q |
2988 |
|
|
-0.81 (<P>The following is a quotation from the forward by Yuri Rubinsky to \322The) 90 609.28 P |
2989 |
|
|
-0.41 (SGML Handbook\323 by Charles F. Goldfarb, published by the Clarendon Press,) 90 597.28 P |
2990 |
|
|
(Oxford, 1990.) 90 585.28 T |
2991 |
|
|
-0.87 (<QUOTE>The next f) 90 568.28 P |
2992 |
|
|
-0.87 (ive years will see a revolution in computing. Users will) 190.2 568.28 P |
2993 |
|
|
(no longer have to work at every computer task as if they had no need or) 90 556.28 T |
2994 |
|
|
-0.34 (ability to share data with all their other computer tasks, they will not) 90 544.28 P |
2995 |
|
|
(need to act as if the computer is simply a replacement for paper, nor) 90 532.28 T |
2996 |
|
|
-0.34 (will they have to appease computers or software programs that seem to be) 90 520.28 P |
2997 |
|
|
(at war with one another.</QUOTE>) 90 508.28 T |
2998 |
|
|
0 12 Q |
2999 |
|
|
(which might be rendered as:) 72 489.95 T |
3000 |
|
|
0 10 Q |
3001 |
|
|
(The following is a quotation from the forward by Y) 90 472.28 T |
3002 |
|
|
(uri Rubinsky to \322The SGML Handbook\323 by Charles F) 295.14 472.28 T |
3003 |
|
|
(.) 511.43 472.28 T |
3004 |
|
|
(Goldfarb, published by the Clarendon Press, Oxford, 1990.) 90 460.28 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 443.28 P |
3007 |
|
|
(computer task as if they had no need or ability to share data with all their other computer tasks,) 99 431.28 T |
3008 |
|
|
(they will not need to act as if the computer is simply a replacement for paper) 99 419.28 T |
3009 |
|
|
(, nor will they have) 435.08 419.28 T |
3010 |
|
|
(to appease computers or software programs that seem to be at war with one another) 99 407.28 T |
3011 |
|
|
(.) 472.86 407.28 T |
3012 |
|
|
1 12 Q |
3013 |
|
|
(6.2) 72 379.95 T |
3014 |
|
|
(Abstracts) 99 379.95 T |
3015 |
|
|
0 F |
3016 |
|
|
-0.2 (The) 72 360.95 P |
3017 |
|
|
2 10 Q |
3018 |
|
|
-0.4 (ABSTRACT) 93.45 360.95 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 360.95 P |
3021 |
|
|
(level one heading. It should be rendered in an easily read font, distinct from normal text, and) 72 346.95 T |
3022 |
|
|
(preferably indented. An example is given in the next section.) 72 332.95 T |
3023 |
|
|
1 F |
3024 |
|
|
(6.3) 72 304.95 T |
3025 |
|
|
(Bylines) 99 304.95 T |
3026 |
|
|
0 F |
3027 |
|
|
(The) 72 285.95 T |
3028 |
|
|
2 10 Q |
3029 |
|
|
(BYLINE) 93.65 285.95 T |
3030 |
|
|
0 12 Q |
3031 |
|
|
( element) 129.63 285.95 T |
3032 |
|
|
0 10 Q |
3033 |
|
|
(2) 170.6 290.75 T |
3034 |
|
|
0 12 Q |
3035 |
|
|
( is similar to) 175.6 285.95 T |
3036 |
|
|
2 10 Q |
3037 |
|
|
(QUOTE) 238.24 285.95 T |
3038 |
|
|
0 12 Q |
3039 |
|
|
( and is used for information about the author) 268.22 285.95 T |
3040 |
|
|
(, e.g.) 481.6 285.95 T |
3041 |
|
|
-0.18 (contact details and release date. A common convention is to include a hypertext link to a node) 72 271.95 P |
3042 |
|
|
(with more information about the author) 72 257.95 T |
3043 |
|
|
(. Bylines can occur at the beginning or end of a docu-) 260.88 257.95 T |
3044 |
|
|
(ment, e.g:) 72 243.95 T |
3045 |
|
|
2 10 Q |
3046 |
|
|
(<H1>HTML+ \050Hypertext markup format</H1>) 90 226.28 T |
3047 |
|
|
(<ABSTRACT>A proposed standard for a light weight delivery format for) 90 209.28 T |
3048 |
|
|
(browsing and querying information in a web of globally distributed) 108 197.28 T |
3049 |
|
|
(hypertext accessible over the Internet) 108 185.28 T |
3050 |
|
|
(</ABSTRACT>) 90 173.28 T |
3051 |
|
|
72 143.05 523.3 158.03 C |
3052 |
|
|
81 156.01 225 156.01 2 L |
3053 |
|
|
0.5 H |
3054 |
|
|
2 Z |
3055 |
|
|
0 X |
3056 |
|
|
0 K |
3057 |
|
|
N |
3058 |
|
|
0 -24.95 595.3 816.95 C |
3059 |
|
|
0 10 Q |
3060 |
|
|
0 X |
3061 |
|
|
0 K |
3062 |
|
|
-0.28 (1. The equivalent) 90 136.39 P |
3063 |
|
|
2 F |
3064 |
|
|
-0.66 (BLOCKQUOTE) 161.34 136.39 P |
3065 |
|
|
0 F |
3066 |
|
|
-0.28 ( element is provided for backwards compatibility with HTML. Perhaps) 221.31 136.39 P |
3067 |
|
|
(we should extend) 90 124.39 T |
3068 |
|
|
2 F |
3069 |
|
|
(QUOTE) 162.45 124.39 T |
3070 |
|
|
0 F |
3071 |
|
|
( to allow quote by) 192.43 124.39 T |
3072 |
|
|
4 F |
3073 |
|
|
(name) 267.11 124.39 T |
3074 |
|
|
0 F |
3075 |
|
|
(, whereby) 288.76 124.39 T |
3076 |
|
|
(, the quoted material is de\336ned by a hyper-) 327.52 124.39 T |
3077 |
|
|
(text link to the original material, and automatically retrieved and inserted into the current document?) 90 112.39 T |
3078 |
|
|
(2. Y) 90 88.39 T |
3079 |
|
|
(ou can also use the ADDRESS element \050provided for backwards compatibility with HTML\051.) 106.21 88.39 T |
3080 |
|
|
FMENDPAGE |
3081 |
|
|
%%EndPage: "13" 18 |
3082 |
|
|
%%Page: "14" 18 |
3083 |
|
|
595.3 792 0 FMBEGINPAGE |
3084 |
|
|
0 10 Q |
3085 |
|
|
0 X |
3086 |
|
|
0 K |
3087 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
3088 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
3089 |
|
|
(14) 292.65 63.28 T |
3090 |
|
|
2 F |
3091 |
|
|
(<BYLINE>Editor: Dave Raggett dsr@hplb.hpl.hp.com</BYLINE>) 90 738.28 T |
3092 |
|
|
1 12 Q |
3093 |
|
|
(6.4) 72 710.95 T |
3094 |
|
|
(Notes and admonishments) 99 710.95 T |
3095 |
|
|
0 F |
3096 |
|
|
-0.08 (The) 72 691.95 P |
3097 |
|
|
2 10 Q |
3098 |
|
|
-0.16 (NOTE) 93.57 691.95 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 691.95 P |
3101 |
|
|
-0.08 (.) 517.38 691.95 P |
3102 |
|
|
(For example:) 72 677.95 T |
3103 |
|
|
2 10 Q |
3104 |
|
|
(<note role=\323NOTE\323 src=\323info.gif\323>) 90 660.28 T |
3105 |
|
|
(The \322partial-window-name\323 parameter must exactly match the beginning) 90 648.28 T |
3106 |
|
|
-0.81 (characters of the window name \050as it appears on the title bar\051, including) 90 636.28 P |
3107 |
|
|
(proper case \050capital or lower letters\051 and any punctuation.) 90 624.28 T |
3108 |
|
|
(</note>) 90 612.28 T |
3109 |
|
|
0 12 Q |
3110 |
|
|
(This is typically rendered as:) 72 588.95 T |
3111 |
|
|
-0.19 (The text of the) 72 499.95 P |
3112 |
|
|
2 10 Q |
3113 |
|
|
-0.39 (ROLE) 144.51 499.95 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 499.95 P |
3116 |
|
|
(lowed by a colon. T) 72 485.95 T |
3117 |
|
|
(ypical roles are) 166.76 485.95 T |
3118 |
|
|
2 10 Q |
3119 |
|
|
(TIP) 243.03 485.95 T |
3120 |
|
|
0 12 Q |
3121 |
|
|
(,) 259.68 485.95 T |
3122 |
|
|
2 10 Q |
3123 |
|
|
(NOTE) 265.68 485.95 T |
3124 |
|
|
0 12 Q |
3125 |
|
|
(,) 289.67 485.95 T |
3126 |
|
|
2 10 Q |
3127 |
|
|
(WARNING) 295.67 485.95 T |
3128 |
|
|
0 12 Q |
3129 |
|
|
( and) 337.64 485.95 T |
3130 |
|
|
2 10 Q |
3131 |
|
|
(ERROR) 360.96 485.95 T |
3132 |
|
|
0 12 Q |
3133 |
|
|
(. The) 390.94 485.95 T |
3134 |
|
|
2 10 Q |
3135 |
|
|
(SRC) 418.59 485.95 T |
3136 |
|
|
0 12 Q |
3137 |
|
|
( attribute may be) 436.58 485.95 T |
3138 |
|
|
-0.19 (used to name a URL or URN as an icon which is displayed in the left mar) 72 471.95 P |
3139 |
|
|
-0.19 (gin at the start of the) 422.5 471.95 P |
3140 |
|
|
(note. An upright hand icon is often used for tips; a warning road sign for warnings and a stop) 72 457.95 T |
3141 |
|
|
(sign for errors) 72 443.95 T |
3142 |
|
|
0 10 Q |
3143 |
|
|
(1) 139.94 448.75 T |
3144 |
|
|
0 12 Q |
3145 |
|
|
(. Horizontal rules are drawn automatically to help readers distinguish the note) 144.94 443.95 T |
3146 |
|
|
(from the surrounding text. Y) 72 429.95 T |
3147 |
|
|
(ou can place horizontal rules in other parts of your document) 208.38 429.95 T |
3148 |
|
|
(using the) 72 415.95 T |
3149 |
|
|
2 10 Q |
3150 |
|
|
(<HR>) 118.64 415.95 T |
3151 |
|
|
0 12 Q |
3152 |
|
|
( element which can appear anywhere a) 142.63 415.95 T |
3153 |
|
|
2 10 Q |
3154 |
|
|
(<P>) 331.45 415.95 T |
3155 |
|
|
0 12 Q |
3156 |
|
|
( element is allowed.) 349.44 415.95 T |
3157 |
|
|
1 14 Q |
3158 |
|
|
(7) 72 386.61 T |
3159 |
|
|
(Lists) 90 386.61 T |
3160 |
|
|
0 12 Q |
3161 |
|
|
(There are three kinds of lists, which can be freely nested within one another:) 72 366.95 T |
3162 |
|
|
(\245) 90 347.95 T |
3163 |
|
|
(Ordered lists - the list items are automatically numbered) 108 347.95 T |
3164 |
|
|
(\245) 90 328.95 T |
3165 |
|
|
(Unordered lists - bulleted or plain styles, in single or multiple columns) 108 328.95 T |
3166 |
|
|
(\245) 90 309.95 T |
3167 |
|
|
(De\336nition lists of terms and associated de\336nitions) 108 309.95 T |
3168 |
|
|
1 F |
3169 |
|
|
(7.1) 72 281.95 T |
3170 |
|
|
(Ordered Lists) 99 281.95 T |
3171 |
|
|
0 F |
3172 |
|
|
(The) 72 262.95 T |
3173 |
|
|
2 10 Q |
3174 |
|
|
(OL) 93.65 262.95 T |
3175 |
|
|
0 12 Q |
3176 |
|
|
( element is used with) 105.64 262.95 T |
3177 |
|
|
2 10 Q |
3178 |
|
|
(LI) 209.91 262.95 T |
3179 |
|
|
0 12 Q |
3180 |
|
|
( for each item to represent ordered lists:) 221.91 262.95 T |
3181 |
|
|
2 10 Q |
3182 |
|
|
(<OL>) 90 245.28 T |
3183 |
|
|
(<LI>Wake up) 108 233.28 T |
3184 |
|
|
(<LI>Get dressed) 108 221.28 T |
3185 |
|
|
(<LI>Have breakfast) 108 209.28 T |
3186 |
|
|
(<LI>Drive to work) 108 197.28 T |
3187 |
|
|
(</OL>) 90 185.28 T |
3188 |
|
|
0 12 Q |
3189 |
|
|
(which is usually rendered as:) 72 166.95 T |
3190 |
|
|
(1\051) 90 147.95 T |
3191 |
|
|
(W) 108 147.95 T |
3192 |
|
|
(ake up) 118.36 147.95 T |
3193 |
|
|
(2\051) 90 128.95 T |
3194 |
|
|
(Get dressed) 108 128.95 T |
3195 |
|
|
72 95.05 523.3 110.03 C |
3196 |
|
|
81 108.01 225 108.01 2 L |
3197 |
|
|
0.5 H |
3198 |
|
|
2 Z |
3199 |
|
|
0 X |
3200 |
|
|
0 K |
3201 |
|
|
N |
3202 |
|
|
0 -24.95 595.3 816.95 C |
3203 |
|
|
0 10 Q |
3204 |
|
|
0 X |
3205 |
|
|
0 K |
3206 |
|
|
(1. Browsers should provide these particular icons by default when the) 90 88.39 T |
3207 |
|
|
2 F |
3208 |
|
|
(SRC) 371.46 88.39 T |
3209 |
|
|
0 F |
3210 |
|
|
( attribute is missing.) 389.45 88.39 T |
3211 |
|
|
72 83.05 523.3 744.95 C |
3212 |
|
|
98.14 514.95 497.16 584.95 C |
3213 |
|
|
134.14 575.95 458.14 575.95 2 L |
3214 |
|
|
0.5 H |
3215 |
|
|
2 Z |
3216 |
|
|
0 X |
3217 |
|
|
0 K |
3218 |
|
|
N |
3219 |
|
|
134.14 521.95 458.14 521.95 2 L |
3220 |
|
|
N |
3221 |
|
|
134.14 530.95 494.14 566.95 R |
3222 |
|
|
7 X |
3223 |
|
|
V |
3224 |
|
|
1 10 Q |
3225 |
|
|
0 X |
3226 |
|
|
(NOTE:) 134.14 560.28 T |
3227 |
|
|
3 F |
3228 |
|
|
( The \322partial-window-name\323 parameter must exactly match the) 165.23 560.28 T |
3229 |
|
|
(beginning characters of the window name \050as it appears on the title bar\051,) 134.14 548.28 T |
3230 |
|
|
(including proper case \050capital or lower letters\051 and any punctuation.) 134.14 536.28 T |
3231 |
|
|
%%BeginBinary: 1818 |
3232 |
|
|
20 20 20 20 0 107.14 548.95 |
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 83.05 523.3 744.95 C |
3288 |
|
|
0 -24.95 595.3 816.95 C |
3289 |
|
|
FMENDPAGE |
3290 |
|
|
%%EndPage: "14" 19 |
3291 |
|
|
%%Page: "15" 19 |
3292 |
|
|
595.3 792 0 FMBEGINPAGE |
3293 |
|
|
0 10 Q |
3294 |
|
|
0 X |
3295 |
|
|
0 K |
3296 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
3297 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
3298 |
|
|
(15) 292.65 63.28 T |
3299 |
|
|
0 12 Q |
3300 |
|
|
(3\051) 90 736.95 T |
3301 |
|
|
(Have breakfast) 108 736.95 T |
3302 |
|
|
(4\051) 90 717.95 T |
3303 |
|
|
(Drive to work) 108 717.95 T |
3304 |
|
|
(The) 72 698.95 T |
3305 |
|
|
2 10 Q |
3306 |
|
|
(COMPACT) 93.65 698.95 T |
3307 |
|
|
0 12 Q |
3308 |
|
|
( attribute when present e.g.) 135.62 698.95 T |
3309 |
|
|
2 10 Q |
3310 |
|
|
(<OL COMPACT>) 268.52 698.95 T |
3311 |
|
|
0 12 Q |
3312 |
|
|
( has the ef) 340.48 698.95 T |
3313 |
|
|
(fect of reducing inter) 389.23 698.95 T |
3314 |
|
|
(-item) 489.9 698.95 T |
3315 |
|
|
(spacing. The numbering style is the responsibility of the browser) 72 684.95 T |
3316 |
|
|
(. Other styles use roman) 382.47 684.95 T |
3317 |
|
|
-0.24 (numerals or letters from the alphabet in upper or lower case. One issue for browsers, is how to) 72 670.95 P |
3318 |
|
|
-0.01 (render ordered lists, nested within a list of the same type. List item text can\325) 72 656.95 P |
3319 |
|
|
-0.01 (t include headers,) 436.06 656.95 P |
3320 |
|
|
(see the DTD in Appendix I for details.) 72 642.95 T |
3321 |
|
|
1 F |
3322 |
|
|
(7.2) 72 614.95 T |
3323 |
|
|
(Bulleted Lists) 99 614.95 T |
3324 |
|
|
0 F |
3325 |
|
|
(Bulleted lists are represented with the) 72 595.95 T |
3326 |
|
|
2 10 Q |
3327 |
|
|
(UL) 255.87 595.95 T |
3328 |
|
|
0 12 Q |
3329 |
|
|
( and) 267.86 595.95 T |
3330 |
|
|
2 10 Q |
3331 |
|
|
(LI) 291.18 595.95 T |
3332 |
|
|
0 12 Q |
3333 |
|
|
( elements:) 303.17 595.95 T |
3334 |
|
|
2 10 Q |
3335 |
|
|
(<UL>) 90 578.28 T |
3336 |
|
|
(<LI>Wake up) 108 566.28 T |
3337 |
|
|
(<LI>Get dressed) 108 554.28 T |
3338 |
|
|
(<LI>Have breakfast) 108 542.28 T |
3339 |
|
|
(<LI>Drive to work) 108 530.28 T |
3340 |
|
|
(</UL>) 90 518.28 T |
3341 |
|
|
0 12 Q |
3342 |
|
|
(which is usually rendered as:) 72 499.95 T |
3343 |
|
|
(\245) 90 480.95 T |
3344 |
|
|
(W) 108 480.95 T |
3345 |
|
|
(ake up) 118.36 480.95 T |
3346 |
|
|
(\245) 90 461.95 T |
3347 |
|
|
(Get dressed) 108 461.95 T |
3348 |
|
|
(\245) 90 442.95 T |
3349 |
|
|
(Have breakfast) 108 442.95 T |
3350 |
|
|
(\245) 90 423.95 T |
3351 |
|
|
(Drive to work) 108 423.95 T |
3352 |
|
|
(The) 72 404.95 T |
3353 |
|
|
2 10 Q |
3354 |
|
|
(COMPACT) 93.65 404.95 T |
3355 |
|
|
0 12 Q |
3356 |
|
|
( attribute when present e.g.) 135.62 404.95 T |
3357 |
|
|
2 10 Q |
3358 |
|
|
(<UL COMPACT>) 268.52 404.95 T |
3359 |
|
|
0 12 Q |
3360 |
|
|
( has the ef) 340.48 404.95 T |
3361 |
|
|
(fect of reducing inter) 389.23 404.95 T |
3362 |
|
|
(-item) 489.9 404.95 T |
3363 |
|
|
(spacing. The bullet style is the responsibility of the browser) 72 390.95 T |
3364 |
|
|
(, and normally an unordered list) 358.01 390.95 T |
3365 |
|
|
(nested within a list of the same type is given a dif) 72 376.95 T |
3366 |
|
|
(ferent style \050bullet, dash, box or check\051.) 309.3 376.95 T |
3367 |
|
|
(Authors can instead use the) 72 362.95 T |
3368 |
|
|
2 10 Q |
3369 |
|
|
(SRC) 206.9 362.95 T |
3370 |
|
|
0 12 Q |
3371 |
|
|
( attribute for the) 224.89 362.95 T |
3372 |
|
|
2 10 Q |
3373 |
|
|
(LI) 305.5 362.95 T |
3374 |
|
|
0 12 Q |
3375 |
|
|
( element to specify an icon with a URL or) 317.49 362.95 T |
3376 |
|
|
(URN, e.g.) 72 348.95 T |
3377 |
|
|
2 10 Q |
3378 |
|
|
(<LI SRC=\323folder.gif\323>) 123.63 348.95 T |
3379 |
|
|
0 12 Q |
3380 |
|
|
(. List item text can\325) 249.56 348.95 T |
3381 |
|
|
(t include headers, see the HTML+) 342.95 348.95 T |
3382 |
|
|
(DTD in Appendix I for details.) 72 334.95 T |
3383 |
|
|
1 F |
3384 |
|
|
(7.3) 72 306.95 T |
3385 |
|
|
(Plain Lists) 99 306.95 T |
3386 |
|
|
0 F |
3387 |
|
|
-0.07 (Plain lists without bullets are represented by the) 72 287.95 P |
3388 |
|
|
2 10 Q |
3389 |
|
|
-0.14 (UL) 304.61 287.95 P |
3390 |
|
|
0 12 Q |
3391 |
|
|
-0.07 ( element together with the) 316.6 287.95 P |
3392 |
|
|
2 10 Q |
3393 |
|
|
-0.14 (PLAIN) 444.49 287.95 P |
3394 |
|
|
0 12 Q |
3395 |
|
|
-0.07 ( attribute,) 474.47 287.95 P |
3396 |
|
|
-0.17 (e.g.) 72 273.95 P |
3397 |
|
|
2 10 Q |
3398 |
|
|
-0.35 (<UL PLAIN>) 92.14 273.95 P |
3399 |
|
|
0 12 Q |
3400 |
|
|
-0.17 (. The) 151.76 273.95 P |
3401 |
|
|
2 10 Q |
3402 |
|
|
-0.35 (WRAP) 179.06 273.95 P |
3403 |
|
|
0 12 Q |
3404 |
|
|
-0.17 ( attribute is used for multi-column lists and should be) 203.05 273.95 P |
3405 |
|
|
2 10 Q |
3406 |
|
|
-0.35 (WRAP=HORIZ) 460.5 273.95 P |
3407 |
|
|
0 12 Q |
3408 |
|
|
(for horizontally wrapping of list items or) 72 259.95 T |
3409 |
|
|
2 10 Q |
3410 |
|
|
(WRAP=VERT) 270.88 259.95 T |
3411 |
|
|
0 12 Q |
3412 |
|
|
( for vertical wrapping of list items, e.g.) 324.85 259.95 T |
3413 |
|
|
2 10 Q |
3414 |
|
|
(<UL PLAIN>) 90 242.28 T |
3415 |
|
|
(<LI>icons1/) 108 230.28 T |
3416 |
|
|
(<LI>icons2/) 108 218.28 T |
3417 |
|
|
(<LI>icons3/) 108 206.28 T |
3418 |
|
|
(<LI>src/) 108 194.28 T |
3419 |
|
|
(<LI>xpm-3-paper.ps) 108 182.28 T |
3420 |
|
|
(<LI>xpm-3.2-to-3.2a.patch) 108 170.28 T |
3421 |
|
|
(</UL>) 90 158.28 T |
3422 |
|
|
0 12 Q |
3423 |
|
|
(without the) 72 139.95 T |
3424 |
|
|
2 10 Q |
3425 |
|
|
(WRAP) 129.3 139.95 T |
3426 |
|
|
0 12 Q |
3427 |
|
|
( attribute, this is rendered as:) 153.29 139.95 T |
3428 |
|
|
3 F |
3429 |
|
|
(icons1/) 99 120.95 T |
3430 |
|
|
(icons2/) 99 106.95 T |
3431 |
|
|
(icons3/) 99 92.95 T |
3432 |
|
|
FMENDPAGE |
3433 |
|
|
%%EndPage: "15" 20 |
3434 |
|
|
%%Page: "16" 20 |
3435 |
|
|
595.3 792 0 FMBEGINPAGE |
3436 |
|
|
0 10 Q |
3437 |
|
|
0 X |
3438 |
|
|
0 K |
3439 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
3440 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
3441 |
|
|
(16) 292.65 63.28 T |
3442 |
|
|
3 12 Q |
3443 |
|
|
(src/) 99 736.95 T |
3444 |
|
|
(xpm-3-paper) 99 722.95 T |
3445 |
|
|
(.ps) 166.32 722.95 T |
3446 |
|
|
(xpm-3.2-to-3.2a.patch) 99 708.95 T |
3447 |
|
|
0 F |
3448 |
|
|
(with) 72 689.95 T |
3449 |
|
|
2 10 Q |
3450 |
|
|
(<UL PLAIN WRAP=VERT>) 96.32 689.95 T |
3451 |
|
|
0 12 Q |
3452 |
|
|
( this would appear like:) 216.26 689.95 T |
3453 |
|
|
3 F |
3454 |
|
|
(icons1/) 99 670.95 T |
3455 |
|
|
(icons3/) 216 670.95 T |
3456 |
|
|
(xpm-3-paper) 342 670.95 T |
3457 |
|
|
(.ps) 409.32 670.95 T |
3458 |
|
|
(icons2/) 99 656.95 T |
3459 |
|
|
(src/) 216 656.95 T |
3460 |
|
|
(xpm-3.2-to-3.2a.patch) 342 656.95 T |
3461 |
|
|
0 F |
3462 |
|
|
(with) 72 637.95 T |
3463 |
|
|
2 10 Q |
3464 |
|
|
(WRAP=HORIZ) 96.32 637.95 T |
3465 |
|
|
0 12 Q |
3466 |
|
|
( it would appear like:) 156.29 637.95 T |
3467 |
|
|
3 F |
3468 |
|
|
(icons1/) 99 618.95 T |
3469 |
|
|
(icons2/) 216 618.95 T |
3470 |
|
|
(icons3/) 342 618.95 T |
3471 |
|
|
(src/) 99 604.95 T |
3472 |
|
|
(xpm-3-paper) 216 604.95 T |
3473 |
|
|
(.ps) 283.32 604.95 T |
3474 |
|
|
(xpm-3.2-to-3.2a.patch) 342 604.95 T |
3475 |
|
|
0 F |
3476 |
|
|
(Everyday familiarity with printed lists leads us to expect lists to be or) 72 585.95 T |
3477 |
|
|
(ganized into columns) 404.91 585.95 T |
3478 |
|
|
-0.21 (which are read top to bottom; horizontally wrapped lists are seldom seen. Browsers are free to) 72 571.95 P |
3479 |
|
|
(choose the number of columns to match the current window size and item widths. If there are) 72 557.95 T |
3480 |
|
|
(N items and M columns then the longest column will have \050N+M-1\051/M rows. This requires a) 72 543.95 T |
3481 |
|
|
(prepass through the list to count the items \050and optionally their maximum width\051. However) 72 529.95 T |
3482 |
|
|
(,) 508.58 529.95 T |
3483 |
|
|
(this information can be cached to avoid speed penalties when resizing the window or refresh-) 72 515.95 T |
3484 |
|
|
(ing the screen. Y) 72 501.95 T |
3485 |
|
|
(ou can use the) 152.07 501.95 T |
3486 |
|
|
2 10 Q |
3487 |
|
|
(SRC) 223.35 501.95 T |
3488 |
|
|
0 12 Q |
3489 |
|
|
( attribute for the) 241.34 501.95 T |
3490 |
|
|
2 10 Q |
3491 |
|
|
(LI) 321.94 501.95 T |
3492 |
|
|
0 12 Q |
3493 |
|
|
( element to specify an icon for each) 333.94 501.95 T |
3494 |
|
|
(item in the list, e.g. to show the type of each document in a directory listing.) 72 487.95 T |
3495 |
|
|
(For convenience, the) 72 468.95 T |
3496 |
|
|
2 10 Q |
3497 |
|
|
(<MENU>) 175.25 468.95 T |
3498 |
|
|
0 12 Q |
3499 |
|
|
( and) 211.23 468.95 T |
3500 |
|
|
2 10 Q |
3501 |
|
|
(<DIR>) 234.55 468.95 T |
3502 |
|
|
0 12 Q |
3503 |
|
|
( elements can be used in place of) 264.53 468.95 T |
3504 |
|
|
2 10 Q |
3505 |
|
|
(<UL PLAIN>) 425.73 468.95 T |
3506 |
|
|
0 12 Q |
3507 |
|
|
( and) 485.7 468.95 T |
3508 |
|
|
2 10 Q |
3509 |
|
|
(<UL PLAIN WRAP=VERT>) 72 454.95 T |
3510 |
|
|
0 12 Q |
3511 |
|
|
( respectively) 191.93 454.95 T |
3512 |
|
|
(.) 252.1 454.95 T |
3513 |
|
|
1 F |
3514 |
|
|
(7.4) 72 426.95 T |
3515 |
|
|
(De\336nition Lists) 99 426.95 T |
3516 |
|
|
0 F |
3517 |
|
|
(These consist of) 72 407.95 T |
3518 |
|
|
1 F |
3519 |
|
|
(pairs) 152.94 407.95 T |
3520 |
|
|
0 F |
3521 |
|
|
( of terms and de\336nitions, but can also be used for plays as in:) 181.61 407.95 T |
3522 |
|
|
2 10 Q |
3523 |
|
|
(<DL>) 90 390.28 T |
3524 |
|
|
(<DT>King Henry) 108 378.28 T |
3525 |
|
|
(<DD>I myself heard the King say he would not be ransomed.) 108 366.28 T |
3526 |
|
|
(<DT>Williams) 108 354.28 T |
3527 |
|
|
(<DD>Ay, he said so, to make us f) 108 342.28 T |
3528 |
|
|
(ight cheerfully: but when our) 299.89 342.28 T |
3529 |
|
|
(throats are cut he may be ransomed, and we none the wiser.) 126 330.28 T |
3530 |
|
|
(<DT>King Henry) 108 318.28 T |
3531 |
|
|
(<DD>If I live to see it, I will never trust his word after.) 108 306.28 T |
3532 |
|
|
(<DT>Williams) 108 294.28 T |
3533 |
|
|
(<DD>You pay him then! That\325s a perilous shot out of an elder-gun,) 108 282.28 T |
3534 |
|
|
(that a poor and a private displeasure can do against a monarch!) 126 270.28 T |
3535 |
|
|
(You may as well go about to turn the sun to ice, with fanning in) 126 258.28 T |
3536 |
|
|
(his face with a peacock\325s feather. You\325ll never trust his word) 126 246.28 T |
3537 |
|
|
(after! Come \324tis a foolish saying.) 126 234.28 T |
3538 |
|
|
(</DL>) 90 222.28 T |
3539 |
|
|
0 12 Q |
3540 |
|
|
(This could be rendered as:) 72 203.95 T |
3541 |
|
|
1 F |
3542 |
|
|
(King Henry:) 99 184.95 T |
3543 |
|
|
0 F |
3544 |
|
|
( I myself heard the King say he would not be ransomed.) 166.97 184.95 T |
3545 |
|
|
1 F |
3546 |
|
|
(W) 99 165.95 T |
3547 |
|
|
(illiams:) 110.21 165.95 T |
3548 |
|
|
0 F |
3549 |
|
|
( A) 151.54 165.95 T |
3550 |
|
|
(y) 162.1 165.95 T |
3551 |
|
|
(, he said so, to make us \336ght cheerfully: but when our throats are cut he) 167.31 165.95 T |
3552 |
|
|
(may be ransomed, and we none the wiser) 108 151.95 T |
3553 |
|
|
(.) 305.18 151.95 T |
3554 |
|
|
1 F |
3555 |
|
|
(King Henry:) 99 132.95 T |
3556 |
|
|
0 F |
3557 |
|
|
( If I live to see it, I will never trust his word after) 166.97 132.95 T |
3558 |
|
|
(.) 400.8 132.95 T |
3559 |
|
|
1 F |
3560 |
|
|
-0.08 (W) 99 113.95 P |
3561 |
|
|
-0.08 (illiams:) 110.21 113.95 P |
3562 |
|
|
0 F |
3563 |
|
|
-0.07 ( Y) 151.54 113.95 P |
3564 |
|
|
-0.07 (ou pay him then! That\325) 161.93 113.95 P |
3565 |
|
|
-0.07 (s a perilous shot out of an elder) 271.57 113.95 P |
3566 |
|
|
-0.07 (-gun, that a poor and) 421.06 113.95 P |
3567 |
|
|
-0.37 (private displeasure can do against a monarch! Y) 108 99.95 P |
3568 |
|
|
-0.37 (ou may as well go about to turn the sun) 335.06 99.95 P |
3569 |
|
|
FMENDPAGE |
3570 |
|
|
%%EndPage: "16" 21 |
3571 |
|
|
%%Page: "17" 21 |
3572 |
|
|
595.3 792 0 FMBEGINPAGE |
3573 |
|
|
0 10 Q |
3574 |
|
|
0 X |
3575 |
|
|
0 K |
3576 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
3577 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
3578 |
|
|
(17) 292.65 63.28 T |
3579 |
|
|
0 12 Q |
3580 |
|
|
-0.2 (to ice, with fanning his face with a peacock\325) 108 736.95 P |
3581 |
|
|
-0.2 (s feather) 317.92 736.95 P |
3582 |
|
|
-0.2 (. Y) 358.01 736.95 P |
3583 |
|
|
-0.2 (ou\325ll never trust his word after!) 371.27 736.95 P |
3584 |
|
|
(Come \324tis a foolish saying.) 108 722.95 T |
3585 |
|
|
(or as:) 72 708.95 T |
3586 |
|
|
(King Henry) 99 689.95 T |
3587 |
|
|
(I myself heard the King say he would not be ransomed.) 216 689.95 T |
3588 |
|
|
(W) 99 670.95 T |
3589 |
|
|
(illiams) 109.84 670.95 T |
3590 |
|
|
-0.12 (A) 216 670.95 P |
3591 |
|
|
-0.12 (y) 223.56 670.95 P |
3592 |
|
|
-0.12 (, he said so, to make us \336ght cheerfully: but when our throats) 228.77 670.95 P |
3593 |
|
|
(are cut he may be ransomed, and we none the wiser) 216 656.95 T |
3594 |
|
|
(.) 462.8 656.95 T |
3595 |
|
|
(King Henry) 99 637.95 T |
3596 |
|
|
(If I live to see it, I will never trust his word after) 216 637.95 T |
3597 |
|
|
(.) 446.84 637.95 T |
3598 |
|
|
(W) 99 618.95 T |
3599 |
|
|
(illiams) 109.84 618.95 T |
3600 |
|
|
(Y) 216 618.95 T |
3601 |
|
|
(ou pay him then! That\325) 223.46 618.95 T |
3602 |
|
|
(s a perilous shot out of an elder) 333.39 618.95 T |
3603 |
|
|
(-gun,) 483.38 618.95 T |
3604 |
|
|
(that a poor and private displeasure can do against a monarch!) 216 604.95 T |
3605 |
|
|
-0.35 (Y) 216 590.95 P |
3606 |
|
|
-0.35 (ou may as well go about to turn the sun to ice, with fanning his) 223.46 590.95 P |
3607 |
|
|
(face with a peacock\325) 216 576.95 T |
3608 |
|
|
(s feather) 314.24 576.95 T |
3609 |
|
|
(. Y) 354.54 576.95 T |
3610 |
|
|
(ou\325ll never trust his word after!) 367.99 576.95 T |
3611 |
|
|
(Come \324tis a foolish saying.) 216 562.95 T |
3612 |
|
|
-0.44 (Browsers should make allowance for the infrequent case when the term text \050) 72 543.95 P |
3613 |
|
|
2 10 Q |
3614 |
|
|
-0.88 (DT) 437.77 543.95 P |
3615 |
|
|
0 12 Q |
3616 |
|
|
-0.44 (\051 is longer than) 449.77 543.95 P |
3617 |
|
|
(the de\336nition text \050) 72 529.95 T |
3618 |
|
|
2 10 Q |
3619 |
|
|
(DD) 163.62 529.95 T |
3620 |
|
|
0 12 Q |
3621 |
|
|
(\051 and wraps onto subsequent lines. Note that you are allowed to have) 175.61 529.95 T |
3622 |
|
|
(several consecutive) 72 515.95 T |
3623 |
|
|
2 10 Q |
3624 |
|
|
(DT) 168.58 515.95 T |
3625 |
|
|
0 12 Q |
3626 |
|
|
( elements followed by a) 180.58 515.95 T |
3627 |
|
|
2 10 Q |
3628 |
|
|
(DD) 298.16 515.95 T |
3629 |
|
|
0 12 Q |
3630 |
|
|
( element, but you can\325) 310.15 515.95 T |
3631 |
|
|
(t have) 416.86 515.95 T |
3632 |
|
|
2 10 Q |
3633 |
|
|
(DD) 448.83 515.95 T |
3634 |
|
|
0 12 Q |
3635 |
|
|
( without an) 460.83 515.95 T |
3636 |
|
|
(associated) 72 501.95 T |
3637 |
|
|
2 10 Q |
3638 |
|
|
(DT) 124.29 501.95 T |
3639 |
|
|
0 12 Q |
3640 |
|
|
( element, The) 136.29 501.95 T |
3641 |
|
|
2 10 Q |
3642 |
|
|
(COMPACT) 204.9 501.95 T |
3643 |
|
|
0 12 Q |
3644 |
|
|
( attribute as in) 246.88 501.95 T |
3645 |
|
|
2 10 Q |
3646 |
|
|
(<DL COMPACT>) 318.17 501.95 T |
3647 |
|
|
0 12 Q |
3648 |
|
|
( forces the browser to use) 390.12 501.95 T |
3649 |
|
|
(the former more compact style.) 72 487.95 T |
3650 |
|
|
1 14 Q |
3651 |
|
|
(8) 72 458.61 T |
3652 |
|
|
(Figures) 90 458.61 T |
3653 |
|
|
0 12 Q |
3654 |
|
|
-0.04 (The FIG element is similar to the) 72 438.95 P |
3655 |
|
|
2 10 Q |
3656 |
|
|
-0.09 (IMAGE) 233.94 438.95 P |
3657 |
|
|
0 12 Q |
3658 |
|
|
-0.04 ( element, but acts as a paragraph. The) 263.92 438.95 P |
3659 |
|
|
2 10 Q |
3660 |
|
|
-0.09 (ALIGN) 447.43 438.95 P |
3661 |
|
|
0 12 Q |
3662 |
|
|
-0.04 ( attribute) 477.41 438.95 P |
3663 |
|
|
-0.07 (can be one of) 72 424.95 P |
3664 |
|
|
2 10 Q |
3665 |
|
|
-0.14 (LEFT) 138.98 424.95 P |
3666 |
|
|
0 12 Q |
3667 |
|
|
-0.07 ( \050the default\051,) 162.97 424.95 P |
3668 |
|
|
2 10 Q |
3669 |
|
|
-0.14 (CENTER) 230.7 424.95 P |
3670 |
|
|
0 12 Q |
3671 |
|
|
-0.07 (,) 266.67 424.95 P |
3672 |
|
|
2 10 Q |
3673 |
|
|
-0.14 (RIGHT) 272.6 424.95 P |
3674 |
|
|
0 12 Q |
3675 |
|
|
-0.07 ( or) 302.58 424.95 P |
3676 |
|
|
2 10 Q |
3677 |
|
|
-0.14 (FLOAT) 318.43 424.95 P |
3678 |
|
|
0 12 Q |
3679 |
|
|
-0.07 (. This determines whether the \336gure) 347.52 424.95 P |
3680 |
|
|
(is \337ush left, centered or \337ush right. If) 72 410.95 T |
3681 |
|
|
2 10 Q |
3682 |
|
|
(ALIGN=FLOAT) 253.88 410.95 T |
3683 |
|
|
0 12 Q |
3684 |
|
|
( the \336gure may \337oat to another more con-) 319.84 410.95 T |
3685 |
|
|
(venient location \050and possibly zoomed or reduced in the process\051. A caption can be de\336ned) 72 396.95 T |
3686 |
|
|
(with the) 72 382.95 T |
3687 |
|
|
2 10 Q |
3688 |
|
|
(CAPTION) 113.98 382.95 T |
3689 |
|
|
0 12 Q |
3690 |
|
|
( element and followed by text describing the \336gure for readers using text) 155.95 382.95 T |
3691 |
|
|
(only displays) 72 368.95 T |
3692 |
|
|
0 10 Q |
3693 |
|
|
(1) 135.64 373.75 T |
3694 |
|
|
0 12 Q |
3695 |
|
|
(:) 140.63 368.95 T |
3696 |
|
|
2 10 Q |
3697 |
|
|
(<FIG ALIGN=FLOAT SRC=\323cat.gif\323>) 90 351.28 T |
3698 |
|
|
(<CAPTION>\323Not curried f) 108 339.28 T |
3699 |
|
|
(ish again!\323<CAPTION>) 245.92 339.28 T |
3700 |
|
|
(A cartoon of a scrawny cat with its tongue out saying ACK!) 108 327.28 T |
3701 |
|
|
(</FIG>) 90 315.28 T |
3702 |
|
|
(<P>The text in the following paragraphs will f) 90 298.28 T |
3703 |
|
|
(low around the f) 365.85 298.28 T |
3704 |
|
|
(igure) 461.8 298.28 T |
3705 |
|
|
(if there is enough room. The browser is free to position the caption at) 90 286.28 T |
3706 |
|
|
(the top, bottom or sides of the f) 90 274.28 T |
3707 |
|
|
(igure.) 287.89 274.28 T |
3708 |
|
|
72 119.05 523.3 134.03 C |
3709 |
|
|
81 132.01 225 132.01 2 L |
3710 |
|
|
0.5 H |
3711 |
|
|
2 Z |
3712 |
|
|
0 X |
3713 |
|
|
0 K |
3714 |
|
|
N |
3715 |
|
|
0 -24.95 595.3 816.95 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 112.39 P |
3720 |
|
|
(tion for text-only displays. This text may also be usefully shown while the browser is retrieving the) 90 100.39 T |
3721 |
|
|
(image data for GUI displays.) 90 88.39 T |
3722 |
|
|
FMENDPAGE |
3723 |
|
|
%%EndPage: "17" 22 |
3724 |
|
|
%%Page: "18" 22 |
3725 |
|
|
595.3 792 0 FMBEGINPAGE |
3726 |
|
|
0 10 Q |
3727 |
|
|
0 X |
3728 |
|
|
0 K |
3729 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
3730 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
3731 |
|
|
(18) 292.65 63.28 T |
3732 |
|
|
0 12 Q |
3733 |
|
|
(which is rendered as:) 72 736.95 T |
3734 |
|
|
(Note that browsers can only support a limited range of image types. Currently these are GIF) 72 601.92 T |
3735 |
|
|
(and XBM \050X bitmap format\051. This list will evolve over time.) 72 587.92 T |
3736 |
|
|
1 F |
3737 |
|
|
(8.1) 72 559.92 T |
3738 |
|
|
(Active Areas) 99 559.92 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 540.92 P |
3741 |
|
|
(y down the page. This choice was made for continuity with the) 72 526.92 T |
3742 |
|
|
2 10 Q |
3743 |
|
|
(IMG) 376.79 526.92 T |
3744 |
|
|
0 12 Q |
3745 |
|
|
( element in HTML, to) 394.78 526.92 T |
3746 |
|
|
-0.21 (ensure a simple migration path to HTML+. If points are given in real numbers, the lower right) 72 512.92 P |
3747 |
|
|
-0.04 (corner of the image is taken as being \0501.0, 1.0\051, otherwise, with integer values the coordinates) 72 498.92 P |
3748 |
|
|
(are assumed to be in pixels. A simple test to distinguish the two schemes is to check if a \322.\323) 72 484.92 T |
3749 |
|
|
(character occurs anywhere in the list of points. Using scaled coordinates is much safer as the) 72 470.92 T |
3750 |
|
|
(pixel extent of an image may alter) 72 456.92 T |
3751 |
|
|
(, e.g. as a result of format negotiation with the server) 235.4 456.92 T |
3752 |
|
|
(.) 488.22 456.92 T |
3753 |
|
|
(For some images, HTTP servers will be able to handle mouse/pen clicks or drags on the) 72 437.92 T |
3754 |
|
|
-0.22 (image. This is signalled in the header information returned along with the image data. Alterna-) 72 423.92 P |
3755 |
|
|
-0.11 (tively) 72 409.92 P |
3756 |
|
|
-0.11 (, the) 98.54 409.92 P |
3757 |
|
|
2 10 Q |
3758 |
|
|
-0.22 (ISMAP) 124.86 409.92 P |
3759 |
|
|
0 12 Q |
3760 |
|
|
-0.11 ( attribute can be used to signal this capability) 154.84 409.92 P |
3761 |
|
|
-0.11 (. The mouse click is sent to the) 372.6 409.92 P |
3762 |
|
|
(server indicated by the URL in the) 72 395.92 T |
3763 |
|
|
2 10 Q |
3764 |
|
|
(SRC) 240.88 395.92 T |
3765 |
|
|
0 12 Q |
3766 |
|
|
( attribute, using the same URL plus the suf) 258.87 395.92 T |
3767 |
|
|
(\336x) 464.2 395.92 T |
3768 |
|
|
-0.01 (\322?x=) 72 381.92 P |
3769 |
|
|
4 F |
3770 |
|
|
-0.01 (X) 95.41 381.92 P |
3771 |
|
|
0 F |
3772 |
|
|
-0.01 (&y=) 102.74 381.92 P |
3773 |
|
|
4 F |
3774 |
|
|
-0.01 (Y) 124.83 381.92 P |
3775 |
|
|
0 F |
3776 |
|
|
-0.01 (\323) 131.5 381.92 P |
3777 |
|
|
0 10 Q |
3778 |
|
|
-0.01 (1) 136.82 386.72 P |
3779 |
|
|
0 12 Q |
3780 |
|
|
-0.01 ( where) 141.82 381.92 P |
3781 |
|
|
4 F |
3782 |
|
|
-0.01 (X) 177.09 381.92 P |
3783 |
|
|
0 F |
3784 |
|
|
-0.01 ( and) 184.42 381.92 P |
3785 |
|
|
4 F |
3786 |
|
|
-0.01 (Y) 207.71 381.92 P |
3787 |
|
|
0 F |
3788 |
|
|
-0.01 ( are the coordinates of the click event. Mouse drags can be used) 214.38 381.92 P |
3789 |
|
|
(to designate a rectangular region of the image. In this case the suf) 72 367.92 T |
3790 |
|
|
(\336x takes the form:) 386.54 367.92 T |
3791 |
|
|
-0.33 (\322?x=) 72 353.92 P |
3792 |
|
|
4 F |
3793 |
|
|
-0.33 (X) 95.41 353.92 P |
3794 |
|
|
0 F |
3795 |
|
|
-0.33 (&y=) 102.74 353.92 P |
3796 |
|
|
4 F |
3797 |
|
|
-0.33 (Y) 124.83 353.92 P |
3798 |
|
|
0 F |
3799 |
|
|
-0.33 (&w=) 131.5 353.92 P |
3800 |
|
|
4 F |
3801 |
|
|
-0.33 (W) 156.25 353.92 P |
3802 |
|
|
0 F |
3803 |
|
|
-0.33 (&h=) 166.24 353.92 P |
3804 |
|
|
4 F |
3805 |
|
|
-0.33 (H) 188.34 353.92 P |
3806 |
|
|
0 F |
3807 |
|
|
-0.33 (\323 where) 196.99 353.92 P |
3808 |
|
|
4 F |
3809 |
|
|
-0.33 (\050X, Y\051) 236.95 353.92 P |
3810 |
|
|
0 F |
3811 |
|
|
-0.33 ( is the upper left of the rectangle, and) 264.6 353.92 P |
3812 |
|
|
4 F |
3813 |
|
|
-0.33 (\050W) 443.46 353.92 P |
3814 |
|
|
-0.33 (, H\051) 456.34 353.92 P |
3815 |
|
|
0 F |
3816 |
|
|
-0.33 ( de\336ne its) 474.65 353.92 P |
3817 |
|
|
-0.42 (width and height. The) 72 339.92 P |
3818 |
|
|
2 10 Q |
3819 |
|
|
-0.84 (ISMAP) 178.58 339.92 P |
3820 |
|
|
0 12 Q |
3821 |
|
|
-0.42 ( mechanism is useful when the active regions in the image change) 208.57 339.92 P |
3822 |
|
|
(their boundaries with time, e.g.) 72 325.92 T |
3823 |
|
|
2 10 Q |
3824 |
|
|
(<f) 90 308.25 T |
3825 |
|
|
(ig ismap src=\323weather.gif\323>) 101.99 308.25 T |
3826 |
|
|
(<caption>Click on your area for a local forecast</caption>) 108 296.25 T |
3827 |
|
|
(Todays weather map for the US.) 108 284.25 T |
3828 |
|
|
(</f) 90 272.25 T |
3829 |
|
|
(ig>) 107.99 272.25 T |
3830 |
|
|
1 12 Q |
3831 |
|
|
(8.2) 72 244.92 T |
3832 |
|
|
(Placing Hypertext Buttons on Images) 99 244.92 T |
3833 |
|
|
0 F |
3834 |
|
|
-0.32 (The) 72 225.92 P |
3835 |
|
|
2 10 Q |
3836 |
|
|
-0.64 (A) 93.33 225.92 P |
3837 |
|
|
0 12 Q |
3838 |
|
|
-0.32 ( element) 99.33 225.92 P |
3839 |
|
|
0 10 Q |
3840 |
|
|
-0.27 (2) 139.98 230.72 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 225.92 P |
3843 |
|
|
(an arbitrary polygon and speci\336ed via the) 72 211.92 T |
3844 |
|
|
2 10 Q |
3845 |
|
|
(SHAPE) 274.18 211.92 T |
3846 |
|
|
0 12 Q |
3847 |
|
|
( attribute, e.g.) 304.17 211.92 T |
3848 |
|
|
2 10 Q |
3849 |
|
|
(<FIG SRC=\323test.gif\323>) 90 194.25 T |
3850 |
|
|
(<CAPTION>Click on the triangle or the rectangle</CAPTION>) 108 182.25 T |
3851 |
|
|
(A line drawing with a) 108 170.25 T |
3852 |
|
|
(<A SHAPE=\3230.35,0.1&0.1,0.8&0.35,0.8\323) 108 158.25 T |
3853 |
|
|
(HREF=\323button1.html\323>) 323.88 158.25 T |
3854 |
|
|
(triangle</A>) 108 146.25 T |
3855 |
|
|
(and a) 179.96 146.25 T |
3856 |
|
|
72 119.05 523.3 134.03 C |
3857 |
|
|
81 132.01 225 132.01 2 L |
3858 |
|
|
0.5 H |
3859 |
|
|
2 Z |
3860 |
|
|
0 X |
3861 |
|
|
0 K |
3862 |
|
|
N |
3863 |
|
|
0 -24.95 595.3 816.95 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 112.39 T |
3868 |
|
|
2 F |
3869 |
|
|
(FORM) 374.23 112.39 T |
3870 |
|
|
0 F |
3871 |
|
|
( mechanism.) 398.22 112.39 T |
3872 |
|
|
-0.15 (2. This replaces the) 90 100.39 P |
3873 |
|
|
2 F |
3874 |
|
|
-0.36 (FIGA) 169.61 100.39 P |
3875 |
|
|
0 F |
3876 |
|
|
-0.15 ( element in the previous draft, and gives readers on text-only displays the abil-) 193.6 100.39 P |
3877 |
|
|
(ity to click shaped buttons even though the image itself can\325) 90 88.39 T |
3878 |
|
|
(t be shown.) 330.22 88.39 T |
3879 |
|
|
72 83.05 523.3 744.95 C |
3880 |
|
|
98.14 611.92 497.16 732.95 C |
3881 |
|
|
98.14 615.95 251.14 633.95 R |
3882 |
|
|
7 X |
3883 |
|
|
0 K |
3884 |
|
|
V |
3885 |
|
|
1 12 Q |
3886 |
|
|
0 X |
3887 |
|
|
(\322Not curried \336sh again!) 98.14 625.95 T |
3888 |
|
|
260.14 615.95 494.14 732.95 R |
3889 |
|
|
7 X |
3890 |
|
|
V |
3891 |
|
|
0 F |
3892 |
|
|
0 X |
3893 |
|
|
(The text in the following paragraphs will \337ow) 260.14 724.95 T |
3894 |
|
|
(around the \336gure if there is enough room. The) 260.14 710.95 T |
3895 |
|
|
-0.08 (browser is free to position the caption at the top,) 260.14 696.95 P |
3896 |
|
|
(bottom or sides of the \336gure.) 260.14 682.95 T |
3897 |
|
|
%%BeginBinary: 10542 |
3898 |
|
|
319 200 153.12 96 0 98.14 636.95 |
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 83.05 523.3 744.95 C |
4134 |
|
|
0 -24.95 595.3 816.95 C |
4135 |
|
|
FMENDPAGE |
4136 |
|
|
%%EndPage: "18" 23 |
4137 |
|
|
%%Page: "19" 23 |
4138 |
|
|
595.3 792 0 FMBEGINPAGE |
4139 |
|
|
0 10 Q |
4140 |
|
|
0 X |
4141 |
|
|
0 K |
4142 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4143 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4144 |
|
|
(19) 292.65 63.28 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 738.28 T |
4147 |
|
|
(rectangle</A>) 108 726.28 T |
4148 |
|
|
(</FIG>) 90 714.28 T |
4149 |
|
|
0 12 Q |
4150 |
|
|
(Which could be rendered as:) 72 695.95 T |
4151 |
|
|
(The example uses scaled coordinates, and shows how you give the vertices of the polygon) 72 513.95 T |
4152 |
|
|
(de\336ning the shape of the button. Like the) 72 499.95 T |
4153 |
|
|
2 10 Q |
4154 |
|
|
(ISMAP) 272.21 499.95 T |
4155 |
|
|
0 12 Q |
4156 |
|
|
( mechanism, you can use pixel-based coordi-) 302.19 499.95 T |
4157 |
|
|
(nates by using integer numbers throughout. Note that clicks on shaped buttons take prece-) 72 485.95 T |
4158 |
|
|
(dence over the) 72 471.95 T |
4159 |
|
|
2 10 Q |
4160 |
|
|
(ISMAP) 144.93 471.95 T |
4161 |
|
|
0 12 Q |
4162 |
|
|
( mechanism for sending events to the server) 174.91 471.95 T |
4163 |
|
|
(. An ef) 385.1 471.95 T |
4164 |
|
|
(\336cient algorithm for) 417.85 471.95 T |
4165 |
|
|
(testing if a mouse/pen click lies inside a polygon is given as a C routine in Appendix III.) 72 457.95 T |
4166 |
|
|
1 F |
4167 |
|
|
(8.3) 72 429.95 T |
4168 |
|
|
(Possible extensions) 99 429.95 T |
4169 |
|
|
0 F |
4170 |
|
|
(In future, HTML+ may be extended to support simple drawings with embedded hypertext) 72 410.95 T |
4171 |
|
|
-0.28 (links. One idea would be a line drawing primitive using the) 72 396.95 P |
4172 |
|
|
2 10 Q |
4173 |
|
|
-0.55 (SHAPE) 356.8 396.95 P |
4174 |
|
|
0 12 Q |
4175 |
|
|
-0.28 ( attribute. A better approach) 386.78 396.95 P |
4176 |
|
|
(is to extend existing drawing formats such as the ANSI Computer Graphics Meta\336le format) 72 382.95 T |
4177 |
|
|
(\050CGM\051 or Adobe\325) 72 368.95 T |
4178 |
|
|
(s PDF to include URL based hypertext links. This extended format could) 158.6 368.95 T |
4179 |
|
|
(then be used for \336gures within HTML+ documents.) 72 354.95 T |
4180 |
|
|
-0.16 (The use of the MIME multipart message format would also help to speed up the display of \336g-) 72 335.95 P |
4181 |
|
|
(ures by sending image data at the same time as the HTML+ document. Another possibility) 72 321.95 T |
4182 |
|
|
(would be to allow image data to be embedded in the document using an) 72 307.95 T |
4183 |
|
|
2 10 Q |
4184 |
|
|
(EMBED) 419.1 307.95 T |
4185 |
|
|
0 12 Q |
4186 |
|
|
( element in) 449.08 307.95 T |
4187 |
|
|
(place of the) 72 293.95 T |
4188 |
|
|
2 10 Q |
4189 |
|
|
(SRC) 130.95 293.95 T |
4190 |
|
|
0 12 Q |
4191 |
|
|
( attribute. Binary data could be represented using the MIME character encod-) 148.94 293.95 T |
4192 |
|
|
(ing or the more compact ASCII base 85 encoding, as used in Adobe\325) 72 279.95 T |
4193 |
|
|
(s PDF) 401.43 279.95 T |
4194 |
|
|
(. The drawback) 430.14 279.95 T |
4195 |
|
|
-0.36 (with this approach is the inability to use format negotiation. As a result, the) 72 265.95 P |
4196 |
|
|
2 10 Q |
4197 |
|
|
-0.72 (EMBED) 431.43 265.95 P |
4198 |
|
|
0 12 Q |
4199 |
|
|
-0.36 ( element has) 461.42 265.95 P |
4200 |
|
|
(been dropped from the current draft.) 72 251.95 T |
4201 |
|
|
1 14 Q |
4202 |
|
|
(9) 72 222.61 T |
4203 |
|
|
(T) 90 222.61 T |
4204 |
|
|
(ables) 97.51 222.61 T |
4205 |
|
|
0 12 Q |
4206 |
|
|
(T) 72 202.95 T |
4207 |
|
|
(ables are speci\336ed using the T) 78.49 202.95 T |
4208 |
|
|
(ABLE element. This allows you to de\336ne a caption and to dif-) 222.42 202.95 T |
4209 |
|
|
-0.48 (ferentiate header and data cells. Cells may contain, text, multiple paragraphs, lists and headers.) 72 188.95 P |
4210 |
|
|
72 83.05 523.3 744.95 C |
4211 |
|
|
98.14 528.95 497.16 691.95 C |
4212 |
|
|
179.14 556.95 404.14 691.95 R |
4213 |
|
|
7 X |
4214 |
|
|
0 K |
4215 |
|
|
V |
4216 |
|
|
0.5 H |
4217 |
|
|
0 Z |
4218 |
|
|
0 X |
4219 |
|
|
N |
4220 |
|
|
260.14 682.95 206.14 583.95 260.14 583.95 3 Y |
4221 |
|
|
3 X |
4222 |
|
|
V |
4223 |
|
|
0 X |
4224 |
|
|
N |
4225 |
|
|
287.14 619.95 377.14 664.95 R |
4226 |
|
|
6 X |
4227 |
|
|
V |
4228 |
|
|
0 X |
4229 |
|
|
N |
4230 |
|
|
0 12 Q |
4231 |
|
|
(Button 2) 314.14 637.95 T |
4232 |
|
|
(Button 1) 197.14 565.95 T |
4233 |
|
|
179.14 529.95 404.14 547.95 R |
4234 |
|
|
7 X |
4235 |
|
|
V |
4236 |
|
|
1 F |
4237 |
|
|
0 X |
4238 |
|
|
(Click on the triangle or the rectangle) 179.14 539.95 T |
4239 |
|
|
72 83.05 523.3 744.95 C |
4240 |
|
|
0 -24.95 595.3 816.95 C |
4241 |
|
|
FMENDPAGE |
4242 |
|
|
%%EndPage: "19" 24 |
4243 |
|
|
%%Page: "20" 24 |
4244 |
|
|
595.3 792 0 FMBEGINPAGE |
4245 |
|
|
0 10 Q |
4246 |
|
|
0 X |
4247 |
|
|
0 K |
4248 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4249 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4250 |
|
|
(20) 292.65 63.28 T |
4251 |
|
|
0 12 Q |
4252 |
|
|
-0.38 (Adjacent cells can be mer) 72 736.95 P |
4253 |
|
|
-0.38 (ged, e.g. to de\336ne a header which spans two columns. A simple table) 194.15 736.95 P |
4254 |
|
|
(could look like:) 72 722.95 T |
4255 |
|
|
(This is de\336ned by the markup:) 72 596.95 T |
4256 |
|
|
2 10 Q |
4257 |
|
|
(<table border>) 90 579.28 T |
4258 |
|
|
(<caption>A simple table</caption>) 108 567.28 T |
4259 |
|
|
(<th>Year <th>Month <th>Day <tr>) 108 555.28 T |
4260 |
|
|
(<td>1972 <td>June <td>23rd <tr>) 108 543.28 T |
4261 |
|
|
(<td>1982 <td>October <td>7th) 108 531.28 T |
4262 |
|
|
(</table>) 90 519.28 T |
4263 |
|
|
0 12 Q |
4264 |
|
|
-0.3 (The) 72 500.95 P |
4265 |
|
|
2 10 Q |
4266 |
|
|
-0.6 (BORDER) 93.35 500.95 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 500.95 P |
4269 |
|
|
2 10 Q |
4270 |
|
|
-0.6 (TH) 490.62 500.95 P |
4271 |
|
|
0 12 Q |
4272 |
|
|
-0.3 ( ele-) 502.62 500.95 P |
4273 |
|
|
(ment precedes header cell text and the) 72 486.95 T |
4274 |
|
|
2 10 Q |
4275 |
|
|
(TD) 258.17 486.95 T |
4276 |
|
|
0 12 Q |
4277 |
|
|
( element precedes data cell text. The) 270.17 486.95 T |
4278 |
|
|
2 10 Q |
4279 |
|
|
(TR) 448.02 486.95 T |
4280 |
|
|
0 12 Q |
4281 |
|
|
( element is) 460.01 486.95 T |
4282 |
|
|
(used to separate table rows. By default text is centered in each cell. Header text should be) 72 472.95 T |
4283 |
|
|
-0.44 (shown emphasised, e.g. the browser could use a bold sans serif font for headers and a serif font) 72 458.95 P |
4284 |
|
|
(for the data cells. The next example shows how cells can be mer) 72 444.95 T |
4285 |
|
|
(ged with their neighbors:) 380.54 444.95 T |
4286 |
|
|
(This table is de\336ned by the markup:) 72 292.95 T |
4287 |
|
|
2 10 Q |
4288 |
|
|
(<table border>) 90 275.28 T |
4289 |
|
|
(<caption>A more complex table</caption>) 99 263.28 T |
4290 |
|
|
(<th rowspan=2><th colspan=2>average<th rowspan=2>other<br>category<tr>) 99 251.28 T |
4291 |
|
|
(<th>height <th>weight <tr>) 99 239.28 T |
4292 |
|
|
(<th align=left>males <td>1.9 <td>0.003 <td>yyy <tr>) 99 227.28 T |
4293 |
|
|
(<th align=left>females <td>1.7 <td>0.002 <td>xxx) 99 215.28 T |
4294 |
|
|
(</table>) 90 203.28 T |
4295 |
|
|
0 12 Q |
4296 |
|
|
(The \336rst cell \050a header cell\051 is mer) 72 184.95 T |
4297 |
|
|
(ged with the cell below it:) 236.65 184.95 T |
4298 |
|
|
2 10 Q |
4299 |
|
|
(<th rowspan=2>) 364.57 184.95 T |
4300 |
|
|
0 12 Q |
4301 |
|
|
(. Note that this) 448.52 184.95 T |
4302 |
|
|
(mer) 72 170.95 T |
4303 |
|
|
(ged cell is empty - the de\336nition of the next column for the \336rst row starts immediately) 90.43 170.95 T |
4304 |
|
|
(.) 507.4 170.95 T |
4305 |
|
|
-0.32 (Looking again at the \336rst row) 72 156.95 P |
4306 |
|
|
-0.32 (, the second column is mer) 211.86 156.95 P |
4307 |
|
|
-0.32 (ged with the third:) 338.63 156.95 P |
4308 |
|
|
2 10 Q |
4309 |
|
|
-0.64 (<th colspan=2>.) 428.63 156.95 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 142.95 P |
4312 |
|
|
-0.21 (ged cell. The fourth) 426.56 142.95 P |
4313 |
|
|
(column/\336rst row is also mer) 72 128.95 T |
4314 |
|
|
(ged, this time with the next row:) 206.37 128.95 T |
4315 |
|
|
2 10 Q |
4316 |
|
|
(<th rowspan=2>) 364.95 128.95 T |
4317 |
|
|
0 12 Q |
4318 |
|
|
(. The) 448.9 128.95 T |
4319 |
|
|
2 10 Q |
4320 |
|
|
(<BR>) 476.55 128.95 T |
4321 |
|
|
0 12 Q |
4322 |
|
|
( ele-) 500.54 128.95 T |
4323 |
|
|
-0.41 (ment has been used here to force a line break between) 72 114.95 P |
4324 |
|
|
2 10 Q |
4325 |
|
|
-0.81 (other) 329.64 114.95 P |
4326 |
|
|
0 12 Q |
4327 |
|
|
-0.41 ( and) 359.62 114.95 P |
4328 |
|
|
2 10 Q |
4329 |
|
|
-0.81 (category) 382.13 114.95 P |
4330 |
|
|
0 12 Q |
4331 |
|
|
-0.41 (. The) 429.32 114.95 P |
4332 |
|
|
2 10 Q |
4333 |
|
|
-0.81 (<TR>) 456.15 114.95 P |
4334 |
|
|
0 12 Q |
4335 |
|
|
-0.41 ( element) 480.14 114.95 P |
4336 |
|
|
5 F |
4337 |
|
|
(T) 238.9 698.95 T |
4338 |
|
|
(able 1: A simple table) 245.79 698.95 T |
4339 |
|
|
1 F |
4340 |
|
|
(Y) 212.98 672.95 T |
4341 |
|
|
(ear) 220.32 672.95 T |
4342 |
|
|
(Month) 279.66 672.95 T |
4343 |
|
|
(Day) 358.65 672.95 T |
4344 |
|
|
0 F |
4345 |
|
|
(1972) 213.65 648.95 T |
4346 |
|
|
(June) 286.66 648.95 T |
4347 |
|
|
(23rd) 358.66 648.95 T |
4348 |
|
|
(1982) 213.65 626.95 T |
4349 |
|
|
(October) 278.33 626.95 T |
4350 |
|
|
(7th) 361.98 626.95 T |
4351 |
|
|
5 F |
4352 |
|
|
(T) 219.53 420.95 T |
4353 |
|
|
(able 2: A mor) 226.43 420.95 T |
4354 |
|
|
(e complex table) 296.49 420.95 T |
4355 |
|
|
1 F |
4356 |
|
|
(average) 274.98 394.95 T |
4357 |
|
|
(other) 390.66 388.95 T |
4358 |
|
|
(category) 380.65 374.95 T |
4359 |
|
|
(height) 243.66 368.95 T |
4360 |
|
|
(weight) 314.66 368.95 T |
4361 |
|
|
(males) 159.65 344.95 T |
4362 |
|
|
0 F |
4363 |
|
|
(height) 246.66 344.95 T |
4364 |
|
|
(0.003) 320.15 344.95 T |
4365 |
|
|
(yyy) 396.65 344.95 T |
4366 |
|
|
1 F |
4367 |
|
|
(females) 159.65 322.95 T |
4368 |
|
|
0 F |
4369 |
|
|
(1.9) 254.15 322.95 T |
4370 |
|
|
(0.002) 320.15 322.95 T |
4371 |
|
|
(xxx) 396.65 322.95 T |
4372 |
|
|
189.65 688.7 189.65 619.2 2 L |
4373 |
|
|
V |
4374 |
|
|
0.5 H |
4375 |
|
|
0 Z |
4376 |
|
|
N |
4377 |
|
|
261.65 689.2 261.65 618.7 2 L |
4378 |
|
|
V |
4379 |
|
|
N |
4380 |
|
|
333.65 689.2 333.65 618.7 2 L |
4381 |
|
|
V |
4382 |
|
|
N |
4383 |
|
|
405.65 688.7 405.65 619.2 2 L |
4384 |
|
|
V |
4385 |
|
|
N |
4386 |
|
|
189.4 688.95 405.9 688.95 2 L |
4387 |
|
|
V |
4388 |
|
|
N |
4389 |
|
|
189.4 662.95 405.9 662.95 2 L |
4390 |
|
|
V |
4391 |
|
|
N |
4392 |
|
|
189.4 640.95 405.9 640.95 2 L |
4393 |
|
|
V |
4394 |
|
|
N |
4395 |
|
|
189.4 618.95 405.9 618.95 2 L |
4396 |
|
|
V |
4397 |
|
|
N |
4398 |
|
|
153.65 410.7 153.65 315.2 2 L |
4399 |
|
|
V |
4400 |
|
|
N |
4401 |
|
|
225.65 411.2 225.65 314.7 2 L |
4402 |
|
|
V |
4403 |
|
|
N |
4404 |
|
|
297.65 385.2 297.65 314.7 2 L |
4405 |
|
|
V |
4406 |
|
|
N |
4407 |
|
|
369.65 411.2 369.65 314.7 2 L |
4408 |
|
|
V |
4409 |
|
|
N |
4410 |
|
|
441.65 410.7 441.65 315.2 2 L |
4411 |
|
|
V |
4412 |
|
|
N |
4413 |
|
|
153.4 410.95 441.9 410.95 2 L |
4414 |
|
|
V |
4415 |
|
|
N |
4416 |
|
|
225.4 384.95 369.9 384.95 2 L |
4417 |
|
|
V |
4418 |
|
|
N |
4419 |
|
|
153.4 358.95 441.9 358.95 2 L |
4420 |
|
|
V |
4421 |
|
|
N |
4422 |
|
|
153.4 336.95 441.9 336.95 2 L |
4423 |
|
|
V |
4424 |
|
|
N |
4425 |
|
|
153.4 314.95 441.9 314.95 2 L |
4426 |
|
|
V |
4427 |
|
|
N |
4428 |
|
|
FMENDPAGE |
4429 |
|
|
%%EndPage: "20" 25 |
4430 |
|
|
%%Page: "21" 25 |
4431 |
|
|
595.3 792 0 FMBEGINPAGE |
4432 |
|
|
0 10 Q |
4433 |
|
|
0 X |
4434 |
|
|
0 K |
4435 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4436 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4437 |
|
|
(21) 292.65 63.28 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 736.95 T |
4440 |
|
|
(end of a row can be omitted as the) 72 722.95 T |
4441 |
|
|
2 10 Q |
4442 |
|
|
(<TR>) 239.54 722.95 T |
4443 |
|
|
0 12 Q |
4444 |
|
|
( element unambiguously marks the end of the row) 263.52 722.95 T |
4445 |
|
|
(.) 503.25 722.95 T |
4446 |
|
|
(The second row only contains de\336nitions for the second and third columns since the others) 72 703.95 T |
4447 |
|
|
(were mer) 72 689.95 T |
4448 |
|
|
(ged with cells on the preceding row) 116.74 689.95 T |
4449 |
|
|
(. The general rule is to avoid de\336ning any cell) 287.16 689.95 T |
4450 |
|
|
(twice. The last two rows start with headers and the) 72 675.95 T |
4451 |
|
|
2 10 Q |
4452 |
|
|
(align=left) 318.15 675.95 T |
4453 |
|
|
0 12 Q |
4454 |
|
|
( attribute ensures that the) 378.12 675.95 T |
4455 |
|
|
(browser will align these headers to the left of their cells. The) 72 661.95 T |
4456 |
|
|
2 10 Q |
4457 |
|
|
(ALIGN) 366.11 661.95 T |
4458 |
|
|
0 12 Q |
4459 |
|
|
( attribute can be one of) 396.1 661.95 T |
4460 |
|
|
2 10 Q |
4461 |
|
|
(LEFT) 72 647.95 T |
4462 |
|
|
0 12 Q |
4463 |
|
|
(,) 95.1 647.95 T |
4464 |
|
|
2 10 Q |
4465 |
|
|
(CENTER) 101.1 647.95 T |
4466 |
|
|
0 12 Q |
4467 |
|
|
( or) 137.08 647.95 T |
4468 |
|
|
2 10 Q |
4469 |
|
|
(RIGHT) 153.06 647.95 T |
4470 |
|
|
0 12 Q |
4471 |
|
|
(, with) 182.16 647.95 T |
4472 |
|
|
2 10 Q |
4473 |
|
|
(CENTER) 212.48 647.95 T |
4474 |
|
|
0 12 Q |
4475 |
|
|
( as the default. It can be used with both) 248.46 647.95 T |
4476 |
|
|
2 10 Q |
4477 |
|
|
(TH) 439.32 647.95 T |
4478 |
|
|
0 12 Q |
4479 |
|
|
( and) 451.32 647.95 T |
4480 |
|
|
2 10 Q |
4481 |
|
|
(TD) 474.63 647.95 T |
4482 |
|
|
0 12 Q |
4483 |
|
|
(.) 486.62 647.95 T |
4484 |
|
|
1 F |
4485 |
|
|
(9.1) 72 619.95 T |
4486 |
|
|
(Implementation Issues for T) 99 619.95 T |
4487 |
|
|
(ables) 257.4 619.95 T |
4488 |
|
|
0 F |
4489 |
|
|
(Browsers need a prepass through the table markup to count the number of columns and deter-) 72 600.95 T |
4490 |
|
|
(mine their widths. A simple algorithm that takes mer) 72 586.95 T |
4491 |
|
|
(ged cells into account will suf) 325.3 586.95 T |
4492 |
|
|
(\336ce. T) 468.66 586.95 T |
4493 |
|
|
(ext) 498.46 586.95 T |
4494 |
|
|
(\336elds wrap to \336t their columns, which should be sized to best match current window width.) 72 572.95 T |
4495 |
|
|
(This information should be cached to avoid speed penalties during subsequent screen refresh/) 72 558.95 T |
4496 |
|
|
(window resize operations. Browsers can ignore alignment hints if required, and using a \336xed) 72 544.95 T |
4497 |
|
|
(pitch font may speed up the sizing step.) 72 530.95 T |
4498 |
|
|
(The number of columns is given by the row with the lar) 72 511.95 T |
4499 |
|
|
(gest number of) 339.27 511.95 T |
4500 |
|
|
2 10 Q |
4501 |
|
|
(<TH>) 414.22 511.95 T |
4502 |
|
|
0 12 Q |
4503 |
|
|
( and) 438.21 511.95 T |
4504 |
|
|
2 10 Q |
4505 |
|
|
(<TD>) 461.52 511.95 T |
4506 |
|
|
0 12 Q |
4507 |
|
|
( ele-) 485.51 511.95 T |
4508 |
|
|
(ments, remembering to add in mer) 72 497.95 T |
4509 |
|
|
(ged cells. The widths of columns are evaluated by \336nding) 237.01 497.95 T |
4510 |
|
|
(the minimum and maximum widths needed for each cell, and hence the minimum and maxi-) 72 483.95 T |
4511 |
|
|
(mum width for the column as a whole. All this can be done during a single pass through the) 72 469.95 T |
4512 |
|
|
2 10 Q |
4513 |
|
|
-0.39 (<TABLE>) 72 455.95 P |
4514 |
|
|
0 12 Q |
4515 |
|
|
-0.19 ( element. Caching these min/max values for each column then permits the browser to) 113.98 455.95 P |
4516 |
|
|
(instantly adjust the table when the window is resized.) 72 441.95 T |
4517 |
|
|
1 14 Q |
4518 |
|
|
(10) 72 412.61 T |
4519 |
|
|
(Fill-out Forms and Input \336elds) 90 412.61 T |
4520 |
|
|
0 12 Q |
4521 |
|
|
(Forms are composed by placing input \336elds within paragraphs, preformatted/literal text, lists) 72 392.95 T |
4522 |
|
|
(and tables. This gives considerable scope in designing the layout of forms. Each \336eld is) 72 378.95 T |
4523 |
|
|
(de\336ned by an) 72 364.95 T |
4524 |
|
|
2 10 Q |
4525 |
|
|
(INPUT) 139.62 364.95 T |
4526 |
|
|
0 12 Q |
4527 |
|
|
( element and must have an) 169.6 364.95 T |
4528 |
|
|
2 10 Q |
4529 |
|
|
(NAME) 300.17 364.95 T |
4530 |
|
|
0 12 Q |
4531 |
|
|
( attribute which uniquely names the \336eld) 324.16 364.95 T |
4532 |
|
|
(in the document. Additional optional attributes can be used to specify the type of the \336eld) 72 350.95 T |
4533 |
|
|
-0.05 (\050defaults to free text\051, its size/precision, its initial value and whether the \336eld is currently disa-) 72 336.95 P |
4534 |
|
|
(bled or in error:) 72 322.95 T |
4535 |
|
|
2 10 Q |
4536 |
|
|
(<FORM ACTION=\323mailto:www_admin@info.cern.ch\323>) 90 305.28 T |
4537 |
|
|
(<MH HIDDEN>Subject: WWW Questionaire</MH>) 108 293.28 T |
4538 |
|
|
(Please help up to improve the World Wide Web by f) 108 276.28 T |
4539 |
|
|
(illing in the) 401.84 276.28 T |
4540 |
|
|
(following questionaire:) 108 264.28 T |
4541 |
|
|
(<P>Your organization? <INPUT NAME=\323org\323 SIZE=\32348\323>) 108 252.28 T |
4542 |
|
|
(<P>Commercial? <INPUT NAME=\323commerce\323 TYPE=checkbox>) 108 240.28 T |
4543 |
|
|
(How many users? <INPUT NAME=\323users\323 TYPE=int>) 126 228.28 T |
4544 |
|
|
(<P>Which browsers do you use?) 108 216.28 T |
4545 |
|
|
(<OL>) 108 204.28 T |
4546 |
|
|
(<LI>X Mosaic <INPUT NAME=\323browsers\323 TYPE=checkbox VALUE=\323xmosaic\323>) 126 192.28 T |
4547 |
|
|
(<LI>Cello <INPUT NAME=\323browsers\323 TYPE=checkbox VALUE=\323cello\323>) 126 180.28 T |
4548 |
|
|
(<LI>Others <TEXTAREA NAME=\323others\323 COLS=48 ROWS=4></TEXTAREA>) 126 168.28 T |
4549 |
|
|
(</OL>) 108 156.28 T |
4550 |
|
|
(A contact point for your site: <INPUT NAME=\323contact\323 SIZE=\32342\323>) 108 144.28 T |
4551 |
|
|
(<P>Many thanks on behalf of the WWW central support team.) 108 132.28 T |
4552 |
|
|
(<P ALIGN=CENTER><INPUT TYPE=submit> <INPUT TYPE=reset>) 108 115.28 T |
4553 |
|
|
(</FORM>) 90 103.28 T |
4554 |
|
|
FMENDPAGE |
4555 |
|
|
%%EndPage: "21" 26 |
4556 |
|
|
%%Page: "22" 26 |
4557 |
|
|
595.3 792 0 FMBEGINPAGE |
4558 |
|
|
0 10 Q |
4559 |
|
|
0 X |
4560 |
|
|
0 K |
4561 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4562 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4563 |
|
|
(22) 292.65 63.28 T |
4564 |
|
|
0 12 Q |
4565 |
|
|
(This \336ctitious example is a questionnaire that will be emailed to) 72 736.95 T |
4566 |
|
|
2 10 Q |
4567 |
|
|
(www_admin@info.cern.ch) 382.15 736.95 T |
4568 |
|
|
0 12 Q |
4569 |
|
|
(.) 514.08 736.95 T |
4570 |
|
|
(The) 72 722.95 T |
4571 |
|
|
2 10 Q |
4572 |
|
|
(FORM) 93.65 722.95 T |
4573 |
|
|
0 12 Q |
4574 |
|
|
( element is used to delimit the form. There can be several forms in a single docu-) 117.64 722.95 T |
4575 |
|
|
(ment, but the) 72 708.95 T |
4576 |
|
|
2 10 Q |
4577 |
|
|
(FORM) 137.96 708.95 T |
4578 |
|
|
0 12 Q |
4579 |
|
|
( element can\325) 161.95 708.95 T |
4580 |
|
|
(t be nested. The) 226.34 708.95 T |
4581 |
|
|
2 10 Q |
4582 |
|
|
(ACTION) 305.28 708.95 T |
4583 |
|
|
0 12 Q |
4584 |
|
|
( attribute speci\336es a URL that desig-) 341.26 708.95 T |
4585 |
|
|
-0.1 (nates an HTTP server or an email address. If missing, the URL for the document itself will be) 72 694.95 P |
4586 |
|
|
(assumed. The ef) 72 680.95 T |
4587 |
|
|
(fect of the action can be modi\336ed by including a method pre\336x, e.g.) 150.05 680.95 T |
4588 |
|
|
2 10 Q |
4589 |
|
|
(ACTION=\323POST http://....\323) 72 666.95 T |
4590 |
|
|
0 12 Q |
4591 |
|
|
(. This pre\336x is used to select the HTTP method when sending) 221.92 666.95 T |
4592 |
|
|
(the form\325) 72 652.95 T |
4593 |
|
|
(s contents to an HTTP server) 116.3 652.95 T |
4594 |
|
|
(. W) 255.21 652.95 T |
4595 |
|
|
(ould it be cleaner to use a separate attribute, e.g.) 271.57 652.95 T |
4596 |
|
|
2 10 Q |
4597 |
|
|
(METHOD) 72 638.95 T |
4598 |
|
|
0 12 Q |
4599 |
|
|
(?) 107.98 638.95 T |
4600 |
|
|
(Servers can disable forms by sending an appropriate header or by an attribute on the optional) 72 619.95 T |
4601 |
|
|
2 10 Q |
4602 |
|
|
(HTMLPLUS) 72 605.95 T |
4603 |
|
|
0 12 Q |
4604 |
|
|
( element at the very start of the document, e.g.) 119.97 605.95 T |
4605 |
|
|
2 10 Q |
4606 |
|
|
(<htmlplus forms=off>) 345.47 605.95 T |
4607 |
|
|
0 12 Q |
4608 |
|
|
(.) 465.41 605.95 T |
4609 |
|
|
(The) 72 586.95 T |
4610 |
|
|
2 10 Q |
4611 |
|
|
(MH) 93.65 586.95 T |
4612 |
|
|
0 12 Q |
4613 |
|
|
( element can be used to specify RFC 822 mail headers that are included when sending) 105.64 586.95 T |
4614 |
|
|
(the form\325) 72 572.95 T |
4615 |
|
|
(s content either as an email message or as a HTTP request, e.g.) 116.3 572.95 T |
4616 |
|
|
2 10 Q |
4617 |
|
|
(<MH HIDDEN>) 90 555.28 T |
4618 |
|
|
(Subject: WWW Questionnaire) 90 543.28 T |
4619 |
|
|
(Priority: Low) 90 531.28 T |
4620 |
|
|
(</MH>) 90 519.28 T |
4621 |
|
|
0 12 Q |
4622 |
|
|
(The) 72 500.95 T |
4623 |
|
|
2 10 Q |
4624 |
|
|
(MH) 93.65 500.95 T |
4625 |
|
|
0 12 Q |
4626 |
|
|
( element can contain several headers separated by line breaks. The text within the MH) 105.64 500.95 T |
4627 |
|
|
(element is transcribed directly) 72 486.95 T |
4628 |
|
|
0 10 Q |
4629 |
|
|
(1) 216.89 491.75 T |
4630 |
|
|
0 12 Q |
4631 |
|
|
(, preserving spaces, tabs and line breaks, with each line termi-) 221.89 486.95 T |
4632 |
|
|
(nated by a) 72 472.95 T |
4633 |
|
|
2 10 Q |
4634 |
|
|
(CR) 124.29 472.95 T |
4635 |
|
|
(LF) 139.28 472.95 T |
4636 |
|
|
0 12 Q |
4637 |
|
|
( pair as per the RFC 822 guidelines. The preceding example of a form might) 151.28 472.95 T |
4638 |
|
|
(be rendered as:) 72 458.95 T |
4639 |
|
|
(Here, the) 72 167.61 T |
4640 |
|
|
2 10 Q |
4641 |
|
|
(<P>) 118.95 167.61 T |
4642 |
|
|
0 12 Q |
4643 |
|
|
( and) 136.94 167.61 T |
4644 |
|
|
2 10 Q |
4645 |
|
|
(<OL>) 160.26 167.61 T |
4646 |
|
|
0 12 Q |
4647 |
|
|
( elements have been used to lay out the text \050and input \336elds. The) 184.25 167.61 T |
4648 |
|
|
(browser has changed the background color within the) 72 153.61 T |
4649 |
|
|
2 10 Q |
4650 |
|
|
(FORM) 331.8 153.61 T |
4651 |
|
|
0 12 Q |
4652 |
|
|
( element to distinguish the form) 355.79 153.61 T |
4653 |
|
|
-0.11 (from other parts of the document. The browser is responsible for handling the input focus, i.e.) 72 139.61 P |
4654 |
|
|
(which \336eld will currently get keyboard input.) 72 125.61 T |
4655 |
|
|
72 95.05 523.3 110.03 C |
4656 |
|
|
81 108.01 225 108.01 2 L |
4657 |
|
|
0.5 H |
4658 |
|
|
2 Z |
4659 |
|
|
0 X |
4660 |
|
|
0 K |
4661 |
|
|
N |
4662 |
|
|
0 -24.95 595.3 816.95 C |
4663 |
|
|
0 10 Q |
4664 |
|
|
0 X |
4665 |
|
|
0 K |
4666 |
|
|
(1. Except for a initial line break which is ignored.) 90 88.39 T |
4667 |
|
|
72 83.05 523.3 744.95 C |
4668 |
|
|
133.56 182.61 461.74 435.95 C |
4669 |
|
|
133.56 182.61 461.74 435.95 R |
4670 |
|
|
4 X |
4671 |
|
|
0 K |
4672 |
|
|
V |
4673 |
|
|
133.56 435.11 466.56 435.11 2 L |
4674 |
|
|
0.5 H |
4675 |
|
|
2 Z |
4676 |
|
|
0 X |
4677 |
|
|
N |
4678 |
|
|
234.17 388.11 435 402.28 R |
4679 |
|
|
5 X |
4680 |
|
|
V |
4681 |
|
|
1 H |
4682 |
|
|
0 X |
4683 |
|
|
N |
4684 |
|
|
221.33 260.11 422.17 308.45 R |
4685 |
|
|
5 X |
4686 |
|
|
V |
4687 |
|
|
0 X |
4688 |
|
|
N |
4689 |
|
|
207.67 370.45 222.67 384.61 R |
4690 |
|
|
5 X |
4691 |
|
|
V |
4692 |
|
|
0 X |
4693 |
|
|
N |
4694 |
|
|
328.07 370.92 390.57 385.08 R |
4695 |
|
|
5 X |
4696 |
|
|
V |
4697 |
|
|
0 X |
4698 |
|
|
N |
4699 |
|
|
234 333.28 249 347.45 R |
4700 |
|
|
5 X |
4701 |
|
|
V |
4702 |
|
|
0 X |
4703 |
|
|
N |
4704 |
|
|
214.5 316.11 229.5 330.28 R |
4705 |
|
|
5 X |
4706 |
|
|
V |
4707 |
|
|
0 X |
4708 |
|
|
N |
4709 |
|
|
293.39 235.45 457.56 249.61 R |
4710 |
|
|
5 X |
4711 |
|
|
V |
4712 |
|
|
0 X |
4713 |
|
|
N |
4714 |
|
|
133.33 183.45 460.83 183.45 2 L |
4715 |
|
|
0.5 H |
4716 |
|
|
N |
4717 |
|
|
0 12 Q |
4718 |
|
|
(Please help us to improve the W) 140.89 421.11 T |
4719 |
|
|
(orld W) 295.17 421.11 T |
4720 |
|
|
(ide W) 328.33 421.11 T |
4721 |
|
|
(eb by \336lling in the) 356.34 421.11 T |
4722 |
|
|
(following questionaire:) 141.73 411.61 T |
4723 |
|
|
(Y) 143.04 392.43 T |
4724 |
|
|
(our or) 150.5 392.43 T |
4725 |
|
|
(ganization:) 179.26 392.43 T |
4726 |
|
|
(Commercial:) 142.93 374.43 T |
4727 |
|
|
(How many users?) 235.56 374.55 T |
4728 |
|
|
(Which browsers do you use?) 143.39 355.6 T |
4729 |
|
|
(1\051 X Mosaic) 169.56 339.28 T |
4730 |
|
|
(2\051 Cello) 169.56 320.61 T |
4731 |
|
|
(3\051 Others) 169.56 297.78 T |
4732 |
|
|
(A contact point for your site:) 151.56 240.28 T |
4733 |
|
|
(Many thanks on behalf of the WWW central support team.) 151.56 216.28 T |
4734 |
|
|
216.67 187.28 289.17 206.45 9.58 RR |
4735 |
|
|
V |
4736 |
|
|
1 H |
4737 |
|
|
N |
4738 |
|
|
215.5 189.28 288 208.45 9.58 RR |
4739 |
|
|
7 X |
4740 |
|
|
V |
4741 |
|
|
0 X |
4742 |
|
|
N |
4743 |
|
|
(Submit) 236.89 195.9 T |
4744 |
|
|
305.5 186.78 378 205.95 9.58 RR |
4745 |
|
|
V |
4746 |
|
|
N |
4747 |
|
|
304.33 188.78 376.83 207.95 9.58 RR |
4748 |
|
|
7 X |
4749 |
|
|
V |
4750 |
|
|
0 X |
4751 |
|
|
N |
4752 |
|
|
(Reset) 325.73 195.4 T |
4753 |
|
|
72 83.05 523.3 744.95 C |
4754 |
|
|
0 -24.95 595.3 816.95 C |
4755 |
|
|
FMENDPAGE |
4756 |
|
|
%%EndPage: "22" 27 |
4757 |
|
|
%%Page: "23" 27 |
4758 |
|
|
595.3 792 0 FMBEGINPAGE |
4759 |
|
|
0 10 Q |
4760 |
|
|
0 X |
4761 |
|
|
0 K |
4762 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4763 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4764 |
|
|
(23) 292.65 63.28 T |
4765 |
|
|
0 12 Q |
4766 |
|
|
-0.17 (For many platforms there will be existing conventions for forms, e.g.) 72 736.95 P |
4767 |
|
|
4 F |
4768 |
|
|
-0.17 (tab) 404.56 736.95 P |
4769 |
|
|
0 F |
4770 |
|
|
-0.17 ( and shift-) 419.88 736.95 P |
4771 |
|
|
4 F |
4772 |
|
|
-0.17 (tab) 468.17 736.95 P |
4773 |
|
|
0 F |
4774 |
|
|
-0.17 ( keys to) 483.5 736.95 P |
4775 |
|
|
-0.14 (move the keyboard focus forwards and backwards between \336elds, while an) 72 722.95 P |
4776 |
|
|
4 F |
4777 |
|
|
-0.14 (Enter) 433.45 722.95 P |
4778 |
|
|
0 F |
4779 |
|
|
-0.14 ( key submits) 460.09 722.95 P |
4780 |
|
|
(the form. In the example, the) 72 708.95 T |
4781 |
|
|
4 F |
4782 |
|
|
(Submit) 213.89 708.95 T |
4783 |
|
|
0 F |
4784 |
|
|
( and) 247.21 708.95 T |
4785 |
|
|
4 F |
4786 |
|
|
(Reset) 270.53 708.95 T |
4787 |
|
|
0 F |
4788 |
|
|
( buttons are speci\336ed explicitly with special) 296.51 708.95 T |
4789 |
|
|
-0.3 (purpose \336elds. The) 72 694.95 P |
4790 |
|
|
4 F |
4791 |
|
|
-0.3 (Submit) 165.7 694.95 P |
4792 |
|
|
0 F |
4793 |
|
|
-0.3 ( button is used to email the form or send its contents to the server as) 199.01 694.95 P |
4794 |
|
|
-0.23 (speci\336ed by the) 72 680.95 P |
4795 |
|
|
2 10 Q |
4796 |
|
|
-0.47 (ACTION) 149.58 680.95 P |
4797 |
|
|
0 12 Q |
4798 |
|
|
-0.23 ( attribute, while the) 185.56 680.95 P |
4799 |
|
|
4 F |
4800 |
|
|
-0.23 (Reset) 280.89 680.95 P |
4801 |
|
|
0 F |
4802 |
|
|
-0.23 ( button resets the \336elds to their initial values.) 306.87 680.95 P |
4803 |
|
|
(When the form consists of a single text \336eld, it may be appropriate to leave such buttons out) 72 666.95 T |
4804 |
|
|
(and rely on the) 72 652.95 T |
4805 |
|
|
4 F |
4806 |
|
|
(Enter) 146.61 652.95 T |
4807 |
|
|
0 F |
4808 |
|
|
( key) 173.26 652.95 T |
4809 |
|
|
(.) 192.8 652.95 T |
4810 |
|
|
(The) 72 633.95 T |
4811 |
|
|
2 10 Q |
4812 |
|
|
(INPUT) 93.65 633.95 T |
4813 |
|
|
0 12 Q |
4814 |
|
|
( element has the following attributes:) 123.63 633.95 T |
4815 |
|
|
2 10 Q |
4816 |
|
|
(NAME) 90 614.95 T |
4817 |
|
|
0 12 Q |
4818 |
|
|
-0.53 (Symbolic name used when transferring the form\325) 162 614.95 P |
4819 |
|
|
-0.53 (s contents. This attribute is) 394 614.95 P |
4820 |
|
|
(always needed and should uniquely identify this \336eld.) 162 600.95 T |
4821 |
|
|
2 10 Q |
4822 |
|
|
(TYPE) 90 581.95 T |
4823 |
|
|
0 12 Q |
4824 |
|
|
(De\336nes the type of data the \336eld accepts. Defaults to free text.) 162 581.95 T |
4825 |
|
|
2 10 Q |
4826 |
|
|
(SIZE) 90 562.95 T |
4827 |
|
|
0 12 Q |
4828 |
|
|
(Speci\336es the size or precision of the \336eld according to its type.) 162 562.95 T |
4829 |
|
|
2 10 Q |
4830 |
|
|
(MAXLENGTH) 90 543.95 T |
4831 |
|
|
0 12 Q |
4832 |
|
|
-0.44 (The maximum number of characters that will be accepted as input. This can) 162 543.95 P |
4833 |
|
|
(be greater that speci\336ed by) 162 529.95 T |
4834 |
|
|
2 10 Q |
4835 |
|
|
(SIZE) 294.23 529.95 T |
4836 |
|
|
0 12 Q |
4837 |
|
|
(, in which case the \336eld will scroll appro-) 318.21 529.95 T |
4838 |
|
|
(priately) 162 515.95 T |
4839 |
|
|
(. The default is unlimited.) 197.86 515.95 T |
4840 |
|
|
2 10 Q |
4841 |
|
|
(VALUE) 90 496.95 T |
4842 |
|
|
0 12 Q |
4843 |
|
|
(The initial value for the \336eld, or the value when checked for checkboxes) 162 496.95 T |
4844 |
|
|
(and radio buttons. This attribute is required for radio buttons.) 162 482.95 T |
4845 |
|
|
2 10 Q |
4846 |
|
|
(CHECKED) 90 463.95 T |
4847 |
|
|
0 12 Q |
4848 |
|
|
(When present indicates that a checkbox or radio button is selected.) 162 463.95 T |
4849 |
|
|
2 10 Q |
4850 |
|
|
(DISABLED) 90 444.95 T |
4851 |
|
|
0 12 Q |
4852 |
|
|
(When present indicates that this \336eld is temporarily disabled. Browsers) 162 444.95 T |
4853 |
|
|
(should show this by \322greying it\323 out in some manner) 162 430.95 T |
4854 |
|
|
(.) 414.86 430.95 T |
4855 |
|
|
2 10 Q |
4856 |
|
|
(ERROR) 90 411.95 T |
4857 |
|
|
0 12 Q |
4858 |
|
|
0 (When present indicates that the \336eld\325) 162 411.95 P |
4859 |
|
|
0 (s initial value is in error in some way) 340.2 411.95 P |
4860 |
|
|
0 (,) 517.3 411.95 P |
4861 |
|
|
-0.24 (e.g. because it is inconsistent with the values of other \336elds. Servers should) 162 397.95 P |
4862 |
|
|
(include an explanatory error message with the form\325) 162 383.95 T |
4863 |
|
|
(s text.) 412.81 383.95 T |
4864 |
|
|
2 10 Q |
4865 |
|
|
(SRC) 90 364.95 T |
4866 |
|
|
0 12 Q |
4867 |
|
|
(A URL or URN specifying an image - for use only with) 162 364.95 T |
4868 |
|
|
2 10 Q |
4869 |
|
|
(TYPE=IMAGEMAP.) 433.15 364.95 T |
4870 |
|
|
(ALIGN) 90 345.95 T |
4871 |
|
|
0 12 Q |
4872 |
|
|
(V) 162 345.95 T |
4873 |
|
|
(ertical alignment of the image - for use only with) 169.33 345.95 T |
4874 |
|
|
2 10 Q |
4875 |
|
|
(TYPE=IMAGEMAP.) 407.83 345.95 T |
4876 |
|
|
0 12 Q |
4877 |
|
|
( The following types of \336elds can be de\336ned with the) 72 321.95 T |
4878 |
|
|
2 10 Q |
4879 |
|
|
(TYPE) 330.83 321.95 T |
4880 |
|
|
0 12 Q |
4881 |
|
|
( attribute) 354.82 321.95 T |
4882 |
|
|
4 F |
4883 |
|
|
(\050upper or lower case\051) 400.79 321.95 T |
4884 |
|
|
0 F |
4885 |
|
|
(:) 505.05 321.95 T |
4886 |
|
|
2 10 Q |
4887 |
|
|
(TEXT) 90 302.95 T |
4888 |
|
|
0 12 Q |
4889 |
|
|
(Single line text entry \336elds. Use the) 162 302.95 T |
4890 |
|
|
2 10 Q |
4891 |
|
|
(SIZE) 336.56 302.95 T |
4892 |
|
|
0 12 Q |
4893 |
|
|
( attribute to specify the visible) 360.55 302.95 T |
4894 |
|
|
(width in characters, e.g.) 162 288.95 T |
4895 |
|
|
2 10 Q |
4896 |
|
|
(SIZE=\32324\323) 279.57 288.95 T |
4897 |
|
|
0 12 Q |
4898 |
|
|
( for a 24 character \336eld. The) 333.54 288.95 T |
4899 |
|
|
2 10 Q |
4900 |
|
|
(MAX) 472.75 288.95 T |
4901 |
|
|
0 12 Q |
4902 |
|
|
(attribute can be used to specify an upper limit to the number of characters) 162 274.95 T |
4903 |
|
|
-0.27 (that can be entered into a text \336eld, e.g.) 162 260.95 P |
4904 |
|
|
2 10 Q |
4905 |
|
|
-0.54 (MAX=72) 351.43 260.95 P |
4906 |
|
|
0 12 Q |
4907 |
|
|
-0.27 (. Use the) 387.41 260.95 P |
4908 |
|
|
2 10 Q |
4909 |
|
|
-0.54 (TEXTAREA) 431.89 260.95 P |
4910 |
|
|
0 12 Q |
4911 |
|
|
-0.27 ( element) 479.87 260.95 P |
4912 |
|
|
(for text \336elds which can accept multiple lines \050see below\051.) 162 246.95 T |
4913 |
|
|
2 10 Q |
4914 |
|
|
(INT) 90 227.95 T |
4915 |
|
|
0 12 Q |
4916 |
|
|
(For entering integer numbers, the maximum number of digits can be speci-) 162 227.95 T |
4917 |
|
|
-0.39 (\336ed with the) 162 213.95 P |
4918 |
|
|
2 10 Q |
4919 |
|
|
-0.79 (SIZE) 223.79 213.95 P |
4920 |
|
|
0 12 Q |
4921 |
|
|
-0.39 ( attribute \050excluding the sign character\051, e.g.) 247.77 213.95 P |
4922 |
|
|
2 10 Q |
4923 |
|
|
-0.79 (size=3) 460.19 213.95 P |
4924 |
|
|
0 12 Q |
4925 |
|
|
-0.39 ( for a) 496.17 213.95 P |
4926 |
|
|
(three digit number) 162 199.95 T |
4927 |
|
|
(.) 249.95 199.95 T |
4928 |
|
|
2 10 Q |
4929 |
|
|
(FLOAT) 90 180.95 T |
4930 |
|
|
0 12 Q |
4931 |
|
|
(For \336elds which can accept \337oating point numbers.) 162 180.95 T |
4932 |
|
|
2 10 Q |
4933 |
|
|
(DATE) 90 161.95 T |
4934 |
|
|
0 12 Q |
4935 |
|
|
(Fields which can accept a recognized date format.) 162 161.95 T |
4936 |
|
|
2 10 Q |
4937 |
|
|
(URL) 90 142.95 T |
4938 |
|
|
0 12 Q |
4939 |
|
|
(For \336elds which expect document references as URLs or URNs.) 162 142.95 T |
4940 |
|
|
2 10 Q |
4941 |
|
|
(CHECKBOX) 90 123.95 T |
4942 |
|
|
0 12 Q |
4943 |
|
|
(Used for simple Boolean attributes, or for attributes which can take multi-) 162 123.95 T |
4944 |
|
|
-0.05 (ple values at the same time. The latter is represented by a number of check-) 162 109.95 P |
4945 |
|
|
(box \336elds each of which has the same) 162 95.95 T |
4946 |
|
|
2 10 Q |
4947 |
|
|
(NAME) 346.53 95.95 T |
4948 |
|
|
0 12 Q |
4949 |
|
|
(.) 370.52 95.95 T |
4950 |
|
|
FMENDPAGE |
4951 |
|
|
%%EndPage: "23" 28 |
4952 |
|
|
%%Page: "24" 28 |
4953 |
|
|
595.3 792 0 FMBEGINPAGE |
4954 |
|
|
0 10 Q |
4955 |
|
|
0 X |
4956 |
|
|
0 K |
4957 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
4958 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
4959 |
|
|
(24) 292.65 63.28 T |
4960 |
|
|
2 F |
4961 |
|
|
(RADIO) 90 736.95 T |
4962 |
|
|
0 12 Q |
4963 |
|
|
-0.15 (For attributes which can take a single value from a set of alternatives. Each) 162 736.95 P |
4964 |
|
|
(radio button \336eld in the group should be given the same) 162 722.95 T |
4965 |
|
|
2 10 Q |
4966 |
|
|
(NAME) 432.83 722.95 T |
4967 |
|
|
0 12 Q |
4968 |
|
|
(.) 456.82 722.95 T |
4969 |
|
|
2 10 Q |
4970 |
|
|
(RANGE) 90 703.95 T |
4971 |
|
|
0 12 Q |
4972 |
|
|
-0.25 (This allows you to specify an integer range with the) 162 703.95 P |
4973 |
|
|
2 10 Q |
4974 |
|
|
-0.49 (MIN) 411.35 703.95 P |
4975 |
|
|
0 12 Q |
4976 |
|
|
-0.25 ( and) 429.34 703.95 P |
4977 |
|
|
2 10 Q |
4978 |
|
|
-0.49 (MAX) 452.17 703.95 P |
4979 |
|
|
0 12 Q |
4980 |
|
|
-0.25 ( attributes,) 470.15 703.95 P |
4981 |
|
|
(e.g.) 162 689.95 T |
4982 |
|
|
2 10 Q |
4983 |
|
|
(MIN=1) 182.32 689.95 T |
4984 |
|
|
(MAX=100) 215.3 689.95 T |
4985 |
|
|
0 12 Q |
4986 |
|
|
(. Users can select any value in this range.) 257.28 689.95 T |
4987 |
|
|
2 10 Q |
4988 |
|
|
(IMAGE) 90 670.95 T |
4989 |
|
|
0 12 Q |
4990 |
|
|
(This allows you to specify an image \336eld upon which you can click with a) 162 670.95 T |
4991 |
|
|
(pointing device. The) 162 656.95 T |
4992 |
|
|
2 10 Q |
4993 |
|
|
(SRC) 263.93 656.95 T |
4994 |
|
|
0 12 Q |
4995 |
|
|
( and) 281.92 656.95 T |
4996 |
|
|
2 10 Q |
4997 |
|
|
(ALIGN) 305.24 656.95 T |
4998 |
|
|
0 12 Q |
4999 |
|
|
( attributes are exactly the same as for) 335.22 656.95 T |
5000 |
|
|
(the) 162 642.95 T |
5001 |
|
|
2 10 Q |
5002 |
|
|
(IMG) 179.65 642.95 T |
5003 |
|
|
0 12 Q |
5004 |
|
|
( and) 197.64 642.95 T |
5005 |
|
|
2 10 Q |
5006 |
|
|
(IMAGE) 220.96 642.95 T |
5007 |
|
|
0 12 Q |
5008 |
|
|
( elements. The symbolic names for the x and y coordi-) 250.94 642.95 T |
5009 |
|
|
(nates of the click event are speci\336ed with) 162 628.95 T |
5010 |
|
|
4 F |
5011 |
|
|
(name) 363.18 628.95 T |
5012 |
|
|
0 F |
5013 |
|
|
(.x and) 389.15 628.95 T |
5014 |
|
|
4 F |
5015 |
|
|
(name) 421.46 628.95 T |
5016 |
|
|
0 F |
5017 |
|
|
(.y for the) 447.44 628.95 T |
5018 |
|
|
4 F |
5019 |
|
|
(name) 494.07 628.95 T |
5020 |
|
|
0 F |
5021 |
|
|
(given with the) 162 614.95 T |
5022 |
|
|
2 10 Q |
5023 |
|
|
(NAME) 233.62 614.95 T |
5024 |
|
|
0 12 Q |
5025 |
|
|
( attribute. The) 257.61 614.95 T |
5026 |
|
|
2 10 Q |
5027 |
|
|
(VALUE) 328.23 614.95 T |
5028 |
|
|
0 12 Q |
5029 |
|
|
( attribute is ignored.) 358.21 614.95 T |
5030 |
|
|
2 10 Q |
5031 |
|
|
(SCRIBBLE) 90 595.95 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 595.95 P |
5034 |
|
|
(in millimeters is given as) 162 581.95 T |
5035 |
|
|
2 10 Q |
5036 |
|
|
(SIZE=) 285.6 581.95 T |
5037 |
|
|
6 F |
5038 |
|
|
(width) 315.59 581.95 T |
5039 |
|
|
2 F |
5040 |
|
|
(,) 345.57 581.95 T |
5041 |
|
|
6 F |
5042 |
|
|
(height) 351.57 581.95 T |
5043 |
|
|
0 12 Q |
5044 |
|
|
(. The units are absolute as) 387.55 581.95 T |
5045 |
|
|
(they relate to the dimensions of the human hand, rather than pixels of vary-) 162 567.95 T |
5046 |
|
|
-0.12 (ing resolution. The scribble may involve time and pressure data in addition) 162 553.95 P |
5047 |
|
|
(to the basic ink data. Y) 162 539.95 T |
5048 |
|
|
(ou can use scribble for signatures or sketches. The) 271.39 539.95 T |
5049 |
|
|
-0.13 (\336eld can be initialised by setting the) 162 525.95 P |
5050 |
|
|
2 10 Q |
5051 |
|
|
-0.26 (SRC) 337.32 525.95 P |
5052 |
|
|
0 12 Q |
5053 |
|
|
-0.13 ( attribute to a URL which contains) 355.31 525.95 P |
5054 |
|
|
(the ink) 162 511.95 T |
5055 |
|
|
0 10 Q |
5056 |
|
|
(1) 194.98 516.75 T |
5057 |
|
|
0 12 Q |
5058 |
|
|
(. The) 199.98 511.95 T |
5059 |
|
|
2 10 Q |
5060 |
|
|
(VALUE) 227.62 511.95 T |
5061 |
|
|
0 12 Q |
5062 |
|
|
( attribute is ignored.) 257.61 511.95 T |
5063 |
|
|
2 10 Q |
5064 |
|
|
(AUDIO) 90 492.95 T |
5065 |
|
|
0 12 Q |
5066 |
|
|
(This provides a way of entering spoken messages into a form. Browsers) 162 492.95 T |
5067 |
|
|
(might show an icon which when clicked pops-up a set of tape controls that) 162 478.95 T |
5068 |
|
|
(you can use to record and replay messages. The initial message can be set) 162 464.95 T |
5069 |
|
|
(by specifying a URL with the) 162 450.95 T |
5070 |
|
|
2 10 Q |
5071 |
|
|
(SRC) 307.24 450.95 T |
5072 |
|
|
0 12 Q |
5073 |
|
|
( attribute. The) 325.23 450.95 T |
5074 |
|
|
2 10 Q |
5075 |
|
|
(VALUE) 395.85 450.95 T |
5076 |
|
|
0 12 Q |
5077 |
|
|
( attribute is ignored.) 425.83 450.95 T |
5078 |
|
|
2 10 Q |
5079 |
|
|
(SUBMIT) 90 431.95 T |
5080 |
|
|
0 12 Q |
5081 |
|
|
(This is a button that when pressed submits the form. It of) 162 431.95 T |
5082 |
|
|
(fers authors con-) 435.62 431.95 T |
5083 |
|
|
(trol over the location of this button. Y) 162 417.95 T |
5084 |
|
|
(ou can use an image as a submit but-) 342.69 417.95 T |
5085 |
|
|
(ton by specifying a URL with the) 162 403.95 T |
5086 |
|
|
2 10 Q |
5087 |
|
|
(SRC) 325.57 403.95 T |
5088 |
|
|
0 12 Q |
5089 |
|
|
( attribute.) 343.56 403.95 T |
5090 |
|
|
2 10 Q |
5091 |
|
|
(RESET) 90 384.95 T |
5092 |
|
|
0 12 Q |
5093 |
|
|
-0.22 (This is a button that when pressed resets the form\325) 162 384.95 P |
5094 |
|
|
-0.22 (s \336elds to their initial val-) 400.82 384.95 P |
5095 |
|
|
(ues as speci\336ed by the) 162 370.95 T |
5096 |
|
|
2 10 Q |
5097 |
|
|
(VALUE) 272.26 370.95 T |
5098 |
|
|
0 12 Q |
5099 |
|
|
( attribute. Y) 302.24 370.95 T |
5100 |
|
|
(ou can use an image as a reeset) 358.67 370.95 T |
5101 |
|
|
(button by specifying a URL with the) 162 356.95 T |
5102 |
|
|
2 10 Q |
5103 |
|
|
(SRC) 340.89 356.95 T |
5104 |
|
|
0 12 Q |
5105 |
|
|
( attribute.) 358.88 356.95 T |
5106 |
|
|
(When you need to let users enter more than one line of text, you should use the TEXT) 72 337.95 T |
5107 |
|
|
(AREA) 484.08 337.95 T |
5108 |
|
|
(element, e.g.) 72 323.95 T |
5109 |
|
|
2 10 Q |
5110 |
|
|
(<TEXTAREA NAME=\323address\323 ROWS=64 COLS=6>) 90 306.28 T |
5111 |
|
|
(Hewlett Packard Laboratories) 108 294.28 T |
5112 |
|
|
(1501 Page Mill Road) 108 282.28 T |
5113 |
|
|
(Palo Alto, California 94304-1126) 108 270.28 T |
5114 |
|
|
(</TEXTAREA>) 90 258.28 T |
5115 |
|
|
0 12 Q |
5116 |
|
|
-0.1 (The text up to the end tag is used to initialize the \336eld\325) 72 239.95 P |
5117 |
|
|
-0.1 (s value. This end tag is always required) 331.93 239.95 P |
5118 |
|
|
(even if the \336eld is initially blank. The) 72 225.95 T |
5119 |
|
|
2 10 Q |
5120 |
|
|
(ROWS) 255.56 225.95 T |
5121 |
|
|
0 12 Q |
5122 |
|
|
( and) 279.55 225.95 T |
5123 |
|
|
2 10 Q |
5124 |
|
|
(COLS) 302.86 225.95 T |
5125 |
|
|
0 12 Q |
5126 |
|
|
( attributes determine the visible dimen-) 326.85 225.95 T |
5127 |
|
|
(sion of the \336eld in characters. Browsers are recommended to allow text to grow beyond these) 72 211.95 T |
5128 |
|
|
(limits by scrolling as needed. In the initial design for forms, multi-line text \336elds were sup-) 72 197.95 T |
5129 |
|
|
(ported by the) 72 183.95 T |
5130 |
|
|
2 10 Q |
5131 |
|
|
(INPUT) 138.29 183.95 T |
5132 |
|
|
0 12 Q |
5133 |
|
|
( element with) 168.27 183.95 T |
5134 |
|
|
2 10 Q |
5135 |
|
|
(TYPE=TEXT) 236.56 183.95 T |
5136 |
|
|
0 12 Q |
5137 |
|
|
(. Unfortunately) 289.64 183.95 T |
5138 |
|
|
(, this causes problems for \336elds) 362.14 183.95 T |
5139 |
|
|
-0.26 (with long text values as SGML limits the length of attribute literals. The HTML+ DTD allows) 72 169.95 P |
5140 |
|
|
(for up to 1024 characters \050the SGML default is only 240 characters!\051.) 72 155.95 T |
5141 |
|
|
(The) 72 136.95 T |
5142 |
|
|
2 10 Q |
5143 |
|
|
(RADIO) 93.65 136.95 T |
5144 |
|
|
0 12 Q |
5145 |
|
|
( and) 123.63 136.95 T |
5146 |
|
|
2 10 Q |
5147 |
|
|
(CHECKBOX) 146.95 136.95 T |
5148 |
|
|
0 12 Q |
5149 |
|
|
( \336elds can be used to specify multiple choice forms in which every) 194.92 136.95 T |
5150 |
|
|
72 107.05 523.3 122.03 C |
5151 |
|
|
81 120.01 225 120.01 2 L |
5152 |
|
|
0.5 H |
5153 |
|
|
2 Z |
5154 |
|
|
0 X |
5155 |
|
|
0 K |
5156 |
|
|
N |
5157 |
|
|
0 -24.95 595.3 816.95 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 100.39 T |
5162 |
|
|
(eral Magic and others. Phone Slate T) 90 88.39 T |
5163 |
|
|
(echnical Support on +1 \050602\051 991-6844 for more information.) 237.25 88.39 T |
5164 |
|
|
FMENDPAGE |
5165 |
|
|
%%EndPage: "24" 29 |
5166 |
|
|
%%Page: "25" 29 |
5167 |
|
|
595.3 792 0 FMBEGINPAGE |
5168 |
|
|
0 10 Q |
5169 |
|
|
0 X |
5170 |
|
|
0 K |
5171 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
5172 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
5173 |
|
|
(25) 292.65 63.28 T |
5174 |
|
|
0 12 Q |
5175 |
|
|
(alternative is visible as part of the form. An alternative is to use the) 72 736.95 T |
5176 |
|
|
2 10 Q |
5177 |
|
|
(SELECT) 397.44 736.95 T |
5178 |
|
|
0 12 Q |
5179 |
|
|
( element which is) 433.42 736.95 T |
5180 |
|
|
(generally rendered in a more compact fashion as a pull down combo list. Every alternative is) 72 722.95 T |
5181 |
|
|
(represented by the) 72 708.95 T |
5182 |
|
|
2 10 Q |
5183 |
|
|
(OPTION) 162.92 708.95 T |
5184 |
|
|
0 12 Q |
5185 |
|
|
( element, e.g.) 198.9 708.95 T |
5186 |
|
|
2 10 Q |
5187 |
|
|
(<SELECT NAME=\323f) 90 691.28 T |
5188 |
|
|
(lavor\323>) 179.95 691.28 T |
5189 |
|
|
(<OPTION>Vanilla) 108 679.28 T |
5190 |
|
|
(<OPTION>Strawberry) 108 667.28 T |
5191 |
|
|
(<OPTION>Rum and Raisin) 108 655.28 T |
5192 |
|
|
(<OPTION>Peach and Orange) 108 643.28 T |
5193 |
|
|
(</SELECT>) 90 631.28 T |
5194 |
|
|
0 12 Q |
5195 |
|
|
(The) 72 612.95 T |
5196 |
|
|
2 10 Q |
5197 |
|
|
(SEVERAL) 93.65 612.95 T |
5198 |
|
|
0 12 Q |
5199 |
|
|
( attribute is needed when users are allowed to make several selections, e.g.) 135.62 612.95 T |
5200 |
|
|
2 10 Q |
5201 |
|
|
(<SELECT SEVERAL>) 72 598.95 T |
5202 |
|
|
0 12 Q |
5203 |
|
|
(. The) 167.95 598.95 T |
5204 |
|
|
2 10 Q |
5205 |
|
|
(ERROR) 195.59 598.95 T |
5206 |
|
|
0 12 Q |
5207 |
|
|
( attribute can be used to indicate that the initial selection is in) 225.58 598.95 T |
5208 |
|
|
(error in some way) 72 584.95 T |
5209 |
|
|
(, e.g. because it is inconsistent with the values of other \336elds.) 158.15 584.95 T |
5210 |
|
|
(The) 72 565.95 T |
5211 |
|
|
2 10 Q |
5212 |
|
|
(OPTION) 93.65 565.95 T |
5213 |
|
|
0 12 Q |
5214 |
|
|
( element can take the following attributes:) 129.63 565.95 T |
5215 |
|
|
2 10 Q |
5216 |
|
|
(SELECTED) 90 546.95 T |
5217 |
|
|
0 12 Q |
5218 |
|
|
(Indicates that this option is initially selected.) 162 546.95 T |
5219 |
|
|
2 10 Q |
5220 |
|
|
(DISABLED) 90 527.95 T |
5221 |
|
|
0 12 Q |
5222 |
|
|
(When present indicates that this option is temporarily disabled. Browsers) 162 527.95 T |
5223 |
|
|
(should show this by \322greying it\323 out in some manner) 162 513.95 T |
5224 |
|
|
(.) 414.86 513.95 T |
5225 |
|
|
1 F |
5226 |
|
|
(10.1) 72 485.95 T |
5227 |
|
|
(Sending form data to an HTTP server) 99 485.95 T |
5228 |
|
|
0 F |
5229 |
|
|
-0.42 (The form contents are expressed as a property list of attribute names and values. Radio buttons) 72 466.95 P |
5230 |
|
|
(and checkboxes are left out of the list when unchecked. This ensures that only the selected) 72 452.95 T |
5231 |
|
|
-0.01 (radio button contributes a) 72 438.95 P |
5232 |
|
|
4 F |
5233 |
|
|
-0.01 (name=value) 197.87 438.95 P |
5234 |
|
|
0 F |
5235 |
|
|
-0.01 ( pair) 257.92 438.95 P |
5236 |
|
|
-0.01 (. Omitting the) 278.9 438.95 P |
5237 |
|
|
2 10 Q |
5238 |
|
|
-0.03 (VALUE) 348.83 438.95 P |
5239 |
|
|
0 12 Q |
5240 |
|
|
-0.01 ( attribute for a checkbox \336eld) 378.81 438.95 P |
5241 |
|
|
(causes the \336eld when checked to appear as a) 72 424.95 T |
5242 |
|
|
4 F |
5243 |
|
|
(name) 288.14 424.95 T |
5244 |
|
|
0 F |
5245 |
|
|
( without a value \050this is appropriate for) 314.12 424.95 T |
5246 |
|
|
(Boolean attributes\051. Currently) 72 410.95 T |
5247 |
|
|
(, there are two ways of transferring form contents to an HTTP) 214.79 410.95 T |
5248 |
|
|
(server:) 72 396.95 T |
5249 |
|
|
(\245) 90 377.95 T |
5250 |
|
|
(As a suf) 108 377.95 T |
5251 |
|
|
(\336x on the URL given by the) 147.09 377.95 T |
5252 |
|
|
2 10 Q |
5253 |
|
|
(ACTION) 284.67 377.95 T |
5254 |
|
|
0 12 Q |
5255 |
|
|
( attribute) 320.65 377.95 T |
5256 |
|
|
(\245) 90 358.95 T |
5257 |
|
|
(As a multipart MIME message) 108 358.95 T |
5258 |
|
|
(In the \336rst approach, the property list is encoded as a sequence of) 72 339.95 T |
5259 |
|
|
4 F |
5260 |
|
|
(name=value) 388.42 339.95 T |
5261 |
|
|
0 F |
5262 |
|
|
( elements sepa-) 448.47 339.95 T |
5263 |
|
|
(rated by the \322&\323 character) 72 325.95 T |
5264 |
|
|
(. The values for the form\325) 197.88 325.95 T |
5265 |
|
|
(s \336elds are sent as a search string, e.g.) 320.45 325.95 T |
5266 |
|
|
2 10 Q |
5267 |
|
|
(URL?org=Acme%20Foods&commerce&users=42) 90 308.28 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 289.95 T |
5270 |
|
|
(\322%\323 followed by the hexadecimal code for the character in question, e.g. \322%20\323 should be) 72 275.95 T |
5271 |
|
|
(used in place of the space character) 72 261.95 T |
5272 |
|
|
(.) 241.18 261.95 T |
5273 |
|
|
2 10 Q |
5274 |
|
|
(IMAGE) 247.18 261.95 T |
5275 |
|
|
0 12 Q |
5276 |
|
|
( \336elds are only included in the list when clicked,) 277.16 261.95 T |
5277 |
|
|
(and give rise to something matching:) 72 247.95 T |
5278 |
|
|
2 10 Q |
5279 |
|
|
(URL?name.x=23&name.y=29) 90 230.28 T |
5280 |
|
|
0 12 Q |
5281 |
|
|
-0.25 (They can be used as iconic controls for other images or data. The) 72 211.95 P |
5282 |
|
|
4 F |
5283 |
|
|
-0.25 (object-name) 384.44 211.95 P |
5284 |
|
|
2 10 Q |
5285 |
|
|
-0.51 (.) 443.72 211.95 P |
5286 |
|
|
4 12 Q |
5287 |
|
|
-0.25 (pr) 449.72 211.95 P |
5288 |
|
|
-0.25 (operty-name) 459.94 211.95 P |
5289 |
|
|
0 F |
5290 |
|
|
(notation paves the way for more complex input controls in the future. In the near future, for-) 72 197.95 T |
5291 |
|
|
-0.13 (mat negotiation will not change the number of pixels in an image, so using pixel based coordi-) 72 183.95 P |
5292 |
|
|
(nates is okay) 72 169.95 T |
5293 |
|
|
(. In the longer term, scaled coordinates in the range 0 to 1.0 may prove safer) 133.18 169.95 T |
5294 |
|
|
(.) 498.23 169.95 T |
5295 |
|
|
(Multipart MIME messages are necessary if the form contains scribble or audio \336elds. Form) 72 150.95 T |
5296 |
|
|
(data can be sent in the same) 72 136.95 T |
5297 |
|
|
4 F |
5298 |
|
|
(name=value) 208.89 136.95 T |
5299 |
|
|
0 F |
5300 |
|
|
( representation as described above. For scribble and) 268.94 136.95 T |
5301 |
|
|
-0.32 (audio \336elds, the) 72 122.95 P |
5302 |
|
|
4 F |
5303 |
|
|
-0.32 (value) 150.34 122.95 P |
5304 |
|
|
0 F |
5305 |
|
|
-0.32 ( identi\336es a subsequent part in the multipart message, as speci\336ed by the) 176.31 122.95 P |
5306 |
|
|
2 10 Q |
5307 |
|
|
-0.23 (Content-ID:) 72 108.95 P |
5308 |
|
|
0 12 Q |
5309 |
|
|
-0.11 ( header for each part. Another approach is to send just the SGML elements used) 137.96 108.95 P |
5310 |
|
|
(to de\336ne form \336elds, i.e. the) 72 94.95 T |
5311 |
|
|
2 10 Q |
5312 |
|
|
(INPUT) 210.25 94.95 T |
5313 |
|
|
0 12 Q |
5314 |
|
|
(,) 239.34 94.95 T |
5315 |
|
|
2 10 Q |
5316 |
|
|
(TEXTAREA) 245.34 94.95 T |
5317 |
|
|
0 12 Q |
5318 |
|
|
( and) 293.31 94.95 T |
5319 |
|
|
2 10 Q |
5320 |
|
|
(SELECT) 316.63 94.95 T |
5321 |
|
|
0 12 Q |
5322 |
|
|
( elements. The) 352.61 94.95 T |
5323 |
|
|
2 10 Q |
5324 |
|
|
(Content-ID:) 425.89 94.95 T |
5325 |
|
|
0 12 Q |
5326 |
|
|
( head-) 491.85 94.95 T |
5327 |
|
|
FMENDPAGE |
5328 |
|
|
%%EndPage: "25" 30 |
5329 |
|
|
%%Page: "26" 30 |
5330 |
|
|
595.3 792 0 FMBEGINPAGE |
5331 |
|
|
0 10 Q |
5332 |
|
|
0 X |
5333 |
|
|
0 K |
5334 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
5335 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
5336 |
|
|
(26) 292.65 63.28 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 736.95 T |
5339 |
|
|
(update forms being viewed by a browser without having to send the entire document.) 72 722.95 T |
5340 |
|
|
1 F |
5341 |
|
|
(10.2) 72 694.95 T |
5342 |
|
|
(Sending a form via Electronic Mail) 99 694.95 T |
5343 |
|
|
0 F |
5344 |
|
|
(In this case, the form needs to be viewable on ordinary mail readers. The form should be con-) 72 675.95 T |
5345 |
|
|
(verted to ASCII and mailed as a plain text message, preceded by the headers as speci\336ed by) 72 661.95 T |
5346 |
|
|
-0.06 (the) 72 647.95 P |
5347 |
|
|
2 10 Q |
5348 |
|
|
-0.11 (MH) 89.6 647.95 P |
5349 |
|
|
0 12 Q |
5350 |
|
|
-0.06 ( element. Each) 101.59 647.95 P |
5351 |
|
|
2 10 Q |
5352 |
|
|
-0.11 (INPUT) 175.36 647.95 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 647.95 P |
5355 |
|
|
(An longer term alternative is to send the HTML+ document as a MIME message, along with) 72 633.95 T |
5356 |
|
|
(the current values for each \336eld.) 72 619.95 T |
5357 |
|
|
1 14 Q |
5358 |
|
|
(1) 72 590.62 T |
5359 |
|
|
(1) 79.01 590.62 T |
5360 |
|
|
(Literal and Preformatted T) 90 590.62 T |
5361 |
|
|
(ext) 263.13 590.62 T |
5362 |
|
|
0 12 Q |
5363 |
|
|
(Preformatted text started of) 72 570.95 T |
5364 |
|
|
(f in HTML with a simple mechanism for showing computer out-) 203.35 570.95 T |
5365 |
|
|
-0.4 (put, for which the spaces and line breaks were signi\336cant in determining the layout. The desire) 72 556.95 P |
5366 |
|
|
-0.45 (to of) 72 542.95 P |
5367 |
|
|
-0.45 (fer Unix manual pages as hypertext forced a rethink. The next version supported character) 93.65 542.95 P |
5368 |
|
|
(emphasis and embedded hypertext buttons. HTML+ adds the capability to use variable pitch) 72 528.95 T |
5369 |
|
|
(fonts and to set up tab stops.) 72 514.95 T |
5370 |
|
|
(The LIT element is rendered in a proportional font, e.g.) 72 495.95 T |
5371 |
|
|
2 10 Q |
5372 |
|
|
(<LIT>) 90 478.28 T |
5373 |
|
|
(From Oberon in fairyland,) 90 466.28 T |
5374 |
|
|
(The king of ghosts and shadows there,) 108 454.28 T |
5375 |
|
|
(Mad Robin I, at his command,) 90 442.28 T |
5376 |
|
|
(Am sent to view the night sports here.) 108 430.28 T |
5377 |
|
|
(What revel rout) 126 418.28 T |
5378 |
|
|
(is kept about,) 126 406.28 T |
5379 |
|
|
(In every corner where I go,) 108 394.28 T |
5380 |
|
|
(I will o\325ersee) 126 382.28 T |
5381 |
|
|
(And merry be) 126 370.28 T |
5382 |
|
|
(And make good sport, with ho, ho, ho!) 108 358.28 T |
5383 |
|
|
(</LIT>) 90 346.28 T |
5384 |
|
|
0 12 Q |
5385 |
|
|
(This is rendered literally as:) 72 327.95 T |
5386 |
|
|
(From Oberon in fairyland,) 90 308.95 T |
5387 |
|
|
(The king of ghosts and shadows there,) 108 294.95 T |
5388 |
|
|
(Mad Robin I, at his command,) 90 280.95 T |
5389 |
|
|
(Am sent to view the night sports here.) 108 266.95 T |
5390 |
|
|
(What revel rout) 126 252.95 T |
5391 |
|
|
(Is kept about,) 126 238.95 T |
5392 |
|
|
(In every corner where I go,) 108 224.95 T |
5393 |
|
|
(I will o\325ersee) 126 210.95 T |
5394 |
|
|
(And merry be) 126 196.95 T |
5395 |
|
|
(And make good sport, with a ho, ho, ho!) 108 182.95 T |
5396 |
|
|
(The ability to set tab stops in) 72 163.95 T |
5397 |
|
|
2 10 Q |
5398 |
|
|
(LITeral) 213.59 163.95 T |
5399 |
|
|
0 12 Q |
5400 |
|
|
( text makes it much easier to write \336lters that convert) 255.57 163.95 T |
5401 |
|
|
(documents written on word processors into HTML+. T) 72 149.95 T |
5402 |
|
|
(ab stops can be set by the) 335.09 149.95 T |
5403 |
|
|
2 10 Q |
5404 |
|
|
(TAB) 460 149.95 T |
5405 |
|
|
0 12 Q |
5406 |
|
|
( element) 477.99 149.95 T |
5407 |
|
|
(and apply for the scope of the) 72 135.95 T |
5408 |
|
|
2 10 Q |
5409 |
|
|
(LIT) 217.55 135.95 T |
5410 |
|
|
0 12 Q |
5411 |
|
|
( element, e.g.) 235.54 135.95 T |
5412 |
|
|
2 10 Q |
5413 |
|
|
(<tab at=40 align=right>) 90 118.28 T |
5414 |
|
|
FMENDPAGE |
5415 |
|
|
%%EndPage: "26" 31 |
5416 |
|
|
%%Page: "27" 31 |
5417 |
|
|
595.3 792 0 FMBEGINPAGE |
5418 |
|
|
0 10 Q |
5419 |
|
|
0 X |
5420 |
|
|
0 K |
5421 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
5422 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
5423 |
|
|
(27) 292.65 63.28 T |
5424 |
|
|
0 12 Q |
5425 |
|
|
(The) 72 736.95 T |
5426 |
|
|
2 10 Q |
5427 |
|
|
(AT) 93.65 736.95 T |
5428 |
|
|
0 12 Q |
5429 |
|
|
( attribute speci\336es the position of the tab stop, as measured from the left mar) 105.64 736.95 T |
5430 |
|
|
(gin in) 472.84 736.95 T |
5431 |
|
|
-0.13 (terms of the width of a capital M.) 72 722.95 P |
5432 |
|
|
0 10 Q |
5433 |
|
|
-0.11 (1) 231.62 727.75 P |
5434 |
|
|
0 12 Q |
5435 |
|
|
-0.13 ( The) 236.62 722.95 P |
5436 |
|
|
2 10 Q |
5437 |
|
|
-0.27 (ALIGN) 260.99 722.95 P |
5438 |
|
|
0 12 Q |
5439 |
|
|
-0.13 ( attribute can be) 290.98 722.95 P |
5440 |
|
|
2 10 Q |
5441 |
|
|
-0.27 (LEFT) 370.38 722.95 P |
5442 |
|
|
0 12 Q |
5443 |
|
|
-0.13 (,) 393.48 722.95 P |
5444 |
|
|
2 10 Q |
5445 |
|
|
-0.27 (CENTER) 399.34 722.95 P |
5446 |
|
|
0 12 Q |
5447 |
|
|
-0.13 ( or) 435.32 722.95 P |
5448 |
|
|
2 10 Q |
5449 |
|
|
-0.27 (RIGHT) 451.04 722.95 P |
5450 |
|
|
0 12 Q |
5451 |
|
|
-0.13 (, default-) 480.13 722.95 P |
5452 |
|
|
-0.22 (ing to) 72 708.95 P |
5453 |
|
|
2 10 Q |
5454 |
|
|
-0.44 (LEFT) 102.22 708.95 P |
5455 |
|
|
0 12 Q |
5456 |
|
|
-0.22 (. These have the conventional meaning as used on most word processors. If greater) 125.32 708.95 P |
5457 |
|
|
(control over fonts and layout is needed then authors should make a hypertext link to a docu-) 72 694.95 T |
5458 |
|
|
(ment written in a page description format like Adobe\325) 72 680.95 T |
5459 |
|
|
(s PDF) 329.82 680.95 T |
5460 |
|
|
(.) 358.52 680.95 T |
5461 |
|
|
-0.26 (For computer output or plain text \336les, you should use the PRE element which is rendered in a) 72 661.95 P |
5462 |
|
|
(\336xed pitch font. The following is part of the man page for the Unix ls command:) 72 647.95 T |
5463 |
|
|
2 10 Q |
5464 |
|
|
(<PRE>) 90 630.28 T |
5465 |
|
|
( The next 9 characters are interpreted as three sets of three) 90 618.28 T |
5466 |
|
|
( bits each which identify access permissions for owner,) 90 606.28 T |
5467 |
|
|
( group, and others as follows:) 90 594.28 T |
5468 |
|
|
( +------------------ 0400 read by owner \050<B>r</B> or <B>-</B>\051) 90 570.28 T |
5469 |
|
|
( | +---------------- 0200 write by owner \050<B>w</B> or <B>-</B>\051) 90 558.28 T |
5470 |
|
|
( | | +-------------- 0100 execute \050search directory\051 by owner) 90 546.28 T |
5471 |
|
|
( | | |) 90 534.28 T |
5472 |
|
|
(\050<B>x</B>, <B>s</B>, <B>S</N>, or <B>-</B>\051) 243 534.28 T |
5473 |
|
|
( | | | +------------ 0040 read by group \050<B>r</B> or <B>-</B>\051) 90 522.28 T |
5474 |
|
|
( | | | | +---------- 0020 write by group \050<B>w</B> or <B>-</B>\051) 90 510.28 T |
5475 |
|
|
( | | | | | +-------- 0010 execute/search by group) 90 498.28 T |
5476 |
|
|
( | | | | | |) 90 486.28 T |
5477 |
|
|
(\050<B>x</B>, <B>s</B>, <B>S</B>, or <B>-</B>\051) 243 486.28 T |
5478 |
|
|
( | | | | | | +------ 0004 read by others \050<B>r</B> or <B>-</B>\051) 90 474.28 T |
5479 |
|
|
( | | | | | | | +---- 0002 write by others \050<B>w</B> or <B>-</B>\051) 90 462.28 T |
5480 |
|
|
( | | | | | | | | +-- 0001 execute/search by others) 90 450.28 T |
5481 |
|
|
( | | | | | | | | |) 90 438.28 T |
5482 |
|
|
(\050<B>x</B>, <B>t</B>, <B>T</B>, or <B>-</B>\051) 243 438.28 T |
5483 |
|
|
( | | | | | | | | |) 90 426.28 T |
5484 |
|
|
( r w x r w x r w x) 90 414.28 T |
5485 |
|
|
(</PRE>) 90 390.28 T |
5486 |
|
|
0 12 Q |
5487 |
|
|
(This is rendered as) 72 371.95 T |
5488 |
|
|
2 10 Q |
5489 |
|
|
( The next 9 characters are interpreted as three sets of three) 90 354.28 T |
5490 |
|
|
( bits each which identify access permissions for owner,) 90 342.28 T |
5491 |
|
|
( group, and others as follows:) 90 330.28 T |
5492 |
|
|
( +------------------ 0400 read by owner \050) 90 306.28 T |
5493 |
|
|
8 F |
5494 |
|
|
(r) 335.86 306.28 T |
5495 |
|
|
2 F |
5496 |
|
|
( or) 341.86 306.28 T |
5497 |
|
|
8 F |
5498 |
|
|
(-) 365.85 306.28 T |
5499 |
|
|
2 F |
5500 |
|
|
(\051) 371.85 306.28 T |
5501 |
|
|
( | +---------------- 0200 write by owner \050) 90 294.28 T |
5502 |
|
|
8 F |
5503 |
|
|
(w) 341.86 294.28 T |
5504 |
|
|
2 F |
5505 |
|
|
( or) 347.86 294.28 T |
5506 |
|
|
8 F |
5507 |
|
|
(-) 371.85 294.28 T |
5508 |
|
|
2 F |
5509 |
|
|
(\051) 377.84 294.28 T |
5510 |
|
|
( | | +-------------- 0100 execute \050search directory\051 by owner) 90 282.28 T |
5511 |
|
|
( | | |) 90 270.28 T |
5512 |
|
|
(\050) 243 270.28 T |
5513 |
|
|
8 F |
5514 |
|
|
(x) 249 270.28 T |
5515 |
|
|
2 F |
5516 |
|
|
(,) 254.99 270.28 T |
5517 |
|
|
8 F |
5518 |
|
|
(s) 266.99 270.28 T |
5519 |
|
|
2 F |
5520 |
|
|
(,) 272.98 270.28 T |
5521 |
|
|
8 F |
5522 |
|
|
(S) 284.98 270.28 T |
5523 |
|
|
2 F |
5524 |
|
|
(, or) 290.97 270.28 T |
5525 |
|
|
8 F |
5526 |
|
|
(-) 320.96 270.28 T |
5527 |
|
|
2 F |
5528 |
|
|
(\051) 326.95 270.28 T |
5529 |
|
|
( | | | +------------ 0040 read by group \050) 90 258.28 T |
5530 |
|
|
8 F |
5531 |
|
|
(r) 335.86 258.28 T |
5532 |
|
|
2 F |
5533 |
|
|
( or) 341.86 258.28 T |
5534 |
|
|
8 F |
5535 |
|
|
(-) 365.85 258.28 T |
5536 |
|
|
2 F |
5537 |
|
|
(\051) 371.85 258.28 T |
5538 |
|
|
( | | | | +---------- 0020 write by group \050) 90 246.28 T |
5539 |
|
|
8 F |
5540 |
|
|
(w) 341.86 246.28 T |
5541 |
|
|
2 F |
5542 |
|
|
( or) 347.86 246.28 T |
5543 |
|
|
8 F |
5544 |
|
|
(-) 371.85 246.28 T |
5545 |
|
|
2 F |
5546 |
|
|
(\051) 377.84 246.28 T |
5547 |
|
|
( | | | | | +-------- 0010 execute/search by group) 90 234.28 T |
5548 |
|
|
( | | | | | |) 90 222.28 T |
5549 |
|
|
(\050) 243 222.28 T |
5550 |
|
|
8 F |
5551 |
|
|
(x) 249 222.28 T |
5552 |
|
|
2 F |
5553 |
|
|
(,) 254.99 222.28 T |
5554 |
|
|
8 F |
5555 |
|
|
(s) 266.99 222.28 T |
5556 |
|
|
2 F |
5557 |
|
|
(,) 272.98 222.28 T |
5558 |
|
|
8 F |
5559 |
|
|
(S) 284.98 222.28 T |
5560 |
|
|
2 F |
5561 |
|
|
(, or) 290.97 222.28 T |
5562 |
|
|
8 F |
5563 |
|
|
(-) 320.96 222.28 T |
5564 |
|
|
2 F |
5565 |
|
|
(\051) 326.95 222.28 T |
5566 |
|
|
( | | | | | | +------ 0004 read by others \050) 90 210.28 T |
5567 |
|
|
8 F |
5568 |
|
|
(r) 341.86 210.28 T |
5569 |
|
|
2 F |
5570 |
|
|
( or) 347.86 210.28 T |
5571 |
|
|
8 F |
5572 |
|
|
(-) 371.85 210.28 T |
5573 |
|
|
2 F |
5574 |
|
|
(\051) 377.84 210.28 T |
5575 |
|
|
( | | | | | | | +---- 0002 write by others \050) 90 198.28 T |
5576 |
|
|
8 F |
5577 |
|
|
(w) 347.86 198.28 T |
5578 |
|
|
2 F |
5579 |
|
|
( or) 353.86 198.28 T |
5580 |
|
|
8 F |
5581 |
|
|
(-) 377.84 198.28 T |
5582 |
|
|
2 F |
5583 |
|
|
(\051) 383.84 198.28 T |
5584 |
|
|
( | | | | | | | | +-- 0001 execute/search by others) 90 186.28 T |
5585 |
|
|
( | | | | | | | | |) 90 174.28 T |
5586 |
|
|
(\050) 243 174.28 T |
5587 |
|
|
8 F |
5588 |
|
|
(x) 249 174.28 T |
5589 |
|
|
2 F |
5590 |
|
|
(,) 254.99 174.28 T |
5591 |
|
|
8 F |
5592 |
|
|
(t) 266.99 174.28 T |
5593 |
|
|
2 F |
5594 |
|
|
(,) 272.98 174.28 T |
5595 |
|
|
8 F |
5596 |
|
|
(T) 284.98 174.28 T |
5597 |
|
|
2 F |
5598 |
|
|
(, or) 290.97 174.28 T |
5599 |
|
|
8 F |
5600 |
|
|
(-) 320.96 174.28 T |
5601 |
|
|
2 F |
5602 |
|
|
(\051) 326.95 174.28 T |
5603 |
|
|
( | | | | | | | | |) 90 162.28 T |
5604 |
|
|
( r w x r w x r w x) 90 150.28 T |
5605 |
|
|
72 95.05 523.3 110.03 C |
5606 |
|
|
81 108.01 225 108.01 2 L |
5607 |
|
|
0.5 H |
5608 |
|
|
2 Z |
5609 |
|
|
0 X |
5610 |
|
|
0 K |
5611 |
|
|
N |
5612 |
|
|
0 -24.95 595.3 816.95 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 88.39 P |
5617 |
|
|
FMENDPAGE |
5618 |
|
|
%%EndPage: "27" 32 |
5619 |
|
|
%%Page: "28" 32 |
5620 |
|
|
595.3 792 0 FMBEGINPAGE |
5621 |
|
|
0 10 Q |
5622 |
|
|
0 X |
5623 |
|
|
0 K |
5624 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
5625 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
5626 |
|
|
(28) 292.65 63.28 T |
5627 |
|
|
0 12 Q |
5628 |
|
|
(The SEE ALSO section of the Unix manual pages can be processed to make references to) 72 736.95 T |
5629 |
|
|
(other manual pages into hypertext buttons using the) 72 722.95 T |
5630 |
|
|
2 10 Q |
5631 |
|
|
(<A>) 323.18 722.95 T |
5632 |
|
|
0 12 Q |
5633 |
|
|
( element \050see section 5.2\051. The exam-) 341.17 722.95 T |
5634 |
|
|
(ple shows how character emphasis can be added to literal or preformatted text.) 72 708.95 T |
5635 |
|
|
1 14 Q |
5636 |
|
|
(12) 72 679.61 T |
5637 |
|
|
(Mathematical Equations) 90 679.61 T |
5638 |
|
|
0 12 Q |
5639 |
|
|
(Currently) 72 659.95 T |
5640 |
|
|
(, the best way of including equations in HTML documents is to \336rst write the docu-) 117.19 659.95 T |
5641 |
|
|
-0.35 (ment in) 72 645.95 P |
5642 |
|
|
4 F |
5643 |
|
|
-0.35 (LaT) 110.61 645.95 P |
5644 |
|
|
-0.35 (eX) 128.84 645.95 P |
5645 |
|
|
0 F |
5646 |
|
|
-0.35 ( and then use the) 141.49 645.95 P |
5647 |
|
|
4 F |
5648 |
|
|
-0.35 (latex2html) 223.33 645.95 P |
5649 |
|
|
0 F |
5650 |
|
|
-0.35 ( \336lter to create the corresponding HTML document,) 273.97 645.95 P |
5651 |
|
|
(together with the equations as a number of bitmap \336les) 72 631.95 T |
5652 |
|
|
0 10 Q |
5653 |
|
|
(1) 335.49 636.75 T |
5654 |
|
|
0 12 Q |
5655 |
|
|
(. The previous draft of the HTML+) 340.49 631.95 T |
5656 |
|
|
-0.27 (speci\336cation described a way of embedding LaT) 72 617.95 P |
5657 |
|
|
-0.27 (eX equations in HTML+ documents. Unfortu-) 302.69 617.95 P |
5658 |
|
|
(nately) 72 603.95 T |
5659 |
|
|
(, it now seems too cumbersome to form a practical solution, and has been dropped.) 100.53 603.95 T |
5660 |
|
|
(The following is a preliminary proposal for representing equations directly as HTML+ using) 72 584.95 T |
5661 |
|
|
-0.35 (an SGML-based notation, inspired by the approach taken by LaT) 72 570.95 P |
5662 |
|
|
-0.35 (eX. It is intended to cover the) 380.49 570.95 P |
5663 |
|
|
(majority of users needs, rather than aiming for complete coverage. This makes it practical to) 72 556.95 T |
5664 |
|
|
(use a simpli\336ed notation compared with richer notations, e.g. the ISO 12083 Maths DTD. An) 72 542.95 T |
5665 |
|
|
(experimental browser supporting the) 72 528.95 T |
5666 |
|
|
2 10 Q |
5667 |
|
|
(MATH) 251.21 528.95 T |
5668 |
|
|
0 12 Q |
5669 |
|
|
( element is being developed at CERN.) 275.19 528.95 T |
5670 |
|
|
(Consider the equation:) 72 509.95 T |
5671 |
|
|
(This can be represented as:) 72 409.95 T |
5672 |
|
|
2 10 Q |
5673 |
|
|
(<math>) 90 392.28 T |
5674 |
|
|
(H\050s\051 = ∫<sub>0</sub><sup>&inf) 108 380.28 T |
5675 |
|
|
(in;</sup> e<sup>-st</sup> h\050t\051 dt) 305.89 380.28 T |
5676 |
|
|
(</math>) 90 368.28 T |
5677 |
|
|
0 12 Q |
5678 |
|
|
(The mathematical symbols are given with their standard ISO entity names.) 72 349.95 T |
5679 |
|
|
2 10 Q |
5680 |
|
|
(SUB) 433.76 349.95 T |
5681 |
|
|
0 12 Q |
5682 |
|
|
( and) 451.75 349.95 T |
5683 |
|
|
2 10 Q |
5684 |
|
|
(SUP) 475.06 349.95 T |
5685 |
|
|
0 12 Q |
5686 |
|
|
( are) 493.05 349.95 T |
5687 |
|
|
(used to specify subscripts and superscripts. For integral signs and related operators, the sub-) 72 335.95 T |
5688 |
|
|
-0.46 (script/superscript text is centered over the symbol, otherwise it appears to the right as shown in) 72 321.95 P |
5689 |
|
|
(the preceding example. The) 72 307.95 T |
5690 |
|
|
2 10 Q |
5691 |
|
|
(BOX) 208.22 307.95 T |
5692 |
|
|
0 12 Q |
5693 |
|
|
( and) 226.21 307.95 T |
5694 |
|
|
2 10 Q |
5695 |
|
|
(OVER) 249.53 307.95 T |
5696 |
|
|
0 12 Q |
5697 |
|
|
( elements allow you to de\336ne more complex equa-) 273.51 307.95 T |
5698 |
|
|
(tions, as in:) 72 293.95 T |
5699 |
|
|
(which is represented by:) 72 193.95 T |
5700 |
|
|
2 10 Q |
5701 |
|
|
(<math>) 90 176.28 T |
5702 |
|
|
(C <box>dV<sub>out</sub><over>dt</box> = I<sub>b</sub>) 108 164.28 T |
5703 |
|
|
(&tanh;\050<box>κ\050V<sub>in</sub>-V<sub>out</sub>\051<over>2</box>\051) 108 152.28 T |
5704 |
|
|
(</math>) 90 140.28 T |
5705 |
|
|
72 107.05 523.3 122.03 C |
5706 |
|
|
81 120.01 225 120.01 2 L |
5707 |
|
|
0.5 H |
5708 |
|
|
2 Z |
5709 |
|
|
0 X |
5710 |
|
|
0 K |
5711 |
|
|
N |
5712 |
|
|
0 -24.95 595.3 816.95 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 100.39 T |
5717 |
|
|
(clients with text only displays, i.e. the) 90 88.39 T |
5718 |
|
|
4 F |
5719 |
|
|
(LaT) 243.8 88.39 T |
5720 |
|
|
(eX) 259 88.39 T |
5721 |
|
|
0 F |
5722 |
|
|
( expressions, or the) 269.54 88.39 T |
5723 |
|
|
4 F |
5724 |
|
|
(Mathematica) 349.21 88.39 T |
5725 |
|
|
0 F |
5726 |
|
|
( equivalent.) 401.95 88.39 T |
5727 |
|
|
72 83.05 523.3 744.95 C |
5728 |
|
|
78 419.95 517.3 491.95 C |
5729 |
|
|
4 14 Q |
5730 |
|
|
0 X |
5731 |
|
|
0 K |
5732 |
|
|
(H) 234.35 453.45 T |
5733 |
|
|
(s) 253.52 453.45 T |
5734 |
|
|
9 F |
5735 |
|
|
(\050) 247.61 453.45 T |
5736 |
|
|
(\051) 259.71 453.45 T |
5737 |
|
|
4 F |
5738 |
|
|
(e) 297.93 453.45 T |
5739 |
|
|
4 12 Q |
5740 |
|
|
(s) 311.19 460.15 T |
5741 |
|
|
(t) 316.56 460.15 T |
5742 |
|
|
9 F |
5743 |
|
|
(-) 304.15 460.15 T |
5744 |
|
|
4 14 Q |
5745 |
|
|
(h) 320.72 453.45 T |
5746 |
|
|
(t) 336.78 453.45 T |
5747 |
|
|
9 F |
5748 |
|
|
(\050) 330.88 453.45 T |
5749 |
|
|
(\051) 341.42 453.45 T |
5750 |
|
|
4 F |
5751 |
|
|
(d) 349.24 453.45 T |
5752 |
|
|
(t) 357.06 453.45 T |
5753 |
|
|
0 12 Q |
5754 |
|
|
(0) 289.66 433.02 T |
5755 |
|
|
9 F |
5756 |
|
|
(\245) 288.38 475.23 T |
5757 |
|
|
9 24 Q |
5758 |
|
|
(\362) 289.37 446.77 T |
5759 |
|
|
9 14 Q |
5760 |
|
|
(=) 273.7 453.45 T |
5761 |
|
|
72 83.05 523.3 744.95 C |
5762 |
|
|
0 -24.95 595.3 816.95 C |
5763 |
|
|
72 83.05 523.3 744.95 C |
5764 |
|
|
78 203.95 517.3 275.95 C |
5765 |
|
|
4 14 Q |
5766 |
|
|
0 X |
5767 |
|
|
0 K |
5768 |
|
|
(C) 193.55 237.45 T |
5769 |
|
|
(d) 204.87 250.3 T |
5770 |
|
|
(V) 212.69 250.3 T |
5771 |
|
|
4 12 Q |
5772 |
|
|
(o) 221.78 244.94 T |
5773 |
|
|
(u) 228.48 244.94 T |
5774 |
|
|
(t) 235.18 244.94 T |
5775 |
|
|
4 14 Q |
5776 |
|
|
(d) 215.84 228.9 T |
5777 |
|
|
(t) 223.66 228.9 T |
5778 |
|
|
(I) 261.37 237.45 T |
5779 |
|
|
4 12 Q |
5780 |
|
|
(b) 266.57 232.09 T |
5781 |
|
|
9 14 Q |
5782 |
|
|
(k) 308.71 250.3 T |
5783 |
|
|
4 F |
5784 |
|
|
(V) 325.46 250.3 T |
5785 |
|
|
4 12 Q |
5786 |
|
|
(i) 334.55 244.94 T |
5787 |
|
|
(n) 338.59 244.94 T |
5788 |
|
|
4 14 Q |
5789 |
|
|
(V) 359.27 250.3 T |
5790 |
|
|
4 12 Q |
5791 |
|
|
(o) 368.36 244.94 T |
5792 |
|
|
(u) 375.06 244.94 T |
5793 |
|
|
(t) 381.76 244.94 T |
5794 |
|
|
9 14 Q |
5795 |
|
|
(-) 348.09 250.3 T |
5796 |
|
|
(\050) 319.55 250.3 T |
5797 |
|
|
(\051) 385.85 250.3 T |
5798 |
|
|
0 F |
5799 |
|
|
(2) 347.28 228.93 T |
5800 |
|
|
9 F |
5801 |
|
|
(\050) 301.64 237.45 T |
5802 |
|
|
(\051) 394.75 237.45 T |
5803 |
|
|
0 F |
5804 |
|
|
(t) 274.21 237.45 T |
5805 |
|
|
(a) 278.1 237.45 T |
5806 |
|
|
(n) 284.31 237.45 T |
5807 |
|
|
(h) 291.31 237.45 T |
5808 |
|
|
9 F |
5809 |
|
|
(=) 246.69 237.45 T |
5810 |
|
|
204.87 240.47 238.27 240.47 2 L |
5811 |
|
|
0.33 H |
5812 |
|
|
0 Z |
5813 |
|
|
N |
5814 |
|
|
308.71 240.47 392.59 240.47 2 L |
5815 |
|
|
N |
5816 |
|
|
72 83.05 523.3 744.95 C |
5817 |
|
|
0 -24.95 595.3 816.95 C |
5818 |
|
|
FMENDPAGE |
5819 |
|
|
%%EndPage: "28" 33 |
5820 |
|
|
%%Page: "29" 33 |
5821 |
|
|
595.3 792 0 FMBEGINPAGE |
5822 |
|
|
0 10 Q |
5823 |
|
|
0 X |
5824 |
|
|
0 K |
5825 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
5826 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
5827 |
|
|
(29) 292.65 63.28 T |
5828 |
|
|
0 12 Q |
5829 |
|
|
(The) 72 736.95 T |
5830 |
|
|
2 10 Q |
5831 |
|
|
(BOX) 93.65 736.95 T |
5832 |
|
|
0 12 Q |
5833 |
|
|
( element can be used to generally group items and can be thought of as non-printing) 111.64 736.95 T |
5834 |
|
|
(parentheses. The) 72 722.95 T |
5835 |
|
|
2 10 Q |
5836 |
|
|
(OVER) 155.59 722.95 T |
5837 |
|
|
0 12 Q |
5838 |
|
|
( element is optional and divides the box into numerator and denomina-) 179.58 722.95 T |
5839 |
|
|
(tor) 72 708.95 T |
5840 |
|
|
(. The) 84.67 708.95 T |
5841 |
|
|
2 10 Q |
5842 |
|
|
(ARRAY) 112.31 708.95 T |
5843 |
|
|
0 12 Q |
5844 |
|
|
( element is used to specify arrays for expressions like:) 142.29 708.95 T |
5845 |
|
|
(The) 72 594.95 T |
5846 |
|
|
2 10 Q |
5847 |
|
|
(ARRAY) 93.65 594.95 T |
5848 |
|
|
0 12 Q |
5849 |
|
|
( element has a single attribute) 123.63 594.95 T |
5850 |
|
|
2 10 Q |
5851 |
|
|
(ALIGN) 269.53 594.95 T |
5852 |
|
|
0 12 Q |
5853 |
|
|
( which speci\336es the number of columns and) 299.52 594.95 T |
5854 |
|
|
(the alignment of items within the columns. For each column there is a single letter that speci-) 72 580.95 T |
5855 |
|
|
-0.4 (\336es how items in that column should be positioned:) 72 566.95 P |
5856 |
|
|
2 10 Q |
5857 |
|
|
-0.81 (c) 318.57 566.95 P |
5858 |
|
|
0 12 Q |
5859 |
|
|
-0.4 ( for centered,) 324.56 566.95 P |
5860 |
|
|
2 10 Q |
5861 |
|
|
-0.81 (l) 389.95 566.95 P |
5862 |
|
|
0 12 Q |
5863 |
|
|
-0.4 ( for \337ush left or) 395.95 566.95 P |
5864 |
|
|
2 10 Q |
5865 |
|
|
-0.81 (r) 472.2 566.95 P |
5866 |
|
|
0 12 Q |
5867 |
|
|
-0.4 ( for \337ush) 478.2 566.95 P |
5868 |
|
|
(right. Each item in the array must follow an) 72 552.95 T |
5869 |
|
|
2 10 Q |
5870 |
|
|
(<ITEM>) 284.52 552.95 T |
5871 |
|
|
0 12 Q |
5872 |
|
|
( element.) 320.5 552.95 T |
5873 |
|
|
(The preceding example is represented by:) 72 533.95 T |
5874 |
|
|
2 10 Q |
5875 |
|
|
(<math>) 90 516.28 T |
5876 |
|
|
(\050<array align=\323c\323> <item>) 108 504.28 T |
5877 |
|
|
(&ldet;<array align=\323cc\323>) 126 492.28 T |
5878 |
|
|
(<item>x<sub>11</sub>) 144 480.28 T |
5879 |
|
|
(<item>x<sub>12</sub>) 144 468.28 T |
5880 |
|
|
(<item>x<sub>21</sub>) 144 456.28 T |
5881 |
|
|
(<item>x<sub>22</sub>) 144 444.28 T |
5882 |
|
|
(</array><rd>&rdet;) 126 432.28 T |
5883 |
|
|
(<item> y <item> z) 126 420.28 T |
5884 |
|
|
(</array>\051) 108 408.28 T |
5885 |
|
|
(</math>) 90 396.28 T |
5886 |
|
|
0 12 Q |
5887 |
|
|
-0.31 (The browser is responsible for working out the vertical and horizontal spacing required for the) 72 377.95 P |
5888 |
|
|
-0.02 (array) 72 363.95 P |
5889 |
|
|
-0.02 (. Parentheses) 95.86 363.95 P |
5890 |
|
|
0 10 Q |
5891 |
|
|
-0.02 (1) 158.45 368.75 P |
5892 |
|
|
0 12 Q |
5893 |
|
|
-0.02 ( are stretched to match the size of the array) 163.45 363.95 P |
5894 |
|
|
-0.02 (. Arrays can be used only in the) 368.61 363.95 P |
5895 |
|
|
(context of the) 72 349.95 T |
5896 |
|
|
2 10 Q |
5897 |
|
|
(MATH) 140.95 349.95 T |
5898 |
|
|
0 12 Q |
5899 |
|
|
( element. The) 164.94 349.95 T |
5900 |
|
|
2 10 Q |
5901 |
|
|
(TABLE) 233.55 349.95 T |
5902 |
|
|
0 12 Q |
5903 |
|
|
( element should be used for other contexts.) 263.54 349.95 T |
5904 |
|
|
-0.23 (Spaces are signi\336cant within the) 72 330.95 P |
5905 |
|
|
2 10 Q |
5906 |
|
|
-0.47 (MATH) 229.07 330.95 P |
5907 |
|
|
0 12 Q |
5908 |
|
|
-0.23 ( element, and used for disambiguation, as can be seen in) 253.05 330.95 P |
5909 |
|
|
(the following two examples:) 72 316.95 T |
5910 |
|
|
(Authors can adjust the default horizontal spacing with the ISO entities:) 72 206.95 T |
5911 |
|
|
2 10 Q |
5912 |
|
|
( ) 415.44 206.95 T |
5913 |
|
|
0 12 Q |
5914 |
|
|
( for thin) 463.42 206.95 T |
5915 |
|
|
-0.07 (space \0501/6 em\051 and) 72 192.95 P |
5916 |
|
|
2 10 Q |
5917 |
|
|
-0.15 ( ) 165.63 192.95 P |
5918 |
|
|
0 12 Q |
5919 |
|
|
-0.07 ( for hair space. Horizontal, diagonal and vertical ellipsis are pos-) 213.6 192.95 P |
5920 |
|
|
(sible with) 72 178.95 T |
5921 |
|
|
2 10 Q |
5922 |
|
|
(…) 121.98 178.95 T |
5923 |
|
|
(&dellip;) 172.95 178.95 T |
5924 |
|
|
0 12 Q |
5925 |
|
|
( and) 220.92 178.95 T |
5926 |
|
|
2 10 Q |
5927 |
|
|
(⋮) 244.24 178.95 T |
5928 |
|
|
0 12 Q |
5929 |
|
|
( respectively) 292.21 178.95 T |
5930 |
|
|
(. Common functions like) 352.38 178.95 T |
5931 |
|
|
2 10 Q |
5932 |
|
|
(sin) 474.65 178.95 T |
5933 |
|
|
0 12 Q |
5934 |
|
|
(,) 492.64 178.95 T |
5935 |
|
|
2 10 Q |
5936 |
|
|
(log) 498.64 178.95 T |
5937 |
|
|
0 12 Q |
5938 |
|
|
(and) 72 164.95 T |
5939 |
|
|
2 10 Q |
5940 |
|
|
(tanh) 92.32 164.95 T |
5941 |
|
|
0 12 Q |
5942 |
|
|
( should be rendered in a non-italic font. These functions are de\336ned by their entity) 116.3 164.95 T |
5943 |
|
|
(namesakes. Additional elements are needed to represent roots and for over and under lining.) 72 150.95 T |
5944 |
|
|
72 107.05 523.3 122.03 C |
5945 |
|
|
81 120.01 225 120.01 2 L |
5946 |
|
|
0.5 H |
5947 |
|
|
2 Z |
5948 |
|
|
0 X |
5949 |
|
|
0 K |
5950 |
|
|
N |
5951 |
|
|
0 -24.95 595.3 816.95 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 100.39 T |
5956 |
|
|
(ers//EN\323. Note that) 90 88.39 T |
5957 |
|
|
2 F |
5958 |
|
|
(&ldet;) 169.39 88.39 T |
5959 |
|
|
0 F |
5960 |
|
|
( and) 205.37 88.39 T |
5961 |
|
|
2 F |
5962 |
|
|
(&rdet;) 224.8 88.39 T |
5963 |
|
|
0 F |
5964 |
|
|
( are used when the \322|\323 symbol is used for parentheses.) 260.78 88.39 T |
5965 |
|
|
72 83.05 523.3 744.95 C |
5966 |
|
|
78.01 609.95 517.28 690.95 C |
5967 |
|
|
4 12 Q |
5968 |
|
|
0 X |
5969 |
|
|
0 K |
5970 |
|
|
(x) 282.14 669.43 T |
5971 |
|
|
0 9 Q |
5972 |
|
|
(1) 287.92 665.66 T |
5973 |
|
|
(1) 292.42 665.66 T |
5974 |
|
|
4 12 Q |
5975 |
|
|
(x) 300.91 669.43 T |
5976 |
|
|
0 9 Q |
5977 |
|
|
(1) 306.7 665.66 T |
5978 |
|
|
(2) 311.19 665.66 T |
5979 |
|
|
4 12 Q |
5980 |
|
|
(x) 282.14 651.51 T |
5981 |
|
|
0 9 Q |
5982 |
|
|
(2) 287.92 647.75 T |
5983 |
|
|
(1) 292.42 647.75 T |
5984 |
|
|
4 12 Q |
5985 |
|
|
(x) 300.91 651.51 T |
5986 |
|
|
0 9 Q |
5987 |
|
|
(2) 306.7 647.75 T |
5988 |
|
|
(2) 311.19 647.75 T |
5989 |
|
|
4 12 Q |
5990 |
|
|
(y) 295.75 631.59 T |
5991 |
|
|
(z) 296.08 616.92 T |
5992 |
|
|
9 F |
5993 |
|
|
(\350) 265.04 621.76 T |
5994 |
|
|
(\370) 326.29 621.76 T |
5995 |
|
|
(\347) 265.04 633.89 T |
5996 |
|
|
(\367) 326.29 633.89 T |
5997 |
|
|
(\347) 265.04 646 T |
5998 |
|
|
(\367) 326.29 646 T |
5999 |
|
|
(\347) 265.04 658.12 T |
6000 |
|
|
(\367) 326.29 658.12 T |
6001 |
|
|
(\346) 265.04 672.72 T |
6002 |
|
|
(\366) 326.29 672.72 T |
6003 |
|
|
275.64 644.8 275.64 683.63 2 L |
6004 |
|
|
0.33 H |
6005 |
|
|
0 Z |
6006 |
|
|
N |
6007 |
|
|
320.18 644.8 320.18 683.63 2 L |
6008 |
|
|
N |
6009 |
|
|
72 83.05 523.3 744.95 C |
6010 |
|
|
0 -24.95 595.3 816.95 C |
6011 |
|
|
72 83.05 523.3 744.95 C |
6012 |
|
|
78 221.95 517.3 312.95 C |
6013 |
|
|
4 12 Q |
6014 |
|
|
0 X |
6015 |
|
|
0 K |
6016 |
|
|
(x) 176.61 240.7 T |
6017 |
|
|
4 9 Q |
6018 |
|
|
(j) 174.11 246.75 T |
6019 |
|
|
(i) 174.11 236.08 T |
6020 |
|
|
9 18 Q |
6021 |
|
|
(\362) 168.18 236.01 T |
6022 |
|
|
2 10 Q |
6023 |
|
|
(∫ <sub>i</sub><sup>j></sup>x) 255.1 240.95 T |
6024 |
|
|
4 12 Q |
6025 |
|
|
(x) 173.37 281.03 T |
6026 |
|
|
4 9 Q |
6027 |
|
|
(i) 168.65 265.27 T |
6028 |
|
|
(j) 168.65 297.18 T |
6029 |
|
|
9 18 Q |
6030 |
|
|
(\362) 167.44 276.34 T |
6031 |
|
|
2 10 Q |
6032 |
|
|
(∫<sub>i</sub><sup>j</sup> x) 257.77 280.36 T |
6033 |
|
|
72 83.05 523.3 744.95 C |
6034 |
|
|
0 -24.95 595.3 816.95 C |
6035 |
|
|
FMENDPAGE |
6036 |
|
|
%%EndPage: "29" 34 |
6037 |
|
|
%%Page: "30" 34 |
6038 |
|
|
595.3 792 0 FMBEGINPAGE |
6039 |
|
|
0 10 Q |
6040 |
|
|
0 X |
6041 |
|
|
0 K |
6042 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6043 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6044 |
|
|
(30) 292.65 63.28 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 736.95 P |
6047 |
|
|
(an existing convention such as) 72 722.95 T |
6048 |
|
|
4 F |
6049 |
|
|
(Mathematica) 221.57 722.95 T |
6050 |
|
|
0 F |
6051 |
|
|
(. Another is to write equations as they would be) 284.86 722.95 T |
6052 |
|
|
(spoken aloud. For GUI displays, browsers need to be able to show characters in at least two) 72 708.95 T |
6053 |
|
|
(point sizes as well as being able to stretch parentheses and integral signs etc. to various sizes.) 72 694.95 T |
6054 |
|
|
0 (The processing time needed to size and position symbols suggests that caching may be useful) 72 680.95 P |
6055 |
|
|
(to speed up subsequent scrolling and refresh operations.) 72 666.95 T |
6056 |
|
|
(Comments from mathematicians are welcomed. W) 72 647.95 T |
6057 |
|
|
(idespread support for formulae is likely to) 315.35 647.95 T |
6058 |
|
|
(be delayed until most platforms support the relevant symbols fonts \050or Unicode\051.) 72 633.95 T |
6059 |
|
|
1 14 Q |
6060 |
|
|
(13) 72 604.62 T |
6061 |
|
|
(Indexing) 90 604.62 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 584.95 P |
6064 |
|
|
(allows you to type in one or more keywords to see a list of matching topics. The ability to) 72 570.95 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 556.95 P |
6066 |
|
|
(out of the associated document. Full text indexes like W) 72 542.95 T |
6067 |
|
|
(AIS are easy to create, but don\325) 340.5 542.95 T |
6068 |
|
|
(t give) 491.82 542.95 T |
6069 |
|
|
(you this \337exibility since the index itself cannot be viewed directly) 72 528.95 T |
6070 |
|
|
(.) 387.69 528.95 T |
6071 |
|
|
(Generating a conventional index for a document is a skilled task, and HTML+ allows authors) 72 509.95 T |
6072 |
|
|
(to include directives for automatically creating hypertext indexes. These directives can be) 72 495.95 T |
6073 |
|
|
(included in many HTML+ elements, such as headers, paragraphs and character emphasis) 72 481.95 T |
6074 |
|
|
(using the) 72 467.95 T |
6075 |
|
|
2 10 Q |
6076 |
|
|
(INDEX) 118.64 467.95 T |
6077 |
|
|
0 12 Q |
6078 |
|
|
( attribute. This allows each such element to be referenced in the index under) 148.63 467.95 T |
6079 |
|
|
(primary or secondary keys, e.g.) 72 453.95 T |
6080 |
|
|
3 10 Q |
6081 |
|
|
(<h3 id=\323z23\323 index=\323Radiation damage/shielding from as dif) 90 436.28 T |
6082 |
|
|
(\336cult\323>Radiation shielding</h3>) 354.52 436.28 T |
6083 |
|
|
0 12 Q |
6084 |
|
|
(This can be used to generate an index like:) 72 417.95 T |
6085 |
|
|
(Radiation damage) 108 398.95 T |
6086 |
|
|
(classical tar) 135 384.95 T |
6087 |
|
|
(get theory) 191.07 384.95 T |
6088 |
|
|
(dominance of) 135 370.95 T |
6089 |
|
|
(in molecular mills) 135 356.95 T |
6090 |
|
|
(shielding from as dif) 135 342.95 T |
6091 |
|
|
(\336cult) 234.39 342.95 T |
6092 |
|
|
(simple lifetime model) 135 328.95 T |
6093 |
|
|
(track-structure lifetime model) 135 314.95 T |
6094 |
|
|
(Radicals) 108 300.95 T |
6095 |
|
|
4 F |
6096 |
|
|
(and so on ...) 135 286.95 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 267.95 P |
6099 |
|
|
(case you can either use secondary keys to disambiguate the references, as shown above, or) 72 253.95 T |
6100 |
|
|
(allow the indexing program to generate its own names for each reference, e.g. \050a\051, \050b\051, \050c\051, ...) 72 239.95 T |
6101 |
|
|
(The indexing program creates an HTML+ \336le that can then be linked to the documents it was) 72 220.95 T |
6102 |
|
|
(produced from. The program may also generate a list of references from occurrences of the) 72 206.95 T |
6103 |
|
|
2 10 Q |
6104 |
|
|
(CITE) 72 192.95 T |
6105 |
|
|
0 12 Q |
6106 |
|
|
( element. These can be simply ordered alphabetically) 95.99 192.95 T |
6107 |
|
|
(. Sophisticated bibliographic refer-) 350.34 192.95 T |
6108 |
|
|
(ences are beyond the scope of HTML+ as they require a much richer system of markup.) 72 178.95 T |
6109 |
|
|
1 14 Q |
6110 |
|
|
(14) 72 149.61 T |
6111 |
|
|
(Document declarations) 90 149.61 T |
6112 |
|
|
0 12 Q |
6113 |
|
|
(It is recommended that HTML+ documents start with the following external identi\336er) 72 129.95 T |
6114 |
|
|
0 10 Q |
6115 |
|
|
(1) 484.17 134.75 T |
6116 |
|
|
0 12 Q |
6117 |
|
|
(, indi-) 489.16 129.95 T |
6118 |
|
|
(cating that the document conforms to the HTML+ DTD. This will ensure that other SGML) 72 115.95 T |
6119 |
|
|
72 95.05 523.3 110.03 C |
6120 |
|
|
81 108.01 225 108.01 2 L |
6121 |
|
|
0.5 H |
6122 |
|
|
2 Z |
6123 |
|
|
0 X |
6124 |
|
|
0 K |
6125 |
|
|
N |
6126 |
|
|
0 -24.95 595.3 816.95 C |
6127 |
|
|
0 10 Q |
6128 |
|
|
0 X |
6129 |
|
|
0 K |
6130 |
|
|
(1. The of) 90 88.39 T |
6131 |
|
|
(\336cial identi\336er will be de\336ned when HTML+ reaches the status of an of) 126.18 88.39 T |
6132 |
|
|
(\336cial standard.) 413.1 88.39 T |
6133 |
|
|
FMENDPAGE |
6134 |
|
|
%%EndPage: "30" 35 |
6135 |
|
|
%%Page: "31" 35 |
6136 |
|
|
595.3 792 0 FMBEGINPAGE |
6137 |
|
|
0 10 Q |
6138 |
|
|
0 X |
6139 |
|
|
0 K |
6140 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6141 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6142 |
|
|
(31) 292.65 63.28 T |
6143 |
|
|
0 12 Q |
6144 |
|
|
(parsers can process HTML+ documents, without needing to include the DTD with each docu-) 72 736.95 T |
6145 |
|
|
(ment.) 72 722.95 T |
6146 |
|
|
2 10 Q |
6147 |
|
|
(<!DOCTYPE htmlplus PUBLIC \322-//Internet/RFC xxxx//EN\323>) 90 705.28 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 686.95 P |
6150 |
|
|
(or text elements:) 72 672.95 T |
6151 |
|
|
1 F |
6152 |
|
|
(14.1) 72 644.95 T |
6153 |
|
|
(HTMLPLUS) 99 644.95 T |
6154 |
|
|
0 F |
6155 |
|
|
-0.12 (This element if present must follow immediately after the) 72 625.95 P |
6156 |
|
|
2 10 Q |
6157 |
|
|
-0.23 (DOCTYPE) 350.45 625.95 P |
6158 |
|
|
0 12 Q |
6159 |
|
|
-0.12 ( declaration. It can be used) 392.43 625.95 P |
6160 |
|
|
(to disable form \336lling:) 72 611.95 T |
6161 |
|
|
2 10 Q |
6162 |
|
|
(<htmplus forms=off>) 90 594.28 T |
6163 |
|
|
0 12 Q |
6164 |
|
|
(Another idea is to provide a) 72 575.95 T |
6165 |
|
|
2 10 Q |
6166 |
|
|
(VERSION) 208.57 575.95 T |
6167 |
|
|
0 12 Q |
6168 |
|
|
( attribute for specifying the version number of HTML+) 250.55 575.95 T |
6169 |
|
|
(in used by this document. This would provide an alternative to including the version number) 72 561.95 T |
6170 |
|
|
(in the public name given with the) 72 547.95 T |
6171 |
|
|
2 10 Q |
6172 |
|
|
(DOCTYPE) 235.57 547.95 T |
6173 |
|
|
0 12 Q |
6174 |
|
|
( element.) 277.54 547.95 T |
6175 |
|
|
1 F |
6176 |
|
|
(14.2) 72 519.95 T |
6177 |
|
|
(The HEAD and BODY elements) 99 519.95 T |
6178 |
|
|
0 F |
6179 |
|
|
(These may be used to delimit the document declarations and document body with the HEAD) 72 500.95 T |
6180 |
|
|
(and BODY elements respectively) 72 486.95 T |
6181 |
|
|
(, e.g.) 232.1 486.95 T |
6182 |
|
|
2 10 Q |
6183 |
|
|
(<HEAD>) 90 469.28 T |
6184 |
|
|
(<ISINDEX>) 108 457.28 T |
6185 |
|
|
(<LINK REL=\323Next\323 HREF=\323...\323>) 108 445.28 T |
6186 |
|
|
(etc.) 108 433.28 T |
6187 |
|
|
(</HEAD>) 90 421.28 T |
6188 |
|
|
(<BODY>) 90 404.28 T |
6189 |
|
|
(body elements go here) 108 392.28 T |
6190 |
|
|
(</BODY>) 90 380.28 T |
6191 |
|
|
1 12 Q |
6192 |
|
|
(14.3) 72 352.95 T |
6193 |
|
|
(TITLE) 99 352.95 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 333.95 T |
6196 |
|
|
-0.32 (dow banner for window-based displays. There may be only one title in any node, and it should) 72 319.95 P |
6197 |
|
|
(identify the content of the node in a fairly wide context. No markup is permitted within title) 72 305.95 T |
6198 |
|
|
(text, although character entity references may be used for accented characters etc.) 72 291.95 T |
6199 |
|
|
1 F |
6200 |
|
|
(14.4) 72 263.95 T |
6201 |
|
|
(ISINDEX) 99 263.95 T |
6202 |
|
|
0 F |
6203 |
|
|
(The) 72 244.95 T |
6204 |
|
|
2 10 Q |
6205 |
|
|
(ISINDEX) 93.65 244.95 T |
6206 |
|
|
0 12 Q |
6207 |
|
|
( element speci\336es that the URL given with the) 135.62 244.95 T |
6208 |
|
|
2 10 Q |
6209 |
|
|
(HREF) 361.15 244.95 T |
6210 |
|
|
0 12 Q |
6211 |
|
|
( attribute is) 385.14 244.95 T |
6212 |
|
|
4 F |
6213 |
|
|
(sear) 442.11 244.95 T |
6214 |
|
|
(chable) 462.31 244.95 T |
6215 |
|
|
0 F |
6216 |
|
|
(, e.g.) 494.29 244.95 T |
6217 |
|
|
2 10 Q |
6218 |
|
|
(<ISINDEX HREF=\323glossary.html\323>) 72 230.95 T |
6219 |
|
|
0 12 Q |
6220 |
|
|
(. If the) 251.9 230.95 T |
6221 |
|
|
2 10 Q |
6222 |
|
|
(HREF) 286.54 230.95 T |
6223 |
|
|
0 12 Q |
6224 |
|
|
( attribute is missing, the URL for this docu-) 310.52 230.95 T |
6225 |
|
|
(ment is assumed. Servers may also indicate that the current document is) 72 216.95 T |
6226 |
|
|
4 F |
6227 |
|
|
(sear) 420.1 216.95 T |
6228 |
|
|
(chable) 440.31 216.95 T |
6229 |
|
|
0 F |
6230 |
|
|
( via the) 472.28 216.95 T |
6231 |
|
|
(HTTP headers returned with the document. Browsers should allow users to enter a search) 72 202.95 T |
6232 |
|
|
(string of one or more keywords. When the user presses the) 72 188.95 T |
6233 |
|
|
4 F |
6234 |
|
|
(Return) 356.45 188.95 T |
6235 |
|
|
0 F |
6236 |
|
|
( key) 389.09 188.95 T |
6237 |
|
|
(, the browser maps any) 408.63 188.95 T |
6238 |
|
|
(spaces to \322+\323, and appends this string to the designated URL and sends it to the server) 72 174.95 T |
6239 |
|
|
(, e.g.) 485.01 174.95 T |
6240 |
|
|
2 10 Q |
6241 |
|
|
(URL?word+word+word) 90 157.28 T |
6242 |
|
|
0 12 Q |
6243 |
|
|
(This mechanism has to a lar) 72 138.95 T |
6244 |
|
|
(ge extent been superseded by the) 206.03 138.95 T |
6245 |
|
|
2 10 Q |
6246 |
|
|
(FORM) 367.23 138.95 T |
6247 |
|
|
0 12 Q |
6248 |
|
|
( element. There are still) 391.22 138.95 T |
6249 |
|
|
(good reasons for keeping it in HTML+. In particular) 72 124.95 T |
6250 |
|
|
(, when reading a long document, having) 323.11 124.95 T |
6251 |
|
|
(the search \336eld always visible, makes it much easier for people to enter search strings, than if) 72 110.95 T |
6252 |
|
|
(they \336rst had to scroll to the part of the document which included a search form.) 72 96.95 T |
6253 |
|
|
FMENDPAGE |
6254 |
|
|
%%EndPage: "31" 36 |
6255 |
|
|
%%Page: "32" 36 |
6256 |
|
|
595.3 792 0 FMBEGINPAGE |
6257 |
|
|
0 10 Q |
6258 |
|
|
0 X |
6259 |
|
|
0 K |
6260 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6261 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6262 |
|
|
(32) 292.65 63.28 T |
6263 |
|
|
1 12 Q |
6264 |
|
|
(14.5) 72 736.95 T |
6265 |
|
|
(NEXTID) 99 736.95 T |
6266 |
|
|
0 F |
6267 |
|
|
(The) 72 717.95 T |
6268 |
|
|
2 10 Q |
6269 |
|
|
(NEXTID) 93.65 717.95 T |
6270 |
|
|
0 12 Q |
6271 |
|
|
( element is used by browsers that automatically generate identi\336ers for anchor) 129.63 717.95 T |
6272 |
|
|
(points. It speci\336es the next identi\336er to use, to avoid possible confusion with older \050deleted\051) 72 703.95 T |
6273 |
|
|
(values, e.g.) 72 689.95 T |
6274 |
|
|
2 10 Q |
6275 |
|
|
(<nextid n=\323id56\323>) 128.96 689.95 T |
6276 |
|
|
0 12 Q |
6277 |
|
|
(. The identi\336er should take the form of zero or more letters) 230.9 689.95 T |
6278 |
|
|
(followed by one or more digits. The numeric suf) 72 675.95 T |
6279 |
|
|
(\336x should be incremented to generate succes-) 304.62 675.95 T |
6280 |
|
|
(sive identi\336ers.) 72 661.95 T |
6281 |
|
|
1 F |
6282 |
|
|
(14.6) 72 633.95 T |
6283 |
|
|
(BASE) 99 633.95 T |
6284 |
|
|
0 F |
6285 |
|
|
(The) 72 614.95 T |
6286 |
|
|
2 10 Q |
6287 |
|
|
(HREF) 93.65 614.95 T |
6288 |
|
|
0 12 Q |
6289 |
|
|
( attribute of the) 117.64 614.95 T |
6290 |
|
|
2 10 Q |
6291 |
|
|
(BASE) 194.25 614.95 T |
6292 |
|
|
0 12 Q |
6293 |
|
|
( element gives the full URL of the document, and is added by) 218.24 614.95 T |
6294 |
|
|
(the browser when the user makes a local copy) 72 600.95 T |
6295 |
|
|
(. Keeping the full URL is essential when subse-) 291.71 600.95 T |
6296 |
|
|
(quently viewing the copied document as it allows relative URLs to be resolved to their origi-) 72 586.95 T |
6297 |
|
|
(nal references, e.g.) 72 572.95 T |
6298 |
|
|
2 10 Q |
6299 |
|
|
(<BASE HREF=) 165.24 572.95 T |
6300 |
|
|
6 F |
6301 |
|
|
(URL) 231.2 572.95 T |
6302 |
|
|
2 F |
6303 |
|
|
(>.) 249.19 572.95 T |
6304 |
|
|
1 12 Q |
6305 |
|
|
(14.7) 72 544.95 T |
6306 |
|
|
(LINK) 99 544.95 T |
6307 |
|
|
0 F |
6308 |
|
|
(This provides a means of describing the relationship between this document and other docu-) 72 525.95 T |
6309 |
|
|
(ments, and has the same attributes as the) 72 511.95 T |
6310 |
|
|
2 10 Q |
6311 |
|
|
(<A>) 269.53 511.95 T |
6312 |
|
|
0 12 Q |
6313 |
|
|
( element \050see section 5.2\051. A document can have) 287.52 511.95 T |
6314 |
|
|
-0.48 (multiple) 72 497.95 P |
6315 |
|
|
2 10 Q |
6316 |
|
|
-0.96 (LINK) 114.51 497.95 P |
6317 |
|
|
0 12 Q |
6318 |
|
|
-0.48 ( elements. T) 138.49 497.95 P |
6319 |
|
|
-0.48 (ypical uses are to indicate authorship, related indexes and glossaries,) 195.66 497.95 P |
6320 |
|
|
(older or more recent versions etc. Another use is to indicate a stylesheet that contains the) 72 483.95 T |
6321 |
|
|
(author) 72 469.95 T |
6322 |
|
|
(\325) 103.09 469.95 T |
6323 |
|
|
(s layout preferences, e.g. for headers and multi-columns displays. Links can also be) 106.42 469.95 T |
6324 |
|
|
-0.34 (used to indicate a static tree structure of documents with relationships such as \322parent\323, \322next\323) 72 455.95 P |
6325 |
|
|
(and \322previous\323, e.g.) 72 441.95 T |
6326 |
|
|
2 10 Q |
6327 |
|
|
(<LINK HREF=) 170.59 441.95 T |
6328 |
|
|
6 F |
6329 |
|
|
(URL) 236.55 441.95 T |
6330 |
|
|
2 F |
6331 |
|
|
( REL=\323next\323>) 254.54 441.95 T |
6332 |
|
|
0 12 Q |
6333 |
|
|
(The standard values for the) 72 422.95 T |
6334 |
|
|
2 10 Q |
6335 |
|
|
(REL) 205.56 422.95 T |
6336 |
|
|
0 12 Q |
6337 |
|
|
( attribute are) 223.55 422.95 T |
6338 |
|
|
4 F |
6339 |
|
|
(\050case insensitive\051:) 287.16 422.95 T |
6340 |
|
|
2 10 Q |
6341 |
|
|
(UseIndex) 90.33 403.95 T |
6342 |
|
|
0 12 Q |
6343 |
|
|
(The linked document can be used as an index for this document. There) 179.17 403.95 T |
6344 |
|
|
(may be several such indexes. The) 181.17 389.95 T |
6345 |
|
|
2 10 Q |
6346 |
|
|
(TITLE) 345.37 389.95 T |
6347 |
|
|
0 12 Q |
6348 |
|
|
( attribute should be used to) 375.35 389.95 T |
6349 |
|
|
(name each index, e.g. in menus and dialog boxes. This relationship) 181.17 375.95 T |
6350 |
|
|
(implies the document is) 181.17 361.95 T |
6351 |
|
|
4 F |
6352 |
|
|
(sear) 298.44 361.95 T |
6353 |
|
|
(chable) 318.65 361.95 T |
6354 |
|
|
0 F |
6355 |
|
|
(, and the browser should provide a) 350.62 361.95 T |
6356 |
|
|
(means for users to type in one or more keywords. The index may be a) 181.17 347.95 T |
6357 |
|
|
(full text W) 181.17 333.95 T |
6358 |
|
|
(AIS index or a conventional hypertext-based index.) 231.8 333.95 T |
6359 |
|
|
2 10 Q |
6360 |
|
|
(UseGlossary) 90.33 314.95 T |
6361 |
|
|
0 12 Q |
6362 |
|
|
(The linked document can be used to answer glossary queries for this) 179.17 314.95 T |
6363 |
|
|
(document. T) 181.17 300.95 T |
6364 |
|
|
(ypically invoked by a double click on a word) 240.95 300.95 T |
6365 |
|
|
0 10 Q |
6366 |
|
|
(1) 457.47 305.75 T |
6367 |
|
|
0 12 Q |
6368 |
|
|
(, or by drag) 462.47 300.95 T |
6369 |
|
|
-0.41 (selection, followed by clicking a menu item. There may be several such) 181.17 286.95 P |
6370 |
|
|
-0.31 (indexes. The) 181.17 272.95 P |
6371 |
|
|
2 10 Q |
6372 |
|
|
-0.61 (TITLE) 244.84 272.95 P |
6373 |
|
|
0 12 Q |
6374 |
|
|
-0.31 ( attribute should be used to name each index, e.g. in) 274.83 272.95 P |
6375 |
|
|
(menus and dialog boxes.) 181.17 258.95 T |
6376 |
|
|
2 10 Q |
6377 |
|
|
(Contents) 90.33 239.95 T |
6378 |
|
|
0 12 Q |
6379 |
|
|
(The linked document acts as a contents page for a number of related) 179.17 239.95 T |
6380 |
|
|
(documents. The browser should make this available as a button on a) 181.17 225.95 T |
6381 |
|
|
-0.33 (toolbar or as an entry in a navigation menu. The TITLE attribute can be) 181.17 211.95 P |
6382 |
|
|
(used to override the default \322Contents\323 name.) 181.17 197.95 T |
6383 |
|
|
2 10 Q |
6384 |
|
|
(Next) 90.33 178.95 T |
6385 |
|
|
0 12 Q |
6386 |
|
|
(The linked document is next on a path of documents. Browsers should) 179.17 178.95 T |
6387 |
|
|
(make this available as a button on a toolbar or as an entry in a naviga-) 181.17 164.95 T |
6388 |
|
|
(tion menu.) 181.17 150.95 T |
6389 |
|
|
72 95.05 523.3 110.03 C |
6390 |
|
|
81 108.01 225 108.01 2 L |
6391 |
|
|
0.5 H |
6392 |
|
|
2 Z |
6393 |
|
|
0 X |
6394 |
|
|
0 K |
6395 |
|
|
N |
6396 |
|
|
0 -24.95 595.3 816.95 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 88.39 T |
6401 |
|
|
FMENDPAGE |
6402 |
|
|
%%EndPage: "32" 37 |
6403 |
|
|
%%Page: "33" 37 |
6404 |
|
|
595.3 792 0 FMBEGINPAGE |
6405 |
|
|
0 10 Q |
6406 |
|
|
0 X |
6407 |
|
|
0 K |
6408 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6409 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6410 |
|
|
(33) 292.65 63.28 T |
6411 |
|
|
2 F |
6412 |
|
|
(Previous) 90.33 736.95 T |
6413 |
|
|
0 12 Q |
6414 |
|
|
(The linked document is the previous one to the current document on a) 179.17 736.95 T |
6415 |
|
|
-0.11 (path of documents. Browsers should make this available as a button on) 181.17 722.95 P |
6416 |
|
|
(a toolbar or as an entry in a navigation menu.) 181.17 708.95 T |
6417 |
|
|
2 10 Q |
6418 |
|
|
(Parent) 90.33 689.95 T |
6419 |
|
|
0 12 Q |
6420 |
|
|
-0.43 (The linked document is at the next level up in a hierarchy of documents.) 179.17 689.95 P |
6421 |
|
|
(Browsers should make this available as a button on a toolbar or as an) 181.17 675.95 T |
6422 |
|
|
(entry in a navigation menu. There may be several such parents. The) 181.17 661.95 T |
6423 |
|
|
2 10 Q |
6424 |
|
|
(TITLE) 181.17 647.95 T |
6425 |
|
|
0 12 Q |
6426 |
|
|
( attribute should be used to name each such document.) 211.15 647.95 T |
6427 |
|
|
2 10 Q |
6428 |
|
|
(Bookmark) 90.33 628.95 T |
6429 |
|
|
0 12 Q |
6430 |
|
|
-0.38 (The URL speci\336ed by the) 179.17 628.95 P |
6431 |
|
|
2 10 Q |
6432 |
|
|
-0.77 (HREF) 304.17 628.95 P |
6433 |
|
|
0 12 Q |
6434 |
|
|
-0.38 ( attribute is a bookmark, which is named) 328.15 628.95 P |
6435 |
|
|
(by the) 181.17 614.95 T |
6436 |
|
|
2 10 Q |
6437 |
|
|
(TITLE) 213.81 614.95 T |
6438 |
|
|
0 12 Q |
6439 |
|
|
( attribute. Browsers should make these available as but-) 243.8 614.95 T |
6440 |
|
|
(tons on a toolbar or as entries in a navigation menu.) 181.17 600.95 T |
6441 |
|
|
2 10 Q |
6442 |
|
|
(Made) 90.33 581.95 T |
6443 |
|
|
0 12 Q |
6444 |
|
|
(De\336nes who is the \322maker\323 of this document. The HREF attribute) 179.17 581.95 T |
6445 |
|
|
(should give an appropriate URL e.g. \322mailto:dsr@hplb.hpl.hp.com\323.) 181.17 567.95 T |
6446 |
|
|
(Browsers can use this to allow people to mail or post comments to the) 181.17 553.95 T |
6447 |
|
|
(author of the document.) 181.17 539.95 T |
6448 |
|
|
2 10 Q |
6449 |
|
|
(Help) 90.33 520.95 T |
6450 |
|
|
0 12 Q |
6451 |
|
|
(Associates a help document with this node.) 179.17 520.95 T |
6452 |
|
|
-0.4 (Sometimes it may be useful to specify a hypertext link separately from the text associated with) 72 501.95 P |
6453 |
|
|
(the start of the link. For example a sidebar could be associated with a given paragraph as fol-) 72 487.95 T |
6454 |
|
|
(lows:) 72 473.95 T |
6455 |
|
|
2 10 Q |
6456 |
|
|
(<LINK IDREF=\323z36\323 REL=\323Sidebar\323 HREF=\323sidebar.html\323>) 90 456.28 T |
6457 |
|
|
0 12 Q |
6458 |
|
|
(The) 72 437.95 T |
6459 |
|
|
2 10 Q |
6460 |
|
|
(IDREF) 93.65 437.95 T |
6461 |
|
|
0 12 Q |
6462 |
|
|
( attribute localizes the link to an element in the current document with a speci\336c) 123.63 437.95 T |
6463 |
|
|
(identi\336er \050as de\336ned with the) 72 423.95 T |
6464 |
|
|
2 10 Q |
6465 |
|
|
(ID) 215.57 423.95 T |
6466 |
|
|
0 12 Q |
6467 |
|
|
( attribute\051. In the absence of the) 227.57 423.95 T |
6468 |
|
|
2 10 Q |
6469 |
|
|
(IDREF) 382.77 423.95 T |
6470 |
|
|
0 12 Q |
6471 |
|
|
( attribute, the link is) 412.76 423.95 T |
6472 |
|
|
(associated with the current document as a whole.) 72 409.95 T |
6473 |
|
|
(Other suggestions for) 72 390.95 T |
6474 |
|
|
2 10 Q |
6475 |
|
|
(LINK) 178.26 390.95 T |
6476 |
|
|
0 12 Q |
6477 |
|
|
( currently lie outside this proposal, pending further work. In some) 202.25 390.95 T |
6478 |
|
|
-0.36 (cases,) 72 376.95 P |
6479 |
|
|
2 10 Q |
6480 |
|
|
-0.72 (LINK) 102.94 376.95 P |
6481 |
|
|
0 12 Q |
6482 |
|
|
-0.36 ( elements may be implied by the context in which this document was reached. This) 126.93 376.95 P |
6483 |
|
|
(is explained in section 15.) 72 362.95 T |
6484 |
|
|
1 14 Q |
6485 |
|
|
(15) 72 333.61 T |
6486 |
|
|
(Dealing with Large Documents) 90 333.61 T |
6487 |
|
|
0 12 Q |
6488 |
|
|
(Many classic works are available over the Internet, now that their copyright has expired.) 72 313.95 T |
6489 |
|
|
-0.45 (Downloading these as lar) 72 299.95 P |
6490 |
|
|
-0.45 (ge documents is time consuming, and a better strategy is to split them) 192.01 299.95 P |
6491 |
|
|
(up into smaller pieces. Other people have lots of paper documents and wish to make them) 72 285.95 T |
6492 |
|
|
(available electronically) 72 271.95 T |
6493 |
|
|
(. While it is easy to scan these documents in, the size of the images) 182.79 271.95 T |
6494 |
|
|
(makes them tedious to transfer over the network. Once again, time can be saved by avoiding) 72 257.95 T |
6495 |
|
|
(the need to download the whole document at once. HTML+ makes it easy to do this with) 72 243.95 T |
6496 |
|
|
(explicit or implicit links between the pieces that make up the complete document.) 72 229.95 T |
6497 |
|
|
(A book might have the following pieces:) 72 210.95 T |
6498 |
|
|
(\245) 90 191.95 T |
6499 |
|
|
(\324Cover page\325) 108 191.95 T |
6500 |
|
|
(\245) 90 172.95 T |
6501 |
|
|
(About the author) 108 172.95 T |
6502 |
|
|
(\245) 90 153.95 T |
6503 |
|
|
(Copyright and publishing details) 108 153.95 T |
6504 |
|
|
(\245) 90 134.95 T |
6505 |
|
|
(T) 108 134.95 T |
6506 |
|
|
(able of contents) 114.49 134.95 T |
6507 |
|
|
(\245) 90 115.95 T |
6508 |
|
|
(Foreword) 108 115.95 T |
6509 |
|
|
(\245) 90 96.95 T |
6510 |
|
|
(Preface) 108 96.95 T |
6511 |
|
|
FMENDPAGE |
6512 |
|
|
%%EndPage: "33" 38 |
6513 |
|
|
%%Page: "34" 38 |
6514 |
|
|
595.3 792 0 FMBEGINPAGE |
6515 |
|
|
0 10 Q |
6516 |
|
|
0 X |
6517 |
|
|
0 K |
6518 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6519 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6520 |
|
|
(34) 292.65 63.28 T |
6521 |
|
|
0 12 Q |
6522 |
|
|
(\245) 90 736.95 T |
6523 |
|
|
(Acknowledgement) 108 736.95 T |
6524 |
|
|
(\245) 90 717.95 T |
6525 |
|
|
(One or more chapters) 108 717.95 T |
6526 |
|
|
(\245) 90 698.95 T |
6527 |
|
|
(One or more appendices) 108 698.95 T |
6528 |
|
|
(\245) 90 679.95 T |
6529 |
|
|
(Bibliography) 108 679.95 T |
6530 |
|
|
(\245) 90 660.95 T |
6531 |
|
|
(Glossary) 108 660.95 T |
6532 |
|
|
(\245) 90 641.95 T |
6533 |
|
|
(Index) 108 641.95 T |
6534 |
|
|
(Each of these could be held as separate HTML+ subdocuments. The table of contents should) 72 622.95 T |
6535 |
|
|
-0.34 (obviously include hypertext links to other parts of the book rather than page numbers. Y) 72 608.95 P |
6536 |
|
|
-0.34 (ou can) 489.35 608.95 P |
6537 |
|
|
-0.31 (de\336ne a linear sequence through each of these subdocuments by including) 72 594.95 P |
6538 |
|
|
2 10 Q |
6539 |
|
|
-0.63 (LINK) 427.29 594.95 P |
6540 |
|
|
0 12 Q |
6541 |
|
|
-0.31 ( elements with) 451.28 594.95 P |
6542 |
|
|
2 10 Q |
6543 |
|
|
-0.51 (REL=NEXT) 72 580.95 P |
6544 |
|
|
0 12 Q |
6545 |
|
|
-0.25 ( and) 119.97 580.95 P |
6546 |
|
|
2 10 Q |
6547 |
|
|
-0.51 (REL=PREVIOUS) 142.78 580.95 P |
6548 |
|
|
0 12 Q |
6549 |
|
|
-0.25 (. This will allow readers to read through each part of the book in) 214.74 580.95 P |
6550 |
|
|
(turn. Y) 72 566.95 T |
6551 |
|
|
(ou should also include LINKs to the table of contents \050) 104.78 566.95 T |
6552 |
|
|
2 10 Q |
6553 |
|
|
(REL=CONTENTS) 367.94 566.95 T |
6554 |
|
|
0 12 Q |
6555 |
|
|
(\051 and other key) 439.9 566.95 T |
6556 |
|
|
(parts \050using) 72 552.95 T |
6557 |
|
|
2 10 Q |
6558 |
|
|
(REL=BOOKMARK) 131.29 552.95 T |
6559 |
|
|
0 12 Q |
6560 |
|
|
(\051.) 203.26 552.95 T |
6561 |
|
|
-0.25 (Generating a hypertext version of the index may prove time consuming, and it may be simpler) 72 533.95 P |
6562 |
|
|
-0.05 (to of) 72 519.95 P |
6563 |
|
|
-0.05 (fer a full text search facility instead. The) 94.05 519.95 P |
6564 |
|
|
2 10 Q |
6565 |
|
|
-0.11 (INDEX) 291.12 519.95 P |
6566 |
|
|
0 12 Q |
6567 |
|
|
-0.05 ( attribute can be used with many HTML+) 321.1 519.95 P |
6568 |
|
|
(elements to facilitate automatic generation of a conventional looking index, see section 13.) 72 505.95 T |
6569 |
|
|
-0.05 (Implicit links are useful when you want to reuse a given subdocument in another independent) 72 486.95 P |
6570 |
|
|
-0.33 (book, and for non-HTML+ formats such as scanned page images. T) 72 472.95 P |
6571 |
|
|
-0.33 (o de\336ne implicit links, you) 393.02 472.95 P |
6572 |
|
|
(need to \336rst create a HTML+ document such as a table of contents, and to make each entry) 72 458.95 T |
6573 |
|
|
(into a hypertext link using the) 72 444.95 T |
6574 |
|
|
2 10 Q |
6575 |
|
|
(<A>) 218.58 444.95 T |
6576 |
|
|
0 12 Q |
6577 |
|
|
( element with the attribute) 236.57 444.95 T |
6578 |
|
|
2 10 Q |
6579 |
|
|
(REL=\323SUBDOCUMENT\323) 365.49 444.95 T |
6580 |
|
|
0 12 Q |
6581 |
|
|
(. When the) 467.43 444.95 T |
6582 |
|
|
-0.02 (user follows one of these links, the browser scans the current document to locate the next) 72 430.95 P |
6583 |
|
|
2 10 Q |
6584 |
|
|
-0.04 (<A>) 502.33 430.95 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 416.95 P |
6587 |
|
|
2 10 Q |
6588 |
|
|
-0.06 (LINK) 72 402.95 P |
6589 |
|
|
0 12 Q |
6590 |
|
|
-0.03 ( element with) 95.99 402.95 P |
6591 |
|
|
2 10 Q |
6592 |
|
|
-0.06 (REL=NEXT) 164.18 402.95 P |
6593 |
|
|
0 12 Q |
6594 |
|
|
-0.03 (. This procedure is used to imply a) 211.27 402.95 P |
6595 |
|
|
2 10 Q |
6596 |
|
|
-0.06 (LINK) 379.9 402.95 P |
6597 |
|
|
0 12 Q |
6598 |
|
|
-0.03 ( element in the retrieved) 403.88 402.95 P |
6599 |
|
|
(subdocument. A similar process is used to imply a) 72 388.95 T |
6600 |
|
|
2 10 Q |
6601 |
|
|
(LINK) 316.52 388.95 T |
6602 |
|
|
0 12 Q |
6603 |
|
|
( element with) 340.51 388.95 T |
6604 |
|
|
2 10 Q |
6605 |
|
|
(REL=PREVIOUS) 408.8 388.95 T |
6606 |
|
|
0 12 Q |
6607 |
|
|
(. The) 480.76 388.95 T |
6608 |
|
|
(other links for the current document are simply inherited, i.e. any bookmarks, glossary or) 72 374.95 T |
6609 |
|
|
(index links that hold for the table of contents, also hold for the subdocument.) 72 360.95 T |
6610 |
|
|
(The browser then retrieves the subdocument and mer) 72 341.95 T |
6611 |
|
|
(ges the implied LINKs with any that are) 326.58 341.95 T |
6612 |
|
|
(given explicitly) 72 327.95 T |
6613 |
|
|
0 10 Q |
6614 |
|
|
(1) 146.96 332.75 T |
6615 |
|
|
0 12 Q |
6616 |
|
|
(. If the user now presses the \322Next\323 button on the toolbar \050or menu\051, the) 151.96 327.95 T |
6617 |
|
|
-0.21 (browser follows the implicit link to the next subdocument. The browser needs to look again at) 72 313.95 P |
6618 |
|
|
-0.3 (the parent document to \336nd the new) 72 299.95 P |
6619 |
|
|
4 F |
6620 |
|
|
-0.3 (next) 245.43 299.95 P |
6621 |
|
|
0 F |
6622 |
|
|
-0.3 ( subdocument. This mechanism is dif) 265.41 299.95 P |
6623 |
|
|
-0.3 (\336cult to explain,) 442.91 299.95 P |
6624 |
|
|
(but simple to write documents for) 72 285.95 T |
6625 |
|
|
(. All that authors need to do, is to remember to include the) 233.57 285.95 T |
6626 |
|
|
(subdocument relationship when de\336ning hypertext links.) 72 271.95 T |
6627 |
|
|
-0.07 (For a hundred page scanned document where each page is held as a separate \336le, the \322table of) 72 252.95 P |
6628 |
|
|
(contents\323 is going to be pretty dull, and there is little point creating it as an HTML+ node.) 72 238.95 T |
6629 |
|
|
(Instead, you should use an HTTP server which passes the missing) 72 224.95 T |
6630 |
|
|
2 10 Q |
6631 |
|
|
(LINK) 391.12 224.95 T |
6632 |
|
|
0 12 Q |
6633 |
|
|
( elements as header) 415.11 224.95 T |
6634 |
|
|
-0.07 (\336elds for each page image. The suggested representation for these header \336elds uses the same) 72 210.95 P |
6635 |
|
|
(attributes and syntax as the) 72 196.95 T |
6636 |
|
|
2 10 Q |
6637 |
|
|
(LINK) 204.91 196.95 T |
6638 |
|
|
0 12 Q |
6639 |
|
|
( element:) 228.9 196.95 T |
6640 |
|
|
2 10 Q |
6641 |
|
|
(WWW-Link: REL=\323Next\323 HREF=\323http://info.cern.ch/....\323) 90 179.28 T |
6642 |
|
|
0 12 Q |
6643 |
|
|
0 (There could be several) 72 160.95 P |
6644 |
|
|
2 10 Q |
6645 |
|
|
0 (WWW-Link:) 183.89 160.95 P |
6646 |
|
|
0 12 Q |
6647 |
|
|
0 ( headers, one for each implied) 237.86 160.95 P |
6648 |
|
|
2 10 Q |
6649 |
|
|
0 (LINK) 385.39 160.95 P |
6650 |
|
|
0 12 Q |
6651 |
|
|
0 (. This idea puts the bur-) 409.38 160.95 P |
6652 |
|
|
(den on the server to supply such links as appropriate to each requested document.) 72 146.95 T |
6653 |
|
|
72 95.05 523.3 110.03 C |
6654 |
|
|
81 108.01 225 108.01 2 L |
6655 |
|
|
0.5 H |
6656 |
|
|
2 Z |
6657 |
|
|
0 X |
6658 |
|
|
0 K |
6659 |
|
|
N |
6660 |
|
|
0 -24.95 595.3 816.95 C |
6661 |
|
|
0 10 Q |
6662 |
|
|
0 X |
6663 |
|
|
0 K |
6664 |
|
|
(1. An explicit) 90 88.39 T |
6665 |
|
|
2 F |
6666 |
|
|
(LINK) 147.19 88.39 T |
6667 |
|
|
0 F |
6668 |
|
|
( for the) 171.18 88.39 T |
6669 |
|
|
4 F |
6670 |
|
|
(next) 202.54 88.39 T |
6671 |
|
|
0 F |
6672 |
|
|
( or) 219.19 88.39 T |
6673 |
|
|
4 F |
6674 |
|
|
(pr) 232.51 88.39 T |
6675 |
|
|
(evious) 241.03 88.39 T |
6676 |
|
|
0 F |
6677 |
|
|
( document overrides an implicit one.) 266.56 88.39 T |
6678 |
|
|
FMENDPAGE |
6679 |
|
|
%%EndPage: "34" 39 |
6680 |
|
|
%%Page: "35" 39 |
6681 |
|
|
595.3 792 0 FMBEGINPAGE |
6682 |
|
|
0 10 Q |
6683 |
|
|
0 X |
6684 |
|
|
0 K |
6685 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6686 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6687 |
|
|
(35) 292.65 63.28 T |
6688 |
|
|
1 14 Q |
6689 |
|
|
(16) 72 735.62 T |
6690 |
|
|
(Acknowledgements) 90 735.62 T |
6691 |
|
|
0 12 Q |
6692 |
|
|
(I would like to thank the many people on the) 72 715.95 T |
6693 |
|
|
4 F |
6694 |
|
|
(www-talk) 289.86 715.95 T |
6695 |
|
|
0 F |
6696 |
|
|
( mailing list who have contributed to) 335.84 715.95 T |
6697 |
|
|
(the design of HTML+ and to the management of HP Labs for their support during this work.) 72 701.95 T |
6698 |
|
|
(David Raggett, Hewlett Packard Laboratories, October 1993.) 72 682.95 T |
6699 |
|
|
1 14 Q |
6700 |
|
|
(17) 72 653.62 T |
6701 |
|
|
(References) 90 653.62 T |
6702 |
|
|
0 12 Q |
6703 |
|
|
(\322) 72 633.95 T |
6704 |
|
|
4 F |
6705 |
|
|
(Hypertext Markup Language \050HTML\051) 77.32 633.95 T |
6706 |
|
|
0 F |
6707 |
|
|
(\323, T) 259.53 633.95 T |
6708 |
|
|
(im Berners-Lee, January 1993.) 277.76 633.95 T |
6709 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/html-spec.ps) 108 619.95 T |
6710 |
|
|
(or http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html) 108 605.95 T |
6711 |
|
|
(\322) 72 586.95 T |
6712 |
|
|
4 F |
6713 |
|
|
(Uniform Resour) 77.32 586.95 T |
6714 |
|
|
(ce Locators) 154.5 586.95 T |
6715 |
|
|
0 F |
6716 |
|
|
(\323, T) 210.8 586.95 T |
6717 |
|
|
(im Berners-Lee, January 1992.) 229.03 586.95 T |
6718 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/url7a.ps) 108 572.95 T |
6719 |
|
|
(or http://info.cern.ch/hypertext/WWW/Addressing/Addressing.html) 108 558.95 T |
6720 |
|
|
(\322) 72 539.95 T |
6721 |
|
|
4 F |
6722 |
|
|
(Pr) 77.32 539.95 T |
6723 |
|
|
(otocol for the Retrieval and Manipulation of T) 88.88 539.95 T |
6724 |
|
|
(exual and Hypermedia Information) 310.66 539.95 T |
6725 |
|
|
0 F |
6726 |
|
|
(\323,) 480.21 539.95 T |
6727 |
|
|
(T) 108 525.95 T |
6728 |
|
|
(im Berners-Lee, 1993.) 114.91 525.95 T |
6729 |
|
|
(URL=ftp://info.cern.ch/pub/www/doc/http-spec.ps) 108 511.95 T |
6730 |
|
|
(or http://info.cern.ch/hypertext/WWW/Protocols/HTTP/HTTP2.html) 108 497.95 T |
6731 |
|
|
(\322) 72 478.95 T |
6732 |
|
|
4 F |
6733 |
|
|
(The SGML Handbook) 77.32 478.95 T |
6734 |
|
|
0 F |
6735 |
|
|
(\323, Charles F) 182.59 478.95 T |
6736 |
|
|
(. GoldFarb, pub. 1990 by the Clarendon Press, Oxford.) 239.26 478.95 T |
6737 |
|
|
FMENDPAGE |
6738 |
|
|
%%EndPage: "35" 40 |
6739 |
|
|
%%Page: "36" 40 |
6740 |
|
|
595.3 792 0 FMBEGINPAGE |
6741 |
|
|
0 10 Q |
6742 |
|
|
0 X |
6743 |
|
|
0 K |
6744 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6745 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6746 |
|
|
(36) 292.65 63.28 T |
6747 |
|
|
FMENDPAGE |
6748 |
|
|
%%EndPage: "36" 41 |
6749 |
|
|
%%Page: "37" 41 |
6750 |
|
|
595.3 792 0 FMBEGINPAGE |
6751 |
|
|
0 10 Q |
6752 |
|
|
0 X |
6753 |
|
|
0 K |
6754 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6755 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6756 |
|
|
(37) 292.65 63.28 T |
6757 |
|
|
1 18 Q |
6758 |
|
|
(Appendix I) 251.66 732.95 T |
6759 |
|
|
3 12 Q |
6760 |
|
|
-0.04 (The HTML+ Document T) 144 700.95 P |
6761 |
|
|
-0.04 (ype De\336nition \050DTD\051. The prelim-) 275.52 700.95 P |
6762 |
|
|
(inaries are taken from the HTML DTD and declares the) 144 686.95 T |
6763 |
|
|
(character set as Latin-1, disables markup minimisation) 144 672.95 T |
6764 |
|
|
(and sets limits for tag/attribute names to 34 characters,) 144 658.95 T |
6765 |
|
|
(and attribute values to a maximum of 1024 characters.) 144 644.95 T |
6766 |
|
|
2 10 Q |
6767 |
|
|
(<!SGML \322ISO 8879:1986\323) 72 627.28 T |
6768 |
|
|
(--) 72 615.28 T |
6769 |
|
|
(Document Type Def) 72 603.28 T |
6770 |
|
|
(inition for the HyperText Markup Language Plus) 173.94 603.28 T |
6771 |
|
|
(for use with the World Wide Web application \050HTML+ DTD\051. These) 72 591.28 T |
6772 |
|
|
(initial settings are take from the HTML DTD.) 72 579.28 T |
6773 |
|
|
( NOTE: This is a def) 72 555.28 T |
6774 |
|
|
(inition of HTML with respect to) 233.91 555.28 T |
6775 |
|
|
( SGML, and assumes an understanding of SGML terms.) 72 543.28 T |
6776 |
|
|
(--) 72 531.28 T |
6777 |
|
|
(CHARSET) 72 519.28 T |
6778 |
|
|
( BASESET \322ISO 646:1983//CHARSET) 72 507.28 T |
6779 |
|
|
( International Reference Version \050IRV\051//ESC 2/5 4/0\323) 72 495.28 T |
6780 |
|
|
( DESCSET 0 9 UNUSED) 72 483.28 T |
6781 |
|
|
( 9 2 9) 72 471.28 T |
6782 |
|
|
( 11 2 UNUSED) 72 459.28 T |
6783 |
|
|
( 13 1 13) 72 447.28 T |
6784 |
|
|
( 14 18 UNUSED) 72 435.28 T |
6785 |
|
|
( 32 95 32) 72 423.28 T |
6786 |
|
|
( 127 1 UNUSED) 72 411.28 T |
6787 |
|
|
( BASESET \322ISO Registration Number 100//CHARSET) 72 399.28 T |
6788 |
|
|
( ECMA-94 Right Part of Latin Alphabet Nr. 1//ESC 2/13 4/1\323) 72 387.28 T |
6789 |
|
|
( DESCSET 128 32 UNUSED) 72 375.28 T |
6790 |
|
|
( 160 95 32) 72 363.28 T |
6791 |
|
|
( 255 1 UNUSED) 72 351.28 T |
6792 |
|
|
(CAPACITY SGMLREF) 72 327.28 T |
6793 |
|
|
( TOTALCAP 150000) 72 315.28 T |
6794 |
|
|
( GRPCAP 150000) 72 303.28 T |
6795 |
|
|
(SCOPE DOCUMENT) 72 279.28 T |
6796 |
|
|
(SYNTAX) 72 267.28 T |
6797 |
|
|
( SHUNCHAR CONTROLS 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18) 72 255.28 T |
6798 |
|
|
( 19 20 21 22 23 24 25 26 27 28 29 30 31 127 255) 72 243.28 T |
6799 |
|
|
( BASESET \322ISO 646:1983//CHARSET) 72 231.28 T |
6800 |
|
|
( International Reference Version \050IRV\051//ESC 2/5 4/0\323) 72 219.28 T |
6801 |
|
|
( DESCSET 0 128 0) 72 207.28 T |
6802 |
|
|
( FUNCTION RE 13) 72 195.28 T |
6803 |
|
|
( RS 10) 72 183.28 T |
6804 |
|
|
( SPACE 32) 72 171.28 T |
6805 |
|
|
( TAB SEPCHAR 9) 72 159.28 T |
6806 |
|
|
( NAMING LCNMSTRT \322\322) 72 147.28 T |
6807 |
|
|
( UCNMSTRT \322\322) 72 135.28 T |
6808 |
|
|
( LCNMCHAR \322.-\323) 72 123.28 T |
6809 |
|
|
( UCNMCHAR \322.-\323) 72 111.28 T |
6810 |
|
|
( NAMECASE GENERAL YES) 72 99.28 T |
6811 |
|
|
( ENTITY NO) 72 87.28 T |
6812 |
|
|
FMENDPAGE |
6813 |
|
|
%%EndPage: "37" 42 |
6814 |
|
|
%%Page: "38" 42 |
6815 |
|
|
595.3 792 0 FMBEGINPAGE |
6816 |
|
|
0 10 Q |
6817 |
|
|
0 X |
6818 |
|
|
0 K |
6819 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6820 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6821 |
|
|
(38) 292.65 63.28 T |
6822 |
|
|
2 F |
6823 |
|
|
( DELIM GENERAL SGMLREF) 72 738.28 T |
6824 |
|
|
( SHORTREF SGMLREF) 72 726.28 T |
6825 |
|
|
( NAMES SGMLREF) 72 714.28 T |
6826 |
|
|
( QUANTITY SGMLREF) 72 702.28 T |
6827 |
|
|
( NAMELEN 34) 72 690.28 T |
6828 |
|
|
( TAGLVL 100) 72 678.28 T |
6829 |
|
|
( LITLEN 1024) 72 666.28 T |
6830 |
|
|
( GRPGTCNT 150) 72 654.28 T |
6831 |
|
|
( GRPCNT 64) 72 642.28 T |
6832 |
|
|
(FEATURES) 72 618.28 T |
6833 |
|
|
( MINIMIZE) 72 606.28 T |
6834 |
|
|
( DATATAG NO) 72 594.28 T |
6835 |
|
|
( OMITTAG NO) 72 582.28 T |
6836 |
|
|
( RANK NO) 72 570.28 T |
6837 |
|
|
( SHORTTAG NO) 72 558.28 T |
6838 |
|
|
( LINK) 72 546.28 T |
6839 |
|
|
( SIMPLE NO) 72 534.28 T |
6840 |
|
|
( IMPLICIT NO) 72 522.28 T |
6841 |
|
|
( EXPLICIT NO) 72 510.28 T |
6842 |
|
|
( OTHER) 72 498.28 T |
6843 |
|
|
( CONCUR NO) 72 486.28 T |
6844 |
|
|
( SUBDOC NO) 72 474.28 T |
6845 |
|
|
( FORMAL YES) 72 462.28 T |
6846 |
|
|
( APPINFO NONE) 72 450.28 T |
6847 |
|
|
(>) 72 438.28 T |
6848 |
|
|
(<!DOCTYPE HTMLPLUS [) 72 426.28 T |
6849 |
|
|
(<!-- DTD for HTML+) 72 414.28 T |
6850 |
|
|
(Markup minimisation should be avoided, otherwise the default <!SGML> decla-) 72 402.28 T |
6851 |
|
|
(ration is f) 72 390.28 T |
6852 |
|
|
(ine. Browsers should be forgiving of markup errors.) 137.96 390.28 T |
6853 |
|
|
(Common Attributes:) 72 366.28 T |
6854 |
|
|
(id the id attribute allows authors to name elements such as headers) 72 342.28 T |
6855 |
|
|
( and paragraphs as potential destinations for links. Note that) 72 330.28 T |
6856 |
|
|
( links don\325t specify points, but rather extended objects.) 72 318.28 T |
6857 |
|
|
(index allows authors to specify how given headers etc should be) 72 306.28 T |
6858 |
|
|
( indexed as primary or secondary keys, where \322/\323 separates primary) 72 294.28 T |
6859 |
|
|
( from secondary keys, \322;\323 separates multiple entries) 72 282.28 T |
6860 |
|
|
(-->) 72 270.28 T |
6861 |
|
|
(<!-- ENTITY DECLARATIONS) 72 258.28 T |
6862 |
|
|
( <!ENTITY % foo \322X | Y | Z\323> is a macro def) 72 246.28 T |
6863 |
|
|
(inition for parameters and in) 329.86 246.28 T |
6864 |
|
|
( subsequent statements, the string \322%foo;\323 is expanded to \322X | Y | Z\323) 72 234.28 T |
6865 |
|
|
( Various classes of SGML text types:) 72 210.28 T |
6866 |
|
|
( #CDATA text which doesn\325t include markup or entity references) 72 186.28 T |
6867 |
|
|
( #RCDATA text with entity references but no markup) 72 174.28 T |
6868 |
|
|
-0.32 ( #PCDATA text occurring in a context in which markup and entity references) 72 162.28 P |
6869 |
|
|
( may occur.) 72 150.28 T |
6870 |
|
|
(-->) 72 138.28 T |
6871 |
|
|
(<!ENTITY % URL \322CDATA\323 -- a URL or URN designating a hypertext node -->) 72 126.28 T |
6872 |
|
|
(<!ENTITY % emph1 \322I|B|U|S|SUP|SUB|TT\323>) 72 114.28 T |
6873 |
|
|
(<!ENTITY % emph2 \322Q|CITE|PERSON|ACRONYM|ABBREV|EM|STRONG\323>) 72 102.28 T |
6874 |
|
|
(<!ENTITY % emph3 \322CMD|ARG|KBD|VAR|DFN|CODE|SAMP|REMOVED|ADDED\323>) 72 90.28 T |
6875 |
|
|
FMENDPAGE |
6876 |
|
|
%%EndPage: "38" 43 |
6877 |
|
|
%%Page: "39" 43 |
6878 |
|
|
595.3 792 0 FMBEGINPAGE |
6879 |
|
|
0 10 Q |
6880 |
|
|
0 X |
6881 |
|
|
0 K |
6882 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6883 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6884 |
|
|
(39) 292.65 63.28 T |
6885 |
|
|
2 F |
6886 |
|
|
(<!ENTITY % emph \322%emph1;|%emph2;|%emph3;\323>) 72 738.28 T |
6887 |
|
|
(<!ENTITY % misc \322RENDER|FOOTNOTE|MARGIN|INPUT|TEXTAREA|SELECT\323>) 72 726.28 T |
6888 |
|
|
(<!ENTITY % text \322#PCDATA|A|IMG|IMAGE|%emph;|%misc;|BR|CHANGED\323>) 72 714.28 T |
6889 |
|
|
(<!ENTITY % paras \322P|PRE|LIT|FIG\323>) 72 702.28 T |
6890 |
|
|
(<!ENTITY % lists \322UL|OL|DL|MENU|DIR\323>) 72 690.28 T |
6891 |
|
|
(<!ENTITY % block \322TABLE|FORM|MATH|NOTE|QUOTE|ABSTRACT|BYLINE|HR\323>) 72 678.28 T |
6892 |
|
|
(<!ENTITY % heading \322H1|H2|H3|H4|H5|H6\323>) 72 666.28 T |
6893 |
|
|
(<!ENTITY % table \322%text;|P|%heading;|%lists;\323>) 72 654.28 T |
6894 |
|
|
(<!ENTITY % math \322BOX|%text;\323>) 72 642.28 T |
6895 |
|
|
(<!ENTITY % main \322%heading;|%block;|%lists;|%paras;|%text;\323>) 72 630.28 T |
6896 |
|
|
(<!ENTITY % setup \322\050TITLE? & ISINDEX? & NEXTID? & LINK* & BASE?\051\323>) 72 618.28 T |
6897 |
|
|
(<!-- Basic types of elements:) 72 594.28 T |
6898 |
|
|
( <!ELEMENT tagname - - CONTENT> elements needing end tags) 72 582.28 T |
6899 |
|
|
( <!ELEMENT tagname - O CONTENT> elements with optional end tags) 72 570.28 T |
6900 |
|
|
( <!ELEMENT tagname - O EMPTY> elements without content or end tags) 72 558.28 T |
6901 |
|
|
(The content def) 72 534.28 T |
6902 |
|
|
(inition is:) 161.95 534.28 T |
6903 |
|
|
( - an entity def) 72 522.28 T |
6904 |
|
|
(inition as def) 209.92 522.28 T |
6905 |
|
|
(ined above) 293.88 522.28 T |
6906 |
|
|
( - a tagname) 72 510.28 T |
6907 |
|
|
( - \050brackets enclosing the above\051) 72 498.28 T |
6908 |
|
|
(These may be combined with the operators:) 72 486.28 T |
6909 |
|
|
( A* A occurs zero or more times) 72 474.28 T |
6910 |
|
|
( A+ A occurs one or more times) 72 462.28 T |
6911 |
|
|
( A|B implies either A or B) 72 450.28 T |
6912 |
|
|
( A? A occurs zero or one times) 72 438.28 T |
6913 |
|
|
( A,B implies f) 72 426.28 T |
6914 |
|
|
(irst A then B) 185.94 426.28 T |
6915 |
|
|
( A&B either or both A and B \050in either order\051) 72 414.28 T |
6916 |
|
|
(-->) 72 402.28 T |
6917 |
|
|
(<!ELEMENT HTMLPLUS O O \050\050HEAD, BODY\051 | \050\050%setup;\051, \050%main;\051*\051\051>) 72 378.28 T |
6918 |
|
|
(<!ATTLIST HTMLPLUS) 72 366.28 T |
6919 |
|
|
( version CDATA #IMPLIED -- the HTML+ version number --) 72 354.28 T |
6920 |
|
|
( forms \050on|off\051 on -- used to disable form f) 72 342.28 T |
6921 |
|
|
(illing -->) 407.82 342.28 T |
6922 |
|
|
(<!ELEMENT HEAD - - \050%setup;\051 -- delimits document wide properties -->) 72 318.28 T |
6923 |
|
|
(<!ELEMENT BODY - - \050%main;\051* -- delimits the document\325s body -->) 72 306.28 T |
6924 |
|
|
(<!-- Document title -->) 72 282.28 T |
6925 |
|
|
(<!ELEMENT TITLE - - \050#PCDATA | %emph;\051+>) 72 270.28 T |
6926 |
|
|
(<!ATTLIST TITLE) 72 258.28 T |
6927 |
|
|
( id ID #IMPLIED -- link destination --) 72 246.28 T |
6928 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 234.28 T |
6929 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 222.28 T |
6930 |
|
|
(<!-- Document headers -->) 72 198.28 T |
6931 |
|
|
(<!ELEMENT \050%heading;\051 - - \050#PCDATA | %emph;\051+>) 72 186.28 T |
6932 |
|
|
(<!ATTLIST \050%heading;\051) 72 174.28 T |
6933 |
|
|
( id ID #IMPLIED -- def) 72 162.28 T |
6934 |
|
|
(ines link destination --) 305.87 162.28 T |
6935 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 150.28 T |
6936 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 138.28 T |
6937 |
|
|
(<!-- character emphasis -->) 72 114.28 T |
6938 |
|
|
(<!ELEMENT \050%emph;\051 - - \050%text;\051*>) 72 102.28 T |
6939 |
|
|
(<!ATTLIST \050%emph;\051) 72 90.28 T |
6940 |
|
|
FMENDPAGE |
6941 |
|
|
%%EndPage: "39" 44 |
6942 |
|
|
%%Page: "40" 44 |
6943 |
|
|
595.3 792 0 FMBEGINPAGE |
6944 |
|
|
0 10 Q |
6945 |
|
|
0 X |
6946 |
|
|
0 K |
6947 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
6948 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
6949 |
|
|
(40) 292.65 63.28 T |
6950 |
|
|
2 F |
6951 |
|
|
( id ID #IMPLIED -- link destination --) 72 738.28 T |
6952 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 726.28 T |
6953 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 714.28 T |
6954 |
|
|
(<!ELEMENT \050FOOTNOTE|MARGIN\051 - - \050%text;\051* -\050FOOTNOTE|MARGIN\051>) 72 690.28 T |
6955 |
|
|
(<!ATTLIST \050FOOTNOTE|MARGIN\051) 72 678.28 T |
6956 |
|
|
( id ID #IMPLIED -- link destination --) 72 666.28 T |
6957 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 654.28 T |
6958 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 642.28 T |
6959 |
|
|
(<!ELEMENT RENDER -O \050EMPTY\051 -- how to render unknown elements -->) 72 618.28 T |
6960 |
|
|
(<!ATTLIST RENDER) 72 606.28 T |
6961 |
|
|
( tag CDATA #IMPLIED -- tag name --) 72 594.28 T |
6962 |
|
|
( style CDATA #IMPLIED -- comma separated list of styles -->) 72 582.28 T |
6963 |
|
|
(<!-- Paragraphs which act as containers for the following text -->) 72 558.28 T |
6964 |
|
|
(<!ELEMENT P - O \050L|%text;\051+>) 72 546.28 T |
6965 |
|
|
(<!ATTLIST P) 72 534.28 T |
6966 |
|
|
( id ID #IMPLIED -- link destination --) 72 522.28 T |
6967 |
|
|
( align \050left|indent|center|right|justify\051 left) 72 510.28 T |
6968 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 498.28 T |
6969 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 486.28 T |
6970 |
|
|
(<!ELEMENT L - O \050%text;\051+>) 72 474.28 T |
6971 |
|
|
(<!ATTLIST L) 72 462.28 T |
6972 |
|
|
( id ID #IMPLIED -- link destination --) 72 450.28 T |
6973 |
|
|
( align \050left|indent|center|right|justify\051 left) 72 438.28 T |
6974 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 426.28 T |
6975 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 414.28 T |
6976 |
|
|
(<!ELEMENT HR - O EMPTY -- Horizontal Rule -->) 72 390.28 T |
6977 |
|
|
(<!ELEMENT BR - O EMPTY -- line break in normal text-->) 72 378.28 T |
6978 |
|
|
(<!ELEMENT PRE - - \050TAB|%text;\051+ -- preformatted f) 72 354.28 T |
6979 |
|
|
(ixed pitch text -->) 365.84 354.28 T |
6980 |
|
|
(<!ATTLIST PRE) 72 342.28 T |
6981 |
|
|
( id ID #IMPLIED -- link destination --) 72 330.28 T |
6982 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 318.28 T |
6983 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 306.28 T |
6984 |
|
|
(<!ELEMENT LIT - - \050TAB|%text;\051+ -- literal variable pitch text -->) 72 282.28 T |
6985 |
|
|
(<!ATTLIST LIT) 72 270.28 T |
6986 |
|
|
( id ID #IMPLIED -- link destination --) 72 258.28 T |
6987 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 246.28 T |
6988 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 234.28 T |
6989 |
|
|
(<!ELEMENT TAB - O EMPTY -- tabs for imported text -->) 72 210.28 T |
6990 |
|
|
(<!ATTLIST TAB) 72 198.28 T |
6991 |
|
|
( at NUMBER #IMPLIED -- measured in widths of a capital M --) 72 186.28 T |
6992 |
|
|
( align \050left|center|right|decimal\051 left -- tab alignment -->) 72 174.28 T |
6993 |
|
|
(<!ELEMENT QUOTE - - \050P|%text;\051* -- block quote -->) 72 150.28 T |
6994 |
|
|
(<!ATTLIST QUOTE) 72 138.28 T |
6995 |
|
|
( id ID #IMPLIED -- link destination --) 72 126.28 T |
6996 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 114.28 T |
6997 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 102.28 T |
6998 |
|
|
FMENDPAGE |
6999 |
|
|
%%EndPage: "40" 45 |
7000 |
|
|
%%Page: "41" 45 |
7001 |
|
|
595.3 792 0 FMBEGINPAGE |
7002 |
|
|
0 10 Q |
7003 |
|
|
0 X |
7004 |
|
|
0 K |
7005 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7006 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7007 |
|
|
(41) 292.65 63.28 T |
7008 |
|
|
2 F |
7009 |
|
|
(<!ELEMENT ABSTRACT - - \050P|%text;\051* -- document summary -->) 72 738.28 T |
7010 |
|
|
(<!ATTLIST ABSTRACT) 72 726.28 T |
7011 |
|
|
( id ID #IMPLIED -- link destination --) 72 714.28 T |
7012 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 702.28 T |
7013 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 690.28 T |
7014 |
|
|
(<!ELEMENT BYLINE - - \050P|%text;\051* -- info on author -->) 72 678.28 T |
7015 |
|
|
(<!ATTLIST BYLINE) 72 666.28 T |
7016 |
|
|
( id ID #IMPLIED -- link destination --) 72 654.28 T |
7017 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 642.28 T |
7018 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 630.28 T |
7019 |
|
|
(<!ELEMENT NOTE - - \050P|%text;\051* -- admonishment -->) 72 618.28 T |
7020 |
|
|
(<!ATTLIST NOTE) 72 606.28 T |
7021 |
|
|
( id ID #IMPLIED -- link destination --) 72 594.28 T |
7022 |
|
|
( role CDATA #IMPLIED -- e.g. Tip, Note, Warning, or Error --) 72 582.28 T |
7023 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 570.28 T |
7024 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 558.28 T |
7025 |
|
|
(<!ELEMENT \050ADDRESS|BLOCKQUOTE\051 - - \050%text;|P\051* --compatibility with HTML-->) 72 534.28 T |
7026 |
|
|
(<!-- Lists which can be nested -->) 72 510.28 T |
7027 |
|
|
(<!ELEMENT OL - - \050LI | UL | OL\051+ -- ordered list -->) 72 498.28 T |
7028 |
|
|
(<!ATTLIST OL) 72 486.28 T |
7029 |
|
|
( id ID #IMPLIED) 72 474.28 T |
7030 |
|
|
( compact \050compact\051 #IMPLIED) 72 462.28 T |
7031 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 450.28 T |
7032 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 438.28 T |
7033 |
|
|
(<!ELEMENT UL - - \050LI | UL | OL\051+ -- unordered list -->) 72 426.28 T |
7034 |
|
|
(<!ATTLIST UL) 72 414.28 T |
7035 |
|
|
( id ID #IMPLIED -- link destination --) 72 402.28 T |
7036 |
|
|
( compact \050compact\051 #IMPLIED -- reduced interitem spacing --) 72 390.28 T |
7037 |
|
|
( plain \050plain\051 #IMPLIED -- suppress bullets --) 72 378.28 T |
7038 |
|
|
( wrap \050vert|horiz\051 vert -- multicolumn list wrap style --) 72 366.28 T |
7039 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 354.28 T |
7040 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 342.28 T |
7041 |
|
|
(<!-- List items for UL and OL lists -->) 72 318.28 T |
7042 |
|
|
(<!ELEMENT LI - O \050DL|P|%text;\051+>) 72 306.28 T |
7043 |
|
|
(<!ATTLIST LI) 72 294.28 T |
7044 |
|
|
( id ID #IMPLIED) 72 282.28 T |
7045 |
|
|
( src %URL; #IMPLIED -- icon for use in place of bullet --) 72 270.28 T |
7046 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 258.28 T |
7047 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 246.28 T |
7048 |
|
|
(<!ELEMENT MENU - - \050LI\051* -- plain single column list -->) 72 222.28 T |
7049 |
|
|
(<!ATTLIST MENU) 72 210.28 T |
7050 |
|
|
( id ID #IMPLIED) 72 198.28 T |
7051 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 186.28 T |
7052 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 174.28 T |
7053 |
|
|
(<!ELEMENT DIR - - \050LI\051* -- plain multi column list -->) 72 162.28 T |
7054 |
|
|
(<!ATTLIST DIR) 72 150.28 T |
7055 |
|
|
( id ID #IMPLIED) 72 138.28 T |
7056 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 126.28 T |
7057 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 114.28 T |
7058 |
|
|
(<!-- Def) 72 90.28 T |
7059 |
|
|
(inition Lists \050terms + def) 119.97 90.28 T |
7060 |
|
|
(initions\051 -->) 275.89 90.28 T |
7061 |
|
|
FMENDPAGE |
7062 |
|
|
%%EndPage: "41" 46 |
7063 |
|
|
%%Page: "42" 46 |
7064 |
|
|
595.3 792 0 FMBEGINPAGE |
7065 |
|
|
0 10 Q |
7066 |
|
|
0 X |
7067 |
|
|
0 K |
7068 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7069 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7070 |
|
|
(42) 292.65 63.28 T |
7071 |
|
|
2 F |
7072 |
|
|
(<!ELEMENT DL - - \050DT+,DD\051+>) 72 738.28 T |
7073 |
|
|
(<!ATTLIST DL) 72 726.28 T |
7074 |
|
|
( id ID #IMPLIED) 72 714.28 T |
7075 |
|
|
( compact \050compact\051 #IMPLIED) 72 702.28 T |
7076 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 690.28 T |
7077 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 678.28 T |
7078 |
|
|
(<!ELEMENT DT - O \050%text;\051+ -- term text -- >) 72 654.28 T |
7079 |
|
|
(<!ELEMENT DD - O \050P|UL|OL|DL|%text;\051+ -- def) 72 642.28 T |
7080 |
|
|
(inition text -- >) 335.86 642.28 T |
7081 |
|
|
(<!ATTLIST \050DT|DD\051) 72 630.28 T |
7082 |
|
|
( id ID #IMPLIED) 72 618.28 T |
7083 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 606.28 T |
7084 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 594.28 T |
7085 |
|
|
(<!ELEMENT CAPTION - - \050%text;\051+ -- table or f) 72 570.28 T |
7086 |
|
|
(igure caption -->) 341.85 570.28 T |
7087 |
|
|
(<!ATTLIST CAPTION) 72 558.28 T |
7088 |
|
|
( id ID #IMPLIED) 72 546.28 T |
7089 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 534.28 T |
7090 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 522.28 T |
7091 |
|
|
-0.41 (<!ELEMENT TABLE - - \050CAPTION?, \050TH|TD|TR|TB\051*\051 -- mixed headers and data -->) 72 498.28 P |
7092 |
|
|
(<!ATTLIST TABLE) 72 486.28 T |
7093 |
|
|
( id ID #IMPLIED) 72 474.28 T |
7094 |
|
|
( border \050border\051 #IMPLIED -- draw borders --) 72 462.28 T |
7095 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 450.28 T |
7096 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 438.28 T |
7097 |
|
|
(<!ELEMENT TH - O \050%table;\051* -- a header cell -->) 72 414.28 T |
7098 |
|
|
(<!ATTLIST TH) 72 402.28 T |
7099 |
|
|
( colspan NUMBER 1 -- columns spanned --) 72 390.28 T |
7100 |
|
|
( rowspan NUMBER 1 --. rows spanned --) 72 378.28 T |
7101 |
|
|
( align \050left|center|right\051 center -- alignment in cell --) 72 366.28 T |
7102 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 354.28 T |
7103 |
|
|
(<!ELEMENT TD - O \050%table;\051* -- a data cell -->) 72 342.28 T |
7104 |
|
|
(<!ATTLIST TD) 72 330.28 T |
7105 |
|
|
( colspan NUMBER 1 -- columns spanned --) 72 318.28 T |
7106 |
|
|
( rowspan NUMBER 1 --. rows spanned --) 72 306.28 T |
7107 |
|
|
( align \050left|center|right\051 center -- alignment in cell --) 72 294.28 T |
7108 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 282.28 T |
7109 |
|
|
(<!ELEMENT TR - O \050EMPTY\051 -- row separator -->) 72 270.28 T |
7110 |
|
|
(<!ATTLIST TR id ID #IMPLIED>) 72 258.28 T |
7111 |
|
|
(<!ELEMENT FORM - - \050MH, \050%main;\051*\051 -\050FORM\051 -- forms can\325t be nested -->) 72 234.28 T |
7112 |
|
|
(<!ATTLIST FORM) 72 222.28 T |
7113 |
|
|
( id ID #IMPLIED) 72 210.28 T |
7114 |
|
|
( action %URL; #IMPLIED -- defaults for URL for current doc --) 72 198.28 T |
7115 |
|
|
( method CDATA #IMPLIED -- PUT, POST, DELETE etc. --) 72 186.28 T |
7116 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation --) 72 174.28 T |
7117 |
|
|
( index CDATA #IMPLIED -- entries for index compilation -->) 72 162.28 T |
7118 |
|
|
(<!ELEMENT MH - - CDATA -- one or more RFC 822 header f) 72 138.28 T |
7119 |
|
|
(ields -->) 395.82 138.28 T |
7120 |
|
|
-0.37 (<!ATTLIST MH hidden \050hidden\051 #IMPLIED -- hide the mail headers from view -->) 72 126.28 P |
7121 |
|
|
(<!ELEMENT INPUT - O EMPTY>) 72 102.28 T |
7122 |
|
|
(<!ATTLIST INPUT) 72 90.28 T |
7123 |
|
|
FMENDPAGE |
7124 |
|
|
%%EndPage: "42" 47 |
7125 |
|
|
%%Page: "43" 47 |
7126 |
|
|
595.3 792 0 FMBEGINPAGE |
7127 |
|
|
0 10 Q |
7128 |
|
|
0 X |
7129 |
|
|
0 K |
7130 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7131 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7132 |
|
|
(43) 292.65 63.28 T |
7133 |
|
|
2 F |
7134 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 738.28 T |
7135 |
|
|
( type CDATA #IMPLIED -- a wide variety of f) 72 726.28 T |
7136 |
|
|
(ield types --) 401.82 726.28 T |
7137 |
|
|
( size CDATA #IMPLIED -- visible size of text f) 72 714.28 T |
7138 |
|
|
(ields --) 419.81 714.28 T |
7139 |
|
|
( min NUMBER #IMPLIED -- for range controls --) 72 702.28 T |
7140 |
|
|
( max NUMBER #IMPLIED -- for range controls or text f) 72 690.28 T |
7141 |
|
|
(ields --) 455.79 690.28 T |
7142 |
|
|
( value CDATA #IMPLIED -- attribute value \050altered by user\051 --) 72 678.28 T |
7143 |
|
|
( checked \050checked\051 #IMPLIED -- for check boxes and radio buttons --) 72 666.28 T |
7144 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 654.28 T |
7145 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 642.28 T |
7146 |
|
|
( src %URL; #IMPLIED -- for certain f) 72 630.28 T |
7147 |
|
|
(ields e.g. IMAGEs --) 365.84 630.28 T |
7148 |
|
|
( align \050top|middle|bottom\051 top -- for IMAGE f) 72 618.28 T |
7149 |
|
|
(ields only --) 383.83 618.28 T |
7150 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 606.28 T |
7151 |
|
|
(<!ELEMENT TEXTAREA - - CDATA -- multi-line text f) 72 582.28 T |
7152 |
|
|
(ields -->) 365.84 582.28 T |
7153 |
|
|
(<!ATTLIST TEXTAREA) 72 570.28 T |
7154 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 558.28 T |
7155 |
|
|
( cols NUMBER #IMPLIED -- visible width in characters --) 72 546.28 T |
7156 |
|
|
( rows NUMBER #IMPLIED -- visible height in characters --) 72 534.28 T |
7157 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 522.28 T |
7158 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 510.28 T |
7159 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 498.28 T |
7160 |
|
|
(<!ELEMENT SELECT - - \050OPTION+\051 -- combo style selection lists -->) 72 474.28 T |
7161 |
|
|
(<!ATTLIST SELECT) 72 462.28 T |
7162 |
|
|
( name CDATA #IMPLIED -- attribute name \050may not be unique\051 --) 72 450.28 T |
7163 |
|
|
( several \050several\051 #IMPLIED -- permits multiple selections --) 72 438.28 T |
7164 |
|
|
( error \050error\051 #IMPLIED -- if in error --) 72 426.28 T |
7165 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 414.28 T |
7166 |
|
|
(<!ELEMENT OPTION - - CDATA>) 72 390.28 T |
7167 |
|
|
(<!ATTLIST OPTION) 72 378.28 T |
7168 |
|
|
( selected \050selected\051 #IMPLIED -- if initially selected --) 72 366.28 T |
7169 |
|
|
( disabled \050disabled\051 #IMPLIED -- if grayed out --) 72 354.28 T |
7170 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 342.28 T |
7171 |
|
|
(<!ELEMENT FIG - - \050CAPTION?,\050%text;\051*\051>) 72 318.28 T |
7172 |
|
|
(<!ATTLIST FIG) 72 306.28 T |
7173 |
|
|
( id ID #IMPLIED) 72 294.28 T |
7174 |
|
|
( align \050left|center|right|f) 72 282.28 T |
7175 |
|
|
(loat\051 f) 287.88 282.28 T |
7176 |
|
|
(loat -- position --) 329.86 282.28 T |
7177 |
|
|
( ismap \050ismap\051 #IMPLIED -- server can handle mouse clicks/drags --) 72 270.28 T |
7178 |
|
|
( src %URL; #IMPLIED -- link to image data --) 72 258.28 T |
7179 |
|
|
( index CDATA #IMPLIED -- entries for index compilation --) 72 246.28 T |
7180 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 234.28 T |
7181 |
|
|
(<!ELEMENT IMG - O EMPTY>) 72 222.28 T |
7182 |
|
|
(<!ATTLIST IMG) 72 210.28 T |
7183 |
|
|
( src %URL; #REQUIRED -- where to get image data --) 72 198.28 T |
7184 |
|
|
( align \050top|middle|bottom\051 top -- top, middle or bottom --) 72 186.28 T |
7185 |
|
|
( seethru CDATA #IMPLIED -- for chromakey --) 72 174.28 T |
7186 |
|
|
( alt CDATA #IMPLIED -- description for text-only displays --) 72 162.28 T |
7187 |
|
|
( ismap \050ismap\051 #IMPLIED -- send mouse clicks/drags to server -->) 72 150.28 T |
7188 |
|
|
(<!ELEMENT IMAGE - - \050A|%text;\051*>) 72 138.28 T |
7189 |
|
|
(<!ATTLIST IMAGE) 72 126.28 T |
7190 |
|
|
( src %URL; #REQUIRED -- where to get image data --) 72 114.28 T |
7191 |
|
|
( align \050top|middle|bottom\051 top -- top, middle or bottom --) 72 102.28 T |
7192 |
|
|
( seethru CDATA #IMPLIED -- for transparency --) 72 90.28 T |
7193 |
|
|
FMENDPAGE |
7194 |
|
|
%%EndPage: "43" 48 |
7195 |
|
|
%%Page: "44" 48 |
7196 |
|
|
595.3 792 0 FMBEGINPAGE |
7197 |
|
|
0 10 Q |
7198 |
|
|
0 X |
7199 |
|
|
0 K |
7200 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7201 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7202 |
|
|
(44) 292.65 63.28 T |
7203 |
|
|
2 F |
7204 |
|
|
( ismap \050ismap\051 #IMPLIED -- send mouse clicks/drags to server --) 72 738.28 T |
7205 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 726.28 T |
7206 |
|
|
(<!-- proposal for representing formulae -->) 72 702.28 T |
7207 |
|
|
(<!ELEMENT MATH - - \050%math;\051*>) 72 690.28 T |
7208 |
|
|
(<!ATTLIST MATH id ID #IMPLIED>) 72 678.28 T |
7209 |
|
|
(<!ELEMENT BOX - - \050\050%math;\051*, OVER?, \050%math;\051*\051>) 72 666.28 T |
7210 |
|
|
(<!ELEMENT OVER - O EMPTY>) 72 654.28 T |
7211 |
|
|
(<!ELEMENT CHANGED - O EMPTY -- for change bars -->) 72 630.28 T |
7212 |
|
|
(<!ATTLIST CHANGED -- one of id and idref is always required --) 72 618.28 T |
7213 |
|
|
( id ID #IMPLIED -- signals start of changes --) 72 606.28 T |
7214 |
|
|
( idref IDREF #IMPLIED -- signals end of changes -->) 72 594.28 T |
7215 |
|
|
(<!-- Hypertext Links from points within document nodes -->) 72 570.28 T |
7216 |
|
|
(<!ELEMENT A - - \050#PCDATA | IMG | EM | EMBED\051*>) 72 558.28 T |
7217 |
|
|
(<!ATTLIST A) 72 546.28 T |
7218 |
|
|
( id ID #IMPLIED -- as target of link --) 72 534.28 T |
7219 |
|
|
( name CDATA #IMPLIED -- for backwards compatibility with HTML--) 72 522.28 T |
7220 |
|
|
( shape CDATA #IMPLIED -- list of points for shaped buttons --) 72 510.28 T |
7221 |
|
|
( href %URL; #IMPLIED -- destination node --) 72 498.28 T |
7222 |
|
|
( rel CDATA #IMPLIED -- forward relationship type --) 72 486.28 T |
7223 |
|
|
( rev CDATA #IMPLIED -- reverse relationship type --) 72 474.28 T |
7224 |
|
|
( methods CDATA #IMPLIED -- supported public methods --) 72 462.28 T |
7225 |
|
|
( effect CDATA #IMPLIED -- replace/new/overlay/embed --) 72 450.28 T |
7226 |
|
|
( print CDATA #IMPLIED -- reference/footnote/section --) 72 438.28 T |
7227 |
|
|
( title CDATA #IMPLIED -- when otherwise unavailable --) 72 426.28 T |
7228 |
|
|
( type CDATA #IMPLIED -- for presentation cues --) 72 414.28 T |
7229 |
|
|
( size NAMES #IMPLIED -- for progress cues --) 72 402.28 T |
7230 |
|
|
( lang CDATA #IMPLIED -- ISO language abbreviation -->) 72 390.28 T |
7231 |
|
|
(<!-- Other kinds of relationships between documents -->) 72 378.28 T |
7232 |
|
|
(<!ELEMENT LINK - O EMPTY>) 72 366.28 T |
7233 |
|
|
(<!ATTLIST LINK) 72 342.28 T |
7234 |
|
|
( idref IDREF #IMPLIED -- starting point --) 72 330.28 T |
7235 |
|
|
( href %URL; #IMPLIED -- destination node --) 72 318.28 T |
7236 |
|
|
( rel CDATA #IMPLIED -- forward relationship type --) 72 306.28 T |
7237 |
|
|
( rev CDATA #IMPLIED -- reverse relationship type --) 72 294.28 T |
7238 |
|
|
( methods CDATA #IMPLIED -- supported public methods -->) 72 282.28 T |
7239 |
|
|
(<!-- Original document URL for resolving relative URLs -->) 72 258.28 T |
7240 |
|
|
(<!ELEMENT BASE - O EMPTY>) 72 246.28 T |
7241 |
|
|
(<!ATTLIST BASE HREF %URL; #IMPLIED>) 72 234.28 T |
7242 |
|
|
(<!-- Signif) 72 222.28 T |
7243 |
|
|
(ies the document\325s URL accepts queries -->) 137.96 222.28 T |
7244 |
|
|
(<!ELEMENT ISINDEX - O \050EMPTY\051>) 72 210.28 T |
7245 |
|
|
(<!ATTLIST ISINDEX href %URL; #IMPLIED -- defaults to document\325s URL -->) 72 198.28 T |
7246 |
|
|
-0.8 (<!-- For use with autonumbering editors - don\325t reuse ids, allocate next one) 72 186.28 P |
7247 |
|
|
(starting from this one -->) 72 174.28 T |
7248 |
|
|
(<!ELEMENT NEXTID - O \050EMPTY\051>) 72 162.28 T |
7249 |
|
|
(<!ATTLIST NEXTID N NAME #REQUIRED>) 72 150.28 T |
7250 |
|
|
(<!-- Mnemonic character entities for 8 bit ANSI Latin-1) 72 126.28 T |
7251 |
|
|
( ignore when using other character sets -->) 72 114.28 T |
7252 |
|
|
(<!ENTITY iexcl \322¡\323 -- inverted exclamation mark -->) 72 102.28 T |
7253 |
|
|
(<!ENTITY cent \322¡\323 -- cent sign -->) 72 90.28 T |
7254 |
|
|
FMENDPAGE |
7255 |
|
|
%%EndPage: "44" 49 |
7256 |
|
|
%%Page: "45" 49 |
7257 |
|
|
595.3 792 0 FMBEGINPAGE |
7258 |
|
|
0 10 Q |
7259 |
|
|
0 X |
7260 |
|
|
0 K |
7261 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7262 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7263 |
|
|
(45) 292.65 63.28 T |
7264 |
|
|
2 F |
7265 |
|
|
(<!ENTITY pound \322£\323 -- pound sign -->) 72 738.28 T |
7266 |
|
|
(<!ENTITY yen \322¥\323 -- yen sign -->) 72 726.28 T |
7267 |
|
|
(<!ENTITY brvbar \322¦\323 -- broken vertical bar -->) 72 714.28 T |
7268 |
|
|
(<!ENTITY sect \322§\323 -- section sign -->) 72 702.28 T |
7269 |
|
|
(<!ENTITY copy \322©\323 -- copyright sign -->) 72 690.28 T |
7270 |
|
|
(<!ENTITY laquo \322«\323 -- angle quotation mark, left -->) 72 678.28 T |
7271 |
|
|
(<!ENTITY raquo \322»\323 -- angle quotation mark, right -->) 72 666.28 T |
7272 |
|
|
(<!ENTITY not \322¬\323 -- negation sign -->) 72 654.28 T |
7273 |
|
|
(<!ENTITY reg \322®\323 -- circled R registered sign -->) 72 642.28 T |
7274 |
|
|
(<!ENTITY deg \322°\323 -- degree sign -->) 72 630.28 T |
7275 |
|
|
(<!ENTITY plusmn \322±\323 -- plus or minus sign -->) 72 618.28 T |
7276 |
|
|
(<!ENTITY sup2 \322²\323 -- superscript 2 -->) 72 606.28 T |
7277 |
|
|
(<!ENTITY sup3 \322³\323 -- superscript 3 -->) 72 594.28 T |
7278 |
|
|
(<!ENTITY micro \322µ\323 -- micro sign -->) 72 582.28 T |
7279 |
|
|
(<!ENTITY para \322¶\323 -- paragraph sign -->) 72 570.28 T |
7280 |
|
|
(<!ENTITY sup1 \322¹\323 -- superscript 1 -->) 72 558.28 T |
7281 |
|
|
(<!ENTITY middot \322·\323 -- center dot -->) 72 546.28 T |
7282 |
|
|
(<!ENTITY frac14 \322¼\323 -- fraction 1/4 -->) 72 534.28 T |
7283 |
|
|
(<!ENTITY frac12 \322½\323 -- fraction 1/2 -->) 72 522.28 T |
7284 |
|
|
(<!ENTITY iquest \322¿\323 -- inverted question mark -->) 72 510.28 T |
7285 |
|
|
(<!ENTITY frac34 \322¾\323 -- fraction 3/4 -->) 72 498.28 T |
7286 |
|
|
(<!ENTITY AElig \322Æ\323 -- capital AE diphthong \050ligature\051 -->) 72 486.28 T |
7287 |
|
|
(<!ENTITY Aacute \322Á\323 -- capital A, acute accent -->) 72 474.28 T |
7288 |
|
|
(<!ENTITY Acirc \322Â\323 -- capital A, circumf) 72 462.28 T |
7289 |
|
|
(lex accent -->) 341.85 462.28 T |
7290 |
|
|
(<!ENTITY Agrave \322À\323 -- capital A, grave accent -->) 72 450.28 T |
7291 |
|
|
(<!ENTITY Aring \322Å\323 -- capital A, ring -->) 72 438.28 T |
7292 |
|
|
(<!ENTITY Atilde \322Ã\323 -- capital A, tilde -->) 72 426.28 T |
7293 |
|
|
(<!ENTITY Auml \322Ä\323 -- capital A, dieresis or umlaut mark -->) 72 414.28 T |
7294 |
|
|
(<!ENTITY Ccedil \322Ç\323 -- capital C, cedilla -->) 72 402.28 T |
7295 |
|
|
(<!ENTITY ETH \322Ð\323 -- capital Eth, Icelandic -->) 72 390.28 T |
7296 |
|
|
(<!ENTITY Eacute \322É\323 -- capital E, acute accent -->) 72 378.28 T |
7297 |
|
|
(<!ENTITY Ecirc \322Ê\323 -- capital E, circumf) 72 366.28 T |
7298 |
|
|
(lex accent -->) 341.85 366.28 T |
7299 |
|
|
(<!ENTITY Egrave \322È\323 -- capital E, grave accent -->) 72 354.28 T |
7300 |
|
|
(<!ENTITY Euml \322Ë\323 -- capital E, dieresis or umlaut mark -->) 72 342.28 T |
7301 |
|
|
(<!ENTITY Iacute \322Í\323 -- capital I, acute accent -->) 72 330.28 T |
7302 |
|
|
(<!ENTITY Icirc \322Î\323 -- capital I, circumf) 72 318.28 T |
7303 |
|
|
(lex accent -->) 341.85 318.28 T |
7304 |
|
|
(<!ENTITY Igrave \322Ì\323 -- capital I, grave accent -->) 72 306.28 T |
7305 |
|
|
(<!ENTITY Iuml \322Ï\323 -- capital I, dieresis or umlaut mark -->) 72 294.28 T |
7306 |
|
|
(<!ENTITY Ntilde \322Ñ\323 -- capital N, tilde -->) 72 282.28 T |
7307 |
|
|
(<!ENTITY Oacute \322Ó\323 -- capital O, acute accent -->) 72 270.28 T |
7308 |
|
|
(<!ENTITY Ocirc \322Ô\323 -- capital O, circumf) 72 258.28 T |
7309 |
|
|
(lex accent -->) 341.85 258.28 T |
7310 |
|
|
(<!ENTITY Ograve \322Ò\323 -- capital O, grave accent -->) 72 246.28 T |
7311 |
|
|
(<!ENTITY Oslash \322Ø\323 -- capital O, slash -->) 72 234.28 T |
7312 |
|
|
(<!ENTITY Otilde \322Õ\323 -- capital O, tilde -->) 72 222.28 T |
7313 |
|
|
(<!ENTITY Ouml \322Ö\323 -- capital O, dieresis or umlaut mark -->) 72 210.28 T |
7314 |
|
|
(<!ENTITY THORN \322Þ\323 -- capital THORN, Icelandic -->) 72 198.28 T |
7315 |
|
|
(<!ENTITY Uacute \322Ú\323 -- capital U, acute accent -->) 72 186.28 T |
7316 |
|
|
(<!ENTITY Ucirc \322Û\323 -- capital U, circumf) 72 174.28 T |
7317 |
|
|
(lex accent -->) 341.85 174.28 T |
7318 |
|
|
(<!ENTITY Ugrave \322Ù\323 -- capital U, grave accent -->) 72 162.28 T |
7319 |
|
|
(<!ENTITY Uuml \322Ü\323 -- capital U, dieresis or umlaut mark -->) 72 150.28 T |
7320 |
|
|
(<!ENTITY Yacute \322Ý\323 -- capital Y, acute accent -->) 72 138.28 T |
7321 |
|
|
(<!ENTITY aacute \322á\323 -- small a, acute accent -->) 72 126.28 T |
7322 |
|
|
(<!ENTITY acirc \322â\323 -- small a, circumf) 72 114.28 T |
7323 |
|
|
(lex accent -->) 329.86 114.28 T |
7324 |
|
|
(<!ENTITY aelig \322æ\323 -- small ae diphthong \050ligature\051 -->) 72 102.28 T |
7325 |
|
|
(<!ENTITY agrave \322à\323 -- small a, grave accent -->) 72 90.28 T |
7326 |
|
|
FMENDPAGE |
7327 |
|
|
%%EndPage: "45" 50 |
7328 |
|
|
%%Page: "46" 50 |
7329 |
|
|
595.3 792 0 FMBEGINPAGE |
7330 |
|
|
0 10 Q |
7331 |
|
|
0 X |
7332 |
|
|
0 K |
7333 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7334 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7335 |
|
|
(46) 292.65 63.28 T |
7336 |
|
|
2 F |
7337 |
|
|
(<!ENTITY amp \322&\323 -- ampersand -->) 72 738.28 T |
7338 |
|
|
(<!ENTITY aring \322å\323 -- small a, ring -->) 72 726.28 T |
7339 |
|
|
(<!ENTITY atilde \322ã\323 -- small a, tilde -->) 72 714.28 T |
7340 |
|
|
(<!ENTITY auml \322ä\323 -- small a, dieresis or umlaut mark -->) 72 702.28 T |
7341 |
|
|
(<!ENTITY ccedil \322ç\323 -- small c, cedilla -->) 72 690.28 T |
7342 |
|
|
(<!ENTITY eacute \322é\323 -- small e, acute accent -->) 72 678.28 T |
7343 |
|
|
(<!ENTITY ecirc \322ê\323 -- small e, circumf) 72 666.28 T |
7344 |
|
|
(lex accent -->) 329.86 666.28 T |
7345 |
|
|
(<!ENTITY egrave \322è\323 -- small e, grave accent -->) 72 654.28 T |
7346 |
|
|
(<!ENTITY eth \322ð\323 -- small eth, Icelandic -->) 72 642.28 T |
7347 |
|
|
(<!ENTITY euml \322ë\323 -- small e, dieresis or umlaut mark -->) 72 630.28 T |
7348 |
|
|
(<!ENTITY gt \322>\323 -- greater than -->) 72 618.28 T |
7349 |
|
|
(<!ENTITY iacute \322í\323 -- small i, acute accent -->) 72 606.28 T |
7350 |
|
|
(<!ENTITY icirc \322î\323 -- small i, circumf) 72 594.28 T |
7351 |
|
|
(lex accent -->) 329.86 594.28 T |
7352 |
|
|
(<!ENTITY igrave \322ì\323 -- small i, grave accent -->) 72 582.28 T |
7353 |
|
|
(<!ENTITY iuml \322ï\323 -- small i, dieresis or umlaut mark -->) 72 570.28 T |
7354 |
|
|
(<!ENTITY lt \322<\323 -- less than -->) 72 558.28 T |
7355 |
|
|
(<!ENTITY ntilde \322ñ\323 -- small n, tilde -->) 72 546.28 T |
7356 |
|
|
(<!ENTITY oacute \322ó\323 -- small o, acute accent -->) 72 534.28 T |
7357 |
|
|
(<!ENTITY ocirc \322ô\323 -- small o, circumf) 72 522.28 T |
7358 |
|
|
(lex accent -->) 329.86 522.28 T |
7359 |
|
|
(<!ENTITY ograve \322ò\323 -- small o, grave accent -->) 72 510.28 T |
7360 |
|
|
(<!ENTITY oslash \322ø\323 -- small o, slash -->) 72 498.28 T |
7361 |
|
|
(<!ENTITY otilde \322õ\323 -- small o, tilde -->) 72 486.28 T |
7362 |
|
|
(<!ENTITY ouml \322ö\323 -- small o, dieresis or umlaut mark -->) 72 474.28 T |
7363 |
|
|
(<!ENTITY szlig \322ß\323 -- small sharp s, German \050sz ligature\051 -->) 72 462.28 T |
7364 |
|
|
(<!ENTITY thorn \322þ\323 -- small thorn, Icelandic -->) 72 450.28 T |
7365 |
|
|
(<!ENTITY uacute \322ú\323 -- small u, acute accent -->) 72 438.28 T |
7366 |
|
|
(<!ENTITY ucirc \322û\323 -- small u, circumf) 72 426.28 T |
7367 |
|
|
(lex accent -->) 329.86 426.28 T |
7368 |
|
|
(<!ENTITY ugrave \322ù\323 -- small u, grave accent -->) 72 414.28 T |
7369 |
|
|
(<!ENTITY uuml \322ü\323 -- small u, dieresis or umlaut mark -->) 72 402.28 T |
7370 |
|
|
(<!ENTITY yacute \322ý\323 -- small y, acute accent -->) 72 390.28 T |
7371 |
|
|
(<!ENTITY yuml \322ÿ\323 -- small y, dieresis or umlaut mark -->) 72 378.28 T |
7372 |
|
|
(<!-- The END -->) 72 354.28 T |
7373 |
|
|
(]>) 72 342.28 T |
7374 |
|
|
FMENDPAGE |
7375 |
|
|
%%EndPage: "46" 51 |
7376 |
|
|
%%Page: "47" 51 |
7377 |
|
|
595.3 792 0 FMBEGINPAGE |
7378 |
|
|
0 10 Q |
7379 |
|
|
0 X |
7380 |
|
|
0 K |
7381 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7382 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7383 |
|
|
(47) 292.65 63.28 T |
7384 |
|
|
1 18 Q |
7385 |
|
|
(Appendix II) 257.52 714.95 T |
7386 |
|
|
3 12 Q |
7387 |
|
|
(The proposed character entities for HTML+ and their corresponding char-) 108 682.95 T |
7388 |
|
|
(acter codes for Unicode and the Adobe Latin-1 & Symbol character sets.) 108 668.95 T |
7389 |
|
|
5 F |
7390 |
|
|
(Symbol) 43.67 610.95 T |
7391 |
|
|
(ISO) 106.67 617.95 T |
7392 |
|
|
(8879) 105.01 603.95 T |
7393 |
|
|
(Adobe name) 156.85 610.95 T |
7394 |
|
|
(Adobe) 244.34 617.95 T |
7395 |
|
|
(Hex) 250.67 603.95 T |
7396 |
|
|
(Unicode) 294.01 610.95 T |
7397 |
|
|
(Unicode name) 413.52 610.95 T |
7398 |
|
|
5 18 Q |
7399 |
|
|
(ISO Latin 1 Entities) 219.78 575.95 T |
7400 |
|
|
0 12 Q |
7401 |
|
|
(") 42 551.95 T |
7402 |
|
|
(quot) 96 551.95 T |
7403 |
|
|
(quotedbl) 150 551.95 T |
7404 |
|
|
(22) 240 551.95 T |
7405 |
|
|
(0022) 294 551.95 T |
7406 |
|
|
0 10 Q |
7407 |
|
|
(QUOT) 348 553.28 T |
7408 |
|
|
(A) 374.95 553.28 T |
7409 |
|
|
(TION MARK) 381.06 553.28 T |
7410 |
|
|
0 12 Q |
7411 |
|
|
(&) 42 529.95 T |
7412 |
|
|
(amp) 96 529.95 T |
7413 |
|
|
(ampersand) 150 529.95 T |
7414 |
|
|
(26) 240 529.95 T |
7415 |
|
|
(0026) 294 529.95 T |
7416 |
|
|
0 10 Q |
7417 |
|
|
(AMPERSAND) 348 531.28 T |
7418 |
|
|
0 12 Q |
7419 |
|
|
(<) 42 507.95 T |
7420 |
|
|
(lt) 96 507.95 T |
7421 |
|
|
(less) 150 507.95 T |
7422 |
|
|
(3C) 240 507.95 T |
7423 |
|
|
(003C) 294 507.95 T |
7424 |
|
|
0 10 Q |
7425 |
|
|
(LESS-THAN SIGN) 348 509.28 T |
7426 |
|
|
0 12 Q |
7427 |
|
|
(>) 42 485.95 T |
7428 |
|
|
(gt) 96 485.95 T |
7429 |
|
|
(greater) 150 485.95 T |
7430 |
|
|
(3E) 240 485.95 T |
7431 |
|
|
(003E) 294 485.95 T |
7432 |
|
|
0 10 Q |
7433 |
|
|
(GREA) 348 487.28 T |
7434 |
|
|
(TER-THAN SIGN) 374.1 487.28 T |
7435 |
|
|
0 12 Q |
7436 |
|
|
(nbsp) 96 463.95 T |
7437 |
|
|
(A0) 240 463.95 T |
7438 |
|
|
(00A0) 294 463.95 T |
7439 |
|
|
0 10 Q |
7440 |
|
|
(NON-BREAKING SP) 348 465.28 T |
7441 |
|
|
(ACE) 437.3 465.28 T |
7442 |
|
|
0 14 Q |
7443 |
|
|
(\301) 42 440.61 T |
7444 |
|
|
0 12 Q |
7445 |
|
|
(iexcl) 96 441.95 T |
7446 |
|
|
(exclamdown) 150 441.95 T |
7447 |
|
|
(A1) 240 441.95 T |
7448 |
|
|
(00A1) 294 441.95 T |
7449 |
|
|
0 10 Q |
7450 |
|
|
(INVER) 348 443.28 T |
7451 |
|
|
(TED EXCLAMA) 377.93 443.28 T |
7452 |
|
|
(TION MARK) 448.17 443.28 T |
7453 |
|
|
0 14 Q |
7454 |
|
|
(\242) 42 416.61 T |
7455 |
|
|
0 12 Q |
7456 |
|
|
(cent) 96 417.95 T |
7457 |
|
|
(cent) 150 417.95 T |
7458 |
|
|
(A2) 240 417.95 T |
7459 |
|
|
(00A2) 294 417.95 T |
7460 |
|
|
0 10 Q |
7461 |
|
|
(CENT SIGN) 348 419.28 T |
7462 |
|
|
0 14 Q |
7463 |
|
|
(\243) 42 392.61 T |
7464 |
|
|
0 12 Q |
7465 |
|
|
(pound) 96 393.95 T |
7466 |
|
|
(sterling) 150 393.95 T |
7467 |
|
|
(A3) 240 393.95 T |
7468 |
|
|
(00A3) 294 393.95 T |
7469 |
|
|
0 10 Q |
7470 |
|
|
(POUND SIGN) 348 395.28 T |
7471 |
|
|
0 14 Q |
7472 |
|
|
(\333) 42 368.61 T |
7473 |
|
|
0 12 Q |
7474 |
|
|
(curren) 96 369.95 T |
7475 |
|
|
(currency) 150 369.95 T |
7476 |
|
|
(A4) 240 369.95 T |
7477 |
|
|
(00A4) 294 369.95 T |
7478 |
|
|
0 10 Q |
7479 |
|
|
(CURRENCY SIGN) 348 371.28 T |
7480 |
|
|
0 14 Q |
7481 |
|
|
(\264) 42 344.61 T |
7482 |
|
|
0 12 Q |
7483 |
|
|
(yen) 96 345.95 T |
7484 |
|
|
(yen) 150 345.95 T |
7485 |
|
|
(A5) 240 345.95 T |
7486 |
|
|
(00A5) 294 345.95 T |
7487 |
|
|
0 10 Q |
7488 |
|
|
(YEN SIGN) 348 347.28 T |
7489 |
|
|
0 12 Q |
7490 |
|
|
(brvbar) 96 321.95 T |
7491 |
|
|
(brokenbar) 150 321.95 T |
7492 |
|
|
(A6) 240 321.95 T |
7493 |
|
|
(00A6) 294 321.95 T |
7494 |
|
|
0 10 Q |
7495 |
|
|
(BROKEN VER) 348 323.28 T |
7496 |
|
|
(TICAL BAR) 410.98 323.28 T |
7497 |
|
|
0 14 Q |
7498 |
|
|
(\244) 42 298.61 T |
7499 |
|
|
0 12 Q |
7500 |
|
|
(sect) 96 299.95 T |
7501 |
|
|
(section) 150 299.95 T |
7502 |
|
|
(A7) 240 299.95 T |
7503 |
|
|
(00A7) 294 299.95 T |
7504 |
|
|
0 10 Q |
7505 |
|
|
(SECTION SIGN) 348 301.28 T |
7506 |
|
|
0 12 Q |
7507 |
|
|
(\254) 42 275.95 T |
7508 |
|
|
(die) 96 275.95 T |
7509 |
|
|
(dieresis) 150 275.95 T |
7510 |
|
|
(A8) 240 275.95 T |
7511 |
|
|
(00A8) 294 275.95 T |
7512 |
|
|
0 10 Q |
7513 |
|
|
(SP) 348 277.28 T |
7514 |
|
|
(ACING DIAERESIS) 358.19 277.28 T |
7515 |
|
|
0 14 Q |
7516 |
|
|
(\251) 42 252.61 T |
7517 |
|
|
0 12 Q |
7518 |
|
|
(copy) 96 253.95 T |
7519 |
|
|
(copyright) 150 253.95 T |
7520 |
|
|
(A9) 240 253.95 T |
7521 |
|
|
(00A9) 294 253.95 T |
7522 |
|
|
0 10 Q |
7523 |
|
|
(COPYRIGHT SIGN) 348 255.28 T |
7524 |
|
|
0 14 Q |
7525 |
|
|
(\273) 42 228.61 T |
7526 |
|
|
0 12 Q |
7527 |
|
|
(ordf) 96 229.95 T |
7528 |
|
|
(ordfeminine) 150 229.95 T |
7529 |
|
|
(AA) 240 229.95 T |
7530 |
|
|
(00AA) 294 229.95 T |
7531 |
|
|
0 10 Q |
7532 |
|
|
(FEMININE ORDINAL INDICA) 348 231.28 T |
7533 |
|
|
(T) 479.57 231.28 T |
7534 |
|
|
(OR) 485.49 231.28 T |
7535 |
|
|
0 14 Q |
7536 |
|
|
(\307) 42 204.61 T |
7537 |
|
|
0 12 Q |
7538 |
|
|
(laquo) 96 205.95 T |
7539 |
|
|
(guillemotleft) 150 205.95 T |
7540 |
|
|
(AB) 240 205.95 T |
7541 |
|
|
(00AB) 294 205.95 T |
7542 |
|
|
0 10 Q |
7543 |
|
|
(LEFT POINTING GUILLEMET) 348 207.28 T |
7544 |
|
|
0 14 Q |
7545 |
|
|
(\302) 42 180.61 T |
7546 |
|
|
0 12 Q |
7547 |
|
|
(not) 96 181.95 T |
7548 |
|
|
(logicalnot) 150 181.95 T |
7549 |
|
|
(AC) 240 181.95 T |
7550 |
|
|
(00AC) 294 181.95 T |
7551 |
|
|
0 10 Q |
7552 |
|
|
(NOT SIGN) 348 183.28 T |
7553 |
|
|
0 12 Q |
7554 |
|
|
(-) 42 157.95 T |
7555 |
|
|
(shy) 96 157.95 T |
7556 |
|
|
(hyphen) 150 157.95 T |
7557 |
|
|
(AD) 240 157.95 T |
7558 |
|
|
(00AD) 294 157.95 T |
7559 |
|
|
0 10 Q |
7560 |
|
|
(SOFT HYPHEN) 348 159.28 T |
7561 |
|
|
0 14 Q |
7562 |
|
|
(\250) 42 134.61 T |
7563 |
|
|
0 12 Q |
7564 |
|
|
(reg) 96 135.95 T |
7565 |
|
|
(registered) 150 135.95 T |
7566 |
|
|
(AE) 240 135.95 T |
7567 |
|
|
(00AE) 294 135.95 T |
7568 |
|
|
0 10 Q |
7569 |
|
|
(REGISTERED TRADE MARK SIGN) 348 137.28 T |
7570 |
|
|
0 14 Q |
7571 |
|
|
(\370) 42 110.61 T |
7572 |
|
|
0 12 Q |
7573 |
|
|
(macron) 96 111.95 T |
7574 |
|
|
(macron) 150 111.95 T |
7575 |
|
|
(AF) 240 111.95 T |
7576 |
|
|
(00AF) 294 111.95 T |
7577 |
|
|
0 10 Q |
7578 |
|
|
(SP) 348 113.28 T |
7579 |
|
|
(ACING MACRON) 358.19 113.28 T |
7580 |
|
|
0 14 Q |
7581 |
|
|
(\373) 42 86.61 T |
7582 |
|
|
0 12 Q |
7583 |
|
|
(degree) 96 87.95 T |
7584 |
|
|
(degree) 150 87.95 T |
7585 |
|
|
(B0) 240 87.95 T |
7586 |
|
|
(00B0) 294 87.95 T |
7587 |
|
|
0 10 Q |
7588 |
|
|
(DEGREE SIGN) 348 89.28 T |
7589 |
|
|
36 633.7 36 78.2 2 L |
7590 |
|
|
V |
7591 |
|
|
0.5 H |
7592 |
|
|
0 Z |
7593 |
|
|
N |
7594 |
|
|
90 634.2 90 595.45 2 L |
7595 |
|
|
V |
7596 |
|
|
N |
7597 |
|
|
90 566.2 90 77.7 2 L |
7598 |
|
|
V |
7599 |
|
|
N |
7600 |
|
|
144 634.2 144 595.45 2 L |
7601 |
|
|
V |
7602 |
|
|
N |
7603 |
|
|
144 566.2 144 77.7 2 L |
7604 |
|
|
V |
7605 |
|
|
N |
7606 |
|
|
234 634.2 234 595.45 2 L |
7607 |
|
|
V |
7608 |
|
|
N |
7609 |
|
|
234 566.2 234 77.7 2 L |
7610 |
|
|
V |
7611 |
|
|
N |
7612 |
|
|
288 634.2 288 595.45 2 L |
7613 |
|
|
V |
7614 |
|
|
N |
7615 |
|
|
288 566.2 288 77.7 2 L |
7616 |
|
|
V |
7617 |
|
|
N |
7618 |
|
|
342 634.2 342 595.45 2 L |
7619 |
|
|
V |
7620 |
|
|
N |
7621 |
|
|
342 566.2 342 77.7 2 L |
7622 |
|
|
V |
7623 |
|
|
N |
7624 |
|
|
558 633.7 558 78.2 2 L |
7625 |
|
|
V |
7626 |
|
|
N |
7627 |
|
|
35.75 633.95 558.25 633.95 2 L |
7628 |
|
|
V |
7629 |
|
|
N |
7630 |
|
|
36.25 595.2 557.75 595.2 2 L |
7631 |
|
|
V |
7632 |
|
|
N |
7633 |
|
|
36.25 592.7 557.75 592.7 2 L |
7634 |
|
|
V |
7635 |
|
|
N |
7636 |
|
|
35.75 565.95 558.25 565.95 2 L |
7637 |
|
|
V |
7638 |
|
|
N |
7639 |
|
|
35.75 543.95 558.25 543.95 2 L |
7640 |
|
|
V |
7641 |
|
|
N |
7642 |
|
|
35.75 521.95 558.25 521.95 2 L |
7643 |
|
|
V |
7644 |
|
|
N |
7645 |
|
|
35.75 499.95 558.25 499.95 2 L |
7646 |
|
|
V |
7647 |
|
|
N |
7648 |
|
|
35.75 477.95 558.25 477.95 2 L |
7649 |
|
|
V |
7650 |
|
|
N |
7651 |
|
|
35.75 455.95 558.25 455.95 2 L |
7652 |
|
|
V |
7653 |
|
|
N |
7654 |
|
|
35.75 431.95 558.25 431.95 2 L |
7655 |
|
|
V |
7656 |
|
|
N |
7657 |
|
|
35.75 407.95 558.25 407.95 2 L |
7658 |
|
|
V |
7659 |
|
|
N |
7660 |
|
|
35.75 383.95 558.25 383.95 2 L |
7661 |
|
|
V |
7662 |
|
|
N |
7663 |
|
|
35.75 359.95 558.25 359.95 2 L |
7664 |
|
|
V |
7665 |
|
|
N |
7666 |
|
|
35.75 335.95 558.25 335.95 2 L |
7667 |
|
|
V |
7668 |
|
|
N |
7669 |
|
|
35.75 313.95 558.25 313.95 2 L |
7670 |
|
|
V |
7671 |
|
|
N |
7672 |
|
|
35.75 289.95 558.25 289.95 2 L |
7673 |
|
|
V |
7674 |
|
|
N |
7675 |
|
|
35.75 267.95 558.25 267.95 2 L |
7676 |
|
|
V |
7677 |
|
|
N |
7678 |
|
|
35.75 243.95 558.25 243.95 2 L |
7679 |
|
|
V |
7680 |
|
|
N |
7681 |
|
|
35.75 219.95 558.25 219.95 2 L |
7682 |
|
|
V |
7683 |
|
|
N |
7684 |
|
|
35.75 195.95 558.25 195.95 2 L |
7685 |
|
|
V |
7686 |
|
|
N |
7687 |
|
|
35.75 171.95 558.25 171.95 2 L |
7688 |
|
|
V |
7689 |
|
|
N |
7690 |
|
|
35.75 149.95 558.25 149.95 2 L |
7691 |
|
|
V |
7692 |
|
|
N |
7693 |
|
|
35.75 125.95 558.25 125.95 2 L |
7694 |
|
|
V |
7695 |
|
|
N |
7696 |
|
|
35.75 101.95 558.25 101.95 2 L |
7697 |
|
|
V |
7698 |
|
|
N |
7699 |
|
|
35.75 77.95 558.25 77.95 2 L |
7700 |
|
|
V |
7701 |
|
|
N |
7702 |
|
|
FMENDPAGE |
7703 |
|
|
%%EndPage: "47" 52 |
7704 |
|
|
%%Page: "48" 52 |
7705 |
|
|
595.3 792 0 FMBEGINPAGE |
7706 |
|
|
0 10 Q |
7707 |
|
|
0 X |
7708 |
|
|
0 K |
7709 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
7710 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
7711 |
|
|
(48) 292.65 63.28 T |
7712 |
|
|
9 14 Q |
7713 |
|
|
(\261) 42 698.61 T |
7714 |
|
|
0 12 Q |
7715 |
|
|
(plusmn) 96 699.95 T |
7716 |
|
|
(plusminus) 150 699.95 T |
7717 |
|
|
(B1) 240 699.95 T |
7718 |
|
|
(00B1) 294 699.95 T |
7719 |
|
|
0 10 Q |
7720 |
|
|
(PLUS-OR-MINUS SIGN) 348 701.28 T |
7721 |
|
|
(2) 42 680.75 T |
7722 |
|
|
0 12 Q |
7723 |
|
|
(sup2) 96 675.95 T |
7724 |
|
|
(twosuperior) 150 675.95 T |
7725 |
|
|
(B2) 240 675.95 T |
7726 |
|
|
(00B2) 294 675.95 T |
7727 |
|
|
0 10 Q |
7728 |
|
|
(SUPERSCRIPT DIGIT TWO) 348 677.28 T |
7729 |
|
|
(3) 42 658.75 T |
7730 |
|
|
0 12 Q |
7731 |
|
|
(sup3) 96 653.95 T |
7732 |
|
|
(threesuperior) 150 653.95 T |
7733 |
|
|
(B3) 240 653.95 T |
7734 |
|
|
(00B3) 294 653.95 T |
7735 |
|
|
0 10 Q |
7736 |
|
|
(SUPERSCRIPT DIGIT THREE) 348 655.28 T |
7737 |
|
|
0 14 Q |
7738 |
|
|
(\253) 42 630.62 T |
7739 |
|
|
0 12 Q |
7740 |
|
|
(acute) 96 631.95 T |
7741 |
|
|
(acute) 150 631.95 T |
7742 |
|
|
(B4) 240 631.95 T |
7743 |
|
|
(00B4) 294 631.95 T |
7744 |
|
|
0 10 Q |
7745 |
|
|
(SP) 348 633.28 T |
7746 |
|
|
(ACING ACUTE) 358.19 633.28 T |
7747 |
|
|
9 14 Q |
7748 |
|
|
(m) 42 606.62 T |
7749 |
|
|
0 12 Q |
7750 |
|
|
(micro) 96 607.95 T |
7751 |
|
|
(mu) 150 607.95 T |
7752 |
|
|
(B5) 240 607.95 T |
7753 |
|
|
(00B5) 294 607.95 T |
7754 |
|
|
0 10 Q |
7755 |
|
|
(MICRO SIGN) 348 609.28 T |
7756 |
|
|
0 14 Q |
7757 |
|
|
(\246) 42 582.62 T |
7758 |
|
|
0 12 Q |
7759 |
|
|
(para) 96 583.95 T |
7760 |
|
|
(paragraph) 150 583.95 T |
7761 |
|
|
(B6) 240 583.95 T |
7762 |
|
|
(00B6) 294 583.95 T |
7763 |
|
|
0 10 Q |
7764 |
|
|
(P) 348 585.28 T |
7765 |
|
|
(ARAGRAPH SIGN) 352.64 585.28 T |
7766 |
|
|
0 12 Q |
7767 |
|
|
(\341) 42 559.95 T |
7768 |
|
|
(middot) 96 559.95 T |
7769 |
|
|
(periodcentered) 150 559.95 T |
7770 |
|
|
(B7) 240 559.95 T |
7771 |
|
|
(00B7) 294 559.95 T |
7772 |
|
|
0 10 Q |
7773 |
|
|
(MIDDLE DOT) 348 561.28 T |
7774 |
|
|
0 12 Q |
7775 |
|
|
(\374) 42 537.95 T |
7776 |
|
|
(Cedilla) 96 537.95 T |
7777 |
|
|
(cedilla) 150 537.95 T |
7778 |
|
|
(B8) 240 537.95 T |
7779 |
|
|
(00B8) 294 537.95 T |
7780 |
|
|
0 10 Q |
7781 |
|
|
(SP) 348 539.28 T |
7782 |
|
|
(ACING CEDILLA) 358.19 539.28 T |
7783 |
|
|
(1) 42 520.75 T |
7784 |
|
|
0 12 Q |
7785 |
|
|
(sup1) 96 515.95 T |
7786 |
|
|
(onesuperior) 150 515.95 T |
7787 |
|
|
(B9) 240 515.95 T |
7788 |
|
|
(00B9) 294 515.95 T |
7789 |
|
|
0 10 Q |
7790 |
|
|
(SUPERSCRIPT DIGIT ONE) 348 517.28 T |
7791 |
|
|
0 14 Q |
7792 |
|
|
(\274) 42 492.61 T |
7793 |
|
|
0 12 Q |
7794 |
|
|
(ordm) 96 493.95 T |
7795 |
|
|
(ordmasculine) 150 493.95 T |
7796 |
|
|
(BA) 240 493.95 T |
7797 |
|
|
(00BA) 294 493.95 T |
7798 |
|
|
0 10 Q |
7799 |
|
|
(MASCULINE ORDINAL INDICA) 348 495.28 T |
7800 |
|
|
(T) 490.12 495.28 T |
7801 |
|
|
(OR) 496.05 495.28 T |
7802 |
|
|
0 14 Q |
7803 |
|
|
(\310) 42 468.61 T |
7804 |
|
|
0 12 Q |
7805 |
|
|
(raquo) 96 469.95 T |
7806 |
|
|
(guillemotright) 150 469.95 T |
7807 |
|
|
(BB) 240 469.95 T |
7808 |
|
|
(00BB) 294 469.95 T |
7809 |
|
|
0 10 Q |
7810 |
|
|
(RIGHT POINTING GUILLEMET) 348 471.28 T |
7811 |
|
|
0 12 Q |
7812 |
|
|
(1/4) 42 445.95 T |
7813 |
|
|
(frac14) 96 445.95 T |
7814 |
|
|
(onequarter) 150 445.95 T |
7815 |
|
|
(BC) 240 445.95 T |
7816 |
|
|
(00BC) 294 445.95 T |
7817 |
|
|
0 10 Q |
7818 |
|
|
(FRACTION ONE QUAR) 348 447.28 T |
7819 |
|
|
(TER) 451.22 447.28 T |
7820 |
|
|
0 12 Q |
7821 |
|
|
(1/2) 42 423.95 T |
7822 |
|
|
(frac12) 96 423.95 T |
7823 |
|
|
(onehalf) 150 423.95 T |
7824 |
|
|
(BD) 240 423.95 T |
7825 |
|
|
(00BD) 294 423.95 T |
7826 |
|
|
0 10 Q |
7827 |
|
|
(FRACTION ONE HALF) 348 425.28 T |
7828 |
|
|
0 12 Q |
7829 |
|
|
(3/4) 42 401.95 T |
7830 |
|
|
(frac34) 96 401.95 T |
7831 |
|
|
(threequarters) 150 401.95 T |
7832 |
|
|
(BE) 240 401.95 T |
7833 |
|
|
(00BE) 294 401.95 T |
7834 |
|
|
0 10 Q |
7835 |
|
|
(FRACTION THREE QUAR) 348 403.28 T |
7836 |
|
|
(TERS) 462.89 403.28 T |
7837 |
|
|
0 14 Q |
7838 |
|
|
(\300) 42 378.61 T |
7839 |
|
|
0 12 Q |
7840 |
|
|
(iquest) 96 379.95 T |
7841 |
|
|
(questiondown) 150 379.95 T |
7842 |
|
|
(BF) 240 379.95 T |
7843 |
|
|
(00BF) 294 379.95 T |
7844 |
|
|
0 10 Q |
7845 |
|
|
(INVER) 348 381.28 T |
7846 |
|
|
(TED QUESTION MARK) 377.93 381.28 T |
7847 |
|
|
0 14 Q |
7848 |
|
|
(\313) 42 354.61 T |
7849 |
|
|
0 12 Q |
7850 |
|
|
(Agrave) 96 355.95 T |
7851 |
|
|
(Agrave) 150 355.95 T |
7852 |
|
|
(C0) 240 355.95 T |
7853 |
|
|
(00C0) 294 355.95 T |
7854 |
|
|
0 10 Q |
7855 |
|
|
(LA) 348 357.28 T |
7856 |
|
|
(TIN CAPIT) 360.21 357.28 T |
7857 |
|
|
(AL LETTER A GRA) 407.44 357.28 T |
7858 |
|
|
(VE) 492.48 357.28 T |
7859 |
|
|
0 14 Q |
7860 |
|
|
(\347) 42 330.61 T |
7861 |
|
|
0 12 Q |
7862 |
|
|
(Aacute) 96 331.95 T |
7863 |
|
|
(Aacute) 150 331.95 T |
7864 |
|
|
(C1) 240 331.95 T |
7865 |
|
|
(00C1) 294 331.95 T |
7866 |
|
|
0 10 Q |
7867 |
|
|
(LA) 348 333.28 T |
7868 |
|
|
(TIN CAPIT) 360.21 333.28 T |
7869 |
|
|
(AL LETTER A ACUTE) 407.44 333.28 T |
7870 |
|
|
0 14 Q |
7871 |
|
|
(\345) 42 306.61 T |
7872 |
|
|
0 12 Q |
7873 |
|
|
(Acirc) 96 307.95 T |
7874 |
|
|
(Acircum\337ex) 150 307.95 T |
7875 |
|
|
(C2) 240 307.95 T |
7876 |
|
|
(00C2) 294 307.95 T |
7877 |
|
|
0 10 Q |
7878 |
|
|
(LA) 348 309.28 T |
7879 |
|
|
(TIN CAPIT) 360.21 309.28 T |
7880 |
|
|
(AL LETTER A CIRCUMFLEX) 407.44 309.28 T |
7881 |
|
|
0 14 Q |
7882 |
|
|
(\314) 42 281.61 T |
7883 |
|
|
0 12 Q |
7884 |
|
|
(Atilde) 96 283.95 T |
7885 |
|
|
(Atilde) 150 283.95 T |
7886 |
|
|
(C3) 240 283.95 T |
7887 |
|
|
(00C3) 294 283.95 T |
7888 |
|
|
0 10 Q |
7889 |
|
|
(LA) 348 285.28 T |
7890 |
|
|
(TIN CAPIT) 360.21 285.28 T |
7891 |
|
|
(AL LETTER A TILDE) 407.44 285.28 T |
7892 |
|
|
0 14 Q |
7893 |
|
|
(\200) 42 258.61 T |
7894 |
|
|
0 12 Q |
7895 |
|
|
(Auml) 96 259.95 T |
7896 |
|
|
(Adieresis) 150 259.95 T |
7897 |
|
|
(C4) 240 259.95 T |
7898 |
|
|
(00C4) 294 259.95 T |
7899 |
|
|
0 10 Q |
7900 |
|
|
(LA) 348 261.28 T |
7901 |
|
|
(TIN CAPIT) 360.21 261.28 T |
7902 |
|
|
(AL LETTER A DIAERESIS) 407.44 261.28 T |
7903 |
|
|
0 14 Q |
7904 |
|
|
(\201) 42 233.61 T |
7905 |
|
|
0 12 Q |
7906 |
|
|
(Aring) 96 235.95 T |
7907 |
|
|
(Aring) 150 235.95 T |
7908 |
|
|
(C5) 240 235.95 T |
7909 |
|
|
(00C5) 294 235.95 T |
7910 |
|
|
0 10 Q |
7911 |
|
|
(LA) 348 237.28 T |
7912 |
|
|
(TIN CAPIT) 360.21 237.28 T |
7913 |
|
|
(AL LETTER A RING) 407.44 237.28 T |
7914 |
|
|
0 14 Q |
7915 |
|
|
(\256) 42 210.61 T |
7916 |
|
|
0 12 Q |
7917 |
|
|
(AElig) 96 211.95 T |
7918 |
|
|
(AE) 150 211.95 T |
7919 |
|
|
(C6) 240 211.95 T |
7920 |
|
|
(00C6) 294 211.95 T |
7921 |
|
|
0 10 Q |
7922 |
|
|
(LA) 348 213.28 T |
7923 |
|
|
(TIN CAPIT) 360.21 213.28 T |
7924 |
|
|
(AL LETTER A E) 407.44 213.28 T |
7925 |
|
|
0 14 Q |
7926 |
|
|
(\202) 42 186.61 T |
7927 |
|
|
0 12 Q |
7928 |
|
|
(Ccedil) 96 187.95 T |
7929 |
|
|
(CCedilla) 150 187.95 T |
7930 |
|
|
(C7) 240 187.95 T |
7931 |
|
|
(00C7) 294 187.95 T |
7932 |
|
|
0 10 Q |
7933 |
|
|
(LA) 348 189.28 T |
7934 |
|
|
(TIN CAPIT) 360.21 189.28 T |
7935 |
|
|
(AL LETTER C CEDILLA) 407.44 189.28 T |
7936 |
|
|
0 14 Q |
7937 |
|
|
(\351) 42 162.61 T |
7938 |
|
|
0 12 Q |
7939 |
|
|
(Egrave) 96 163.95 T |
7940 |
|
|
(Egrave) 150 163.95 T |
7941 |
|
|
(C8) 240 163.95 T |
7942 |
|
|
(00C8) 294 163.95 T |
7943 |
|
|
0 10 Q |
7944 |
|
|
(LA) 348 165.28 T |
7945 |
|
|
(TIN CAPIT) 360.21 165.28 T |
7946 |
|
|
(AL LETTER E GRA) 407.44 165.28 T |
7947 |
|
|
(VE) 491.37 165.28 T |
7948 |
|
|
0 14 Q |
7949 |
|
|
(\203) 42 138.61 T |
7950 |
|
|
0 12 Q |
7951 |
|
|
(Eacute) 96 139.95 T |
7952 |
|
|
(Eacute) 150 139.95 T |
7953 |
|
|
(C9) 240 139.95 T |
7954 |
|
|
(00C9) 294 139.95 T |
7955 |
|
|
0 10 Q |
7956 |
|
|
(LA) 348 141.28 T |
7957 |
|
|
(TIN CAPIT) 360.21 141.28 T |
7958 |
|
|
(AL LETTER E ACUTE) 407.44 141.28 T |
7959 |
|
|
0 14 Q |
7960 |
|
|
(\346) 42 114.61 T |
7961 |
|
|
0 12 Q |
7962 |
|
|
(Ecirc) 96 115.95 T |
7963 |
|
|
(Ecircum\337ex) 150 115.95 T |
7964 |
|
|
(CA) 240 115.95 T |
7965 |
|
|
(00CA) 294 115.95 T |
7966 |
|
|
0 10 Q |
7967 |
|
|
(LA) 348 117.28 T |
7968 |
|
|
(TIN CAPIT) 360.21 117.28 T |
7969 |
|
|
(AL LETTER E CIRCUMFLEX) 407.44 117.28 T |
7970 |
|
|
0 14 Q |
7971 |
|
|
(\350) 42 90.61 T |
7972 |
|
|
0 12 Q |
7973 |
|
|
(Euml) 96 91.95 T |
7974 |
|
|
(Edieresis) 150 91.95 T |
7975 |
|
|
(CB) 240 91.95 T |
7976 |
|
|
(00CB) 294 91.95 T |
7977 |
|
|
0 10 Q |
7978 |
|
|
(LA) 348 93.28 T |
7979 |
|
|
(TIN CAPIT) 360.21 93.28 T |
7980 |
|
|
(AL LETTER E DIAERESIS) 407.44 93.28 T |
7981 |
|
|
5 12 Q |
7982 |
|
|
(Symbol) 43.67 730.95 T |
7983 |
|
|
(ISO) 106.67 737.95 T |
7984 |
|
|
(8879) 105.01 723.95 T |
7985 |
|
|
(Adobe name) 156.85 730.95 T |
7986 |
|
|
(Adobe) 244.34 737.95 T |
7987 |
|
|
(Hex) 250.67 723.95 T |
7988 |
|
|
(Unicode) 294.01 730.95 T |
7989 |
|
|
(Unicode name) 413.52 730.95 T |
7990 |
|
|
36 753.7 36 82.2 2 L |
7991 |
|
|
V |
7992 |
|
|
0.5 H |
7993 |
|
|
0 Z |
7994 |
|
|
N |
7995 |
|
|
90 754.2 90 81.7 2 L |
7996 |
|
|
V |
7997 |
|
|
N |
7998 |
|
|
144 754.2 144 81.7 2 L |
7999 |
|
|
V |
8000 |
|
|
N |
8001 |
|
|
234 754.2 234 81.7 2 L |
8002 |
|
|
V |
8003 |
|
|
N |
8004 |
|
|
288 754.2 288 81.7 2 L |
8005 |
|
|
V |
8006 |
|
|
N |
8007 |
|
|
342 754.2 342 81.7 2 L |
8008 |
|
|
V |
8009 |
|
|
N |
8010 |
|
|
558 753.7 558 82.2 2 L |
8011 |
|
|
V |
8012 |
|
|
N |
8013 |
|
|
35.75 753.95 558.25 753.95 2 L |
8014 |
|
|
V |
8015 |
|
|
N |
8016 |
|
|
36.25 715.2 557.75 715.2 2 L |
8017 |
|
|
V |
8018 |
|
|
N |
8019 |
|
|
36.25 712.7 557.75 712.7 2 L |
8020 |
|
|
V |
8021 |
|
|
N |
8022 |
|
|
35.75 689.95 558.25 689.95 2 L |
8023 |
|
|
V |
8024 |
|
|
N |
8025 |
|
|
35.75 667.95 558.25 667.95 2 L |
8026 |
|
|
V |
8027 |
|
|
N |
8028 |
|
|
35.75 645.95 558.25 645.95 2 L |
8029 |
|
|
V |
8030 |
|
|
N |
8031 |
|
|
35.75 621.95 558.25 621.95 2 L |
8032 |
|
|
V |
8033 |
|
|
N |
8034 |
|
|
35.75 597.95 558.25 597.95 2 L |
8035 |
|
|
V |
8036 |
|
|
N |
8037 |
|
|
35.75 573.95 558.25 573.95 2 L |
8038 |
|
|
V |
8039 |
|
|
N |
8040 |
|
|
35.75 551.95 558.25 551.95 2 L |
8041 |
|
|
V |
8042 |
|
|
N |
8043 |
|
|
35.75 529.95 558.25 529.95 2 L |
8044 |
|
|
V |
8045 |
|
|
N |
8046 |
|
|
35.75 507.95 558.25 507.95 2 L |
8047 |
|
|
V |
8048 |
|
|
N |
8049 |
|
|
35.75 483.95 558.25 483.95 2 L |
8050 |
|
|
V |
8051 |
|
|
N |
8052 |
|
|
35.75 459.95 558.25 459.95 2 L |
8053 |
|
|
V |
8054 |
|
|
N |
8055 |
|
|
35.75 437.95 558.25 437.95 2 L |
8056 |
|
|
V |
8057 |
|
|
N |
8058 |
|
|
35.75 415.95 558.25 415.95 2 L |
8059 |
|
|
V |
8060 |
|
|
N |
8061 |
|
|
35.75 393.95 558.25 393.95 2 L |
8062 |
|
|
V |
8063 |
|
|
N |
8064 |
|
|
35.75 369.95 558.25 369.95 2 L |
8065 |
|
|
V |
8066 |
|
|
N |
8067 |
|
|
35.75 345.95 558.25 345.95 2 L |
8068 |
|
|
V |
8069 |
|
|
N |
8070 |
|
|
35.75 321.95 558.25 321.95 2 L |
8071 |
|
|
V |
8072 |
|
|
N |
8073 |
|
|
35.75 297.95 558.25 297.95 2 L |
8074 |
|
|
V |
8075 |
|
|
N |
8076 |
|
|
35.75 273.95 558.25 273.95 2 L |
8077 |
|
|
V |
8078 |
|
|
N |
8079 |
|
|
35.75 249.95 558.25 249.95 2 L |
8080 |
|
|
V |
8081 |
|
|
N |
8082 |
|
|
35.75 225.95 558.25 225.95 2 L |
8083 |
|
|
V |
8084 |
|
|
N |
8085 |
|
|
35.75 201.95 558.25 201.95 2 L |
8086 |
|
|
V |
8087 |
|
|
N |
8088 |
|
|
35.75 177.95 558.25 177.95 2 L |
8089 |
|
|
V |
8090 |
|
|
N |
8091 |
|
|
35.75 153.95 558.25 153.95 2 L |
8092 |
|
|
V |
8093 |
|
|
N |
8094 |
|
|
35.75 129.95 558.25 129.95 2 L |
8095 |
|
|
V |
8096 |
|
|
N |
8097 |
|
|
35.75 105.95 558.25 105.95 2 L |
8098 |
|
|
V |
8099 |
|
|
N |
8100 |
|
|
35.75 81.95 558.25 81.95 2 L |
8101 |
|
|
V |
8102 |
|
|
N |
8103 |
|
|
FMENDPAGE |
8104 |
|
|
%%EndPage: "48" 53 |
8105 |
|
|
%%Page: "49" 53 |
8106 |
|
|
595.3 792 0 FMBEGINPAGE |
8107 |
|
|
0 10 Q |
8108 |
|
|
0 X |
8109 |
|
|
0 K |
8110 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
8111 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
8112 |
|
|
(49) 292.65 63.28 T |
8113 |
|
|
0 12 Q |
8114 |
|
|
(\355) 42 708.95 T |
8115 |
|
|
(Igrave) 96 708.95 T |
8116 |
|
|
(Igrave) 150 708.95 T |
8117 |
|
|
(CC) 240 708.95 T |
8118 |
|
|
(00CC) 294 708.95 T |
8119 |
|
|
0 10 Q |
8120 |
|
|
(LA) 348 710.28 T |
8121 |
|
|
(TIN CAPIT) 360.21 710.28 T |
8122 |
|
|
(AL LETTER I GRA) 407.44 710.28 T |
8123 |
|
|
(VE) 488.59 710.28 T |
8124 |
|
|
0 14 Q |
8125 |
|
|
(\352) 42 685.61 T |
8126 |
|
|
0 12 Q |
8127 |
|
|
(Iacute) 96 686.95 T |
8128 |
|
|
(Iacute) 150 686.95 T |
8129 |
|
|
(CD) 240 686.95 T |
8130 |
|
|
(00CD) 294 686.95 T |
8131 |
|
|
0 10 Q |
8132 |
|
|
(LA) 348 688.28 T |
8133 |
|
|
(TIN CAPIT) 360.21 688.28 T |
8134 |
|
|
(AL LETTER I ACUTE) 407.44 688.28 T |
8135 |
|
|
0 14 Q |
8136 |
|
|
(\353) 42 661.62 T |
8137 |
|
|
0 12 Q |
8138 |
|
|
(Icirc) 96 662.95 T |
8139 |
|
|
(Icircum\337ex) 150 662.95 T |
8140 |
|
|
(CE) 240 662.95 T |
8141 |
|
|
(00CE) 294 662.95 T |
8142 |
|
|
0 10 Q |
8143 |
|
|
(LA) 348 664.28 T |
8144 |
|
|
(TIN CAPIT) 360.21 664.28 T |
8145 |
|
|
(AL LETTER I CIRCUMFLEX) 407.44 664.28 T |
8146 |
|
|
0 14 Q |
8147 |
|
|
(\354) 42 637.62 T |
8148 |
|
|
0 12 Q |
8149 |
|
|
(Iuml) 96 638.95 T |
8150 |
|
|
(Idieresis) 150 638.95 T |
8151 |
|
|
(CF) 240 638.95 T |
8152 |
|
|
(00CF) 294 638.95 T |
8153 |
|
|
0 10 Q |
8154 |
|
|
(LA) 348 640.28 T |
8155 |
|
|
(TIN CAPIT) 360.21 640.28 T |
8156 |
|
|
(AL LETTER I DIAERESIS) 407.44 640.28 T |
8157 |
|
|
0 12 Q |
8158 |
|
|
(ETH) 96 614.95 T |
8159 |
|
|
(Eth) 150 614.95 T |
8160 |
|
|
(D0) 240 614.95 T |
8161 |
|
|
(00D0) 294 614.95 T |
8162 |
|
|
0 10 Q |
8163 |
|
|
(LA) 348 616.28 T |
8164 |
|
|
(TIN CAPIT) 360.21 616.28 T |
8165 |
|
|
(AL LETTER ETH) 407.44 616.28 T |
8166 |
|
|
0 14 Q |
8167 |
|
|
(\204) 42 591.62 T |
8168 |
|
|
0 12 Q |
8169 |
|
|
(Ntilde) 96 592.95 T |
8170 |
|
|
(Ntilde) 150 592.95 T |
8171 |
|
|
(D1) 240 592.95 T |
8172 |
|
|
(00D1) 294 592.95 T |
8173 |
|
|
0 10 Q |
8174 |
|
|
(LA) 348 594.28 T |
8175 |
|
|
(TIN CAPIT) 360.21 594.28 T |
8176 |
|
|
(AL LETTER N TILDE) 407.44 594.28 T |
8177 |
|
|
0 14 Q |
8178 |
|
|
(\361) 42 567.62 T |
8179 |
|
|
0 12 Q |
8180 |
|
|
(Ograve) 96 568.95 T |
8181 |
|
|
(Ograve) 150 568.95 T |
8182 |
|
|
(D2) 240 568.95 T |
8183 |
|
|
(00D2) 294 568.95 T |
8184 |
|
|
0 10 Q |
8185 |
|
|
(LA) 348 570.28 T |
8186 |
|
|
(TIN CAPIT) 360.21 570.28 T |
8187 |
|
|
(AL LETTER O GRA) 407.44 570.28 T |
8188 |
|
|
(VE) 492.48 570.28 T |
8189 |
|
|
0 14 Q |
8190 |
|
|
(\356) 42 543.62 T |
8191 |
|
|
0 12 Q |
8192 |
|
|
(Oacute) 96 544.95 T |
8193 |
|
|
(Oacute) 150 544.95 T |
8194 |
|
|
(D3) 240 544.95 T |
8195 |
|
|
(00D3) 294 544.95 T |
8196 |
|
|
0 10 Q |
8197 |
|
|
(LA) 348 546.28 T |
8198 |
|
|
(TIN CAPIT) 360.21 546.28 T |
8199 |
|
|
(AL LETTER O ACUTE) 407.44 546.28 T |
8200 |
|
|
0 14 Q |
8201 |
|
|
(\357) 42 519.61 T |
8202 |
|
|
0 12 Q |
8203 |
|
|
(Ocirc) 96 520.95 T |
8204 |
|
|
(Ocircum\337ex) 150 520.95 T |
8205 |
|
|
(D4) 240 520.95 T |
8206 |
|
|
(00D4) 294 520.95 T |
8207 |
|
|
0 10 Q |
8208 |
|
|
(LA) 348 522.28 T |
8209 |
|
|
(TIN CAPIT) 360.21 522.28 T |
8210 |
|
|
(AL LETTER O CIRCUMFLEX) 407.44 522.28 T |
8211 |
|
|
0 14 Q |
8212 |
|
|
(\315) 42 495.61 T |
8213 |
|
|
0 12 Q |
8214 |
|
|
(Otilde) 96 496.95 T |
8215 |
|
|
(Otilde) 150 496.95 T |
8216 |
|
|
(D5) 240 496.95 T |
8217 |
|
|
(00D5) 294 496.95 T |
8218 |
|
|
0 10 Q |
8219 |
|
|
(LA) 348 498.28 T |
8220 |
|
|
(TIN CAPIT) 360.21 498.28 T |
8221 |
|
|
(AL LETTER O TILDE) 407.44 498.28 T |
8222 |
|
|
0 14 Q |
8223 |
|
|
(\205) 42 471.61 T |
8224 |
|
|
0 12 Q |
8225 |
|
|
(Ouml) 96 472.95 T |
8226 |
|
|
(Odieresis) 150 472.95 T |
8227 |
|
|
(D6) 240 472.95 T |
8228 |
|
|
(00D6) 294 472.95 T |
8229 |
|
|
0 10 Q |
8230 |
|
|
(LA) 348 474.28 T |
8231 |
|
|
(TIN CAPIT) 360.21 474.28 T |
8232 |
|
|
(AL LETTER O DIAERESIS) 407.44 474.28 T |
8233 |
|
|
9 14 Q |
8234 |
|
|
(\264) 42 447.61 T |
8235 |
|
|
0 12 Q |
8236 |
|
|
(times) 96 448.95 T |
8237 |
|
|
(multiply) 150 448.95 T |
8238 |
|
|
(D7) 240 448.95 T |
8239 |
|
|
(00D7) 294 448.95 T |
8240 |
|
|
0 10 Q |
8241 |
|
|
(MUL) 348 450.28 T |
8242 |
|
|
(TIPLICA) 369.29 450.28 T |
8243 |
|
|
(TION SIGN) 406.49 450.28 T |
8244 |
|
|
0 14 Q |
8245 |
|
|
(\257) 42 423.61 T |
8246 |
|
|
0 12 Q |
8247 |
|
|
(Oslash) 96 424.95 T |
8248 |
|
|
(Oslash) 150 424.95 T |
8249 |
|
|
(D8) 240 424.95 T |
8250 |
|
|
(00D8) 294 424.95 T |
8251 |
|
|
0 10 Q |
8252 |
|
|
(LA) 348 426.28 T |
8253 |
|
|
(TIN CAPIT) 360.21 426.28 T |
8254 |
|
|
(AL LEETER O SLASH) 407.44 426.28 T |
8255 |
|
|
0 14 Q |
8256 |
|
|
(\364) 42 399.61 T |
8257 |
|
|
0 12 Q |
8258 |
|
|
(Ugrave) 96 400.95 T |
8259 |
|
|
(Ugrave) 150 400.95 T |
8260 |
|
|
(D9) 240 400.95 T |
8261 |
|
|
(00D9) 294 400.95 T |
8262 |
|
|
0 10 Q |
8263 |
|
|
(LA) 348 402.28 T |
8264 |
|
|
(TIN CAPIT) 360.21 402.28 T |
8265 |
|
|
(AL LETTER U GRA) 407.44 402.28 T |
8266 |
|
|
(VE) 492.48 402.28 T |
8267 |
|
|
0 14 Q |
8268 |
|
|
(\362) 42 375.61 T |
8269 |
|
|
0 12 Q |
8270 |
|
|
(Uacute) 96 376.95 T |
8271 |
|
|
(Uacute) 150 376.95 T |
8272 |
|
|
(DA) 240 376.95 T |
8273 |
|
|
(00DA) 294 376.95 T |
8274 |
|
|
0 10 Q |
8275 |
|
|
(LA) 348 378.28 T |
8276 |
|
|
(TIN CAPIT) 360.21 378.28 T |
8277 |
|
|
(AL LETTER U ACUTE) 407.44 378.28 T |
8278 |
|
|
0 14 Q |
8279 |
|
|
(\363) 42 351.61 T |
8280 |
|
|
0 12 Q |
8281 |
|
|
(Ucirc) 96 352.95 T |
8282 |
|
|
(Ucircum\337ex) 150 352.95 T |
8283 |
|
|
(DB) 240 352.95 T |
8284 |
|
|
(00DB) 294 352.95 T |
8285 |
|
|
0 10 Q |
8286 |
|
|
(LA) 348 354.28 T |
8287 |
|
|
(TIN CAPIT) 360.21 354.28 T |
8288 |
|
|
(AL LETTER U CIRCUMFLEX) 407.44 354.28 T |
8289 |
|
|
0 14 Q |
8290 |
|
|
(\206) 42 327.61 T |
8291 |
|
|
0 12 Q |
8292 |
|
|
(Uuml) 96 328.95 T |
8293 |
|
|
(Udieresis) 150 328.95 T |
8294 |
|
|
(DC) 240 328.95 T |
8295 |
|
|
(00DC) 294 328.95 T |
8296 |
|
|
0 10 Q |
8297 |
|
|
(LA) 348 330.28 T |
8298 |
|
|
(TIN CAPIT) 360.21 330.28 T |
8299 |
|
|
(AL LETTER U DIAERESIS) 407.44 330.28 T |
8300 |
|
|
0 12 Q |
8301 |
|
|
(Y) 96 304.95 T |
8302 |
|
|
(acute) 103.46 304.95 T |
8303 |
|
|
(Y) 150 304.95 T |
8304 |
|
|
(acute) 157.46 304.95 T |
8305 |
|
|
(DD) 240 304.95 T |
8306 |
|
|
(00DD) 294 304.95 T |
8307 |
|
|
0 10 Q |
8308 |
|
|
(LA) 348 306.28 T |
8309 |
|
|
(TIN CAPIT) 360.21 306.28 T |
8310 |
|
|
(AL LETTER Y ACUTE) 407.44 306.28 T |
8311 |
|
|
0 12 Q |
8312 |
|
|
(THORN) 96 282.95 T |
8313 |
|
|
(Thorn) 150 282.95 T |
8314 |
|
|
(DE) 240 282.95 T |
8315 |
|
|
(00DE) 294 282.95 T |
8316 |
|
|
0 10 Q |
8317 |
|
|
(LA) 348 284.28 T |
8318 |
|
|
(TIN CAPIT) 360.21 284.28 T |
8319 |
|
|
(AL LETTER THORN) 407.44 284.28 T |
8320 |
|
|
0 14 Q |
8321 |
|
|
(\247) 42 259.61 T |
8322 |
|
|
0 12 Q |
8323 |
|
|
(szlig) 96 260.95 T |
8324 |
|
|
(germandbls) 150 260.95 T |
8325 |
|
|
(DF) 240 260.95 T |
8326 |
|
|
(00DF) 294 260.95 T |
8327 |
|
|
0 10 Q |
8328 |
|
|
(LA) 348 262.28 T |
8329 |
|
|
(TIN SMALL LETTER SHARP S) 360.21 262.28 T |
8330 |
|
|
0 14 Q |
8331 |
|
|
(\210) 42 235.61 T |
8332 |
|
|
0 12 Q |
8333 |
|
|
(agrave) 96 236.95 T |
8334 |
|
|
(agrave) 150 236.95 T |
8335 |
|
|
(E0) 240 236.95 T |
8336 |
|
|
(00E0) 294 236.95 T |
8337 |
|
|
0 10 Q |
8338 |
|
|
(LA) 348 238.28 T |
8339 |
|
|
(TIN SMALL LETTER A GRA) 360.21 238.28 T |
8340 |
|
|
(VE) 484.95 238.28 T |
8341 |
|
|
0 14 Q |
8342 |
|
|
(\207) 42 211.61 T |
8343 |
|
|
0 12 Q |
8344 |
|
|
(aacute) 96 212.95 T |
8345 |
|
|
(aacute) 150 212.95 T |
8346 |
|
|
(E1) 240 212.95 T |
8347 |
|
|
(00E1) 294 212.95 T |
8348 |
|
|
0 10 Q |
8349 |
|
|
(LA) 348 214.28 T |
8350 |
|
|
(TIN SMALL LETTER A ACUTE) 360.21 214.28 T |
8351 |
|
|
0 14 Q |
8352 |
|
|
(\211) 42 187.61 T |
8353 |
|
|
0 12 Q |
8354 |
|
|
(acirc) 96 188.95 T |
8355 |
|
|
(acircum\337ex) 150 188.95 T |
8356 |
|
|
(E2) 240 188.95 T |
8357 |
|
|
(00E2) 294 188.95 T |
8358 |
|
|
0 10 Q |
8359 |
|
|
(LA) 348 190.28 T |
8360 |
|
|
(TIN SMALL LETTER A CIRCUMFLEX) 360.21 190.28 T |
8361 |
|
|
0 14 Q |
8362 |
|
|
(\213) 42 162.61 T |
8363 |
|
|
0 12 Q |
8364 |
|
|
(atilde) 96 164.95 T |
8365 |
|
|
(atilde) 150 164.95 T |
8366 |
|
|
(E3) 240 164.95 T |
8367 |
|
|
(00E3) 294 164.95 T |
8368 |
|
|
0 10 Q |
8369 |
|
|
(LA) 348 166.28 T |
8370 |
|
|
(TIN SMALL LETTER A TILDE) 360.21 166.28 T |
8371 |
|
|
0 14 Q |
8372 |
|
|
(\212) 42 139.61 T |
8373 |
|
|
0 12 Q |
8374 |
|
|
(auml) 96 140.95 T |
8375 |
|
|
(adieresis) 150 140.95 T |
8376 |
|
|
(E4) 240 140.95 T |
8377 |
|
|
(00E4) 294 140.95 T |
8378 |
|
|
0 10 Q |
8379 |
|
|
(LA) 348 142.28 T |
8380 |
|
|
(TIN SMALL LETTER A DIAERESIS) 360.21 142.28 T |
8381 |
|
|
0 14 Q |
8382 |
|
|
(\214) 42 115.61 T |
8383 |
|
|
0 12 Q |
8384 |
|
|
(aring) 96 116.95 T |
8385 |
|
|
(aring) 150 116.95 T |
8386 |
|
|
(E5) 240 116.95 T |
8387 |
|
|
(00E5) 294 116.95 T |
8388 |
|
|
0 10 Q |
8389 |
|
|
(LA) 348 118.28 T |
8390 |
|
|
(TIN SMALL LETTER A RING) 360.21 118.28 T |
8391 |
|
|
0 14 Q |
8392 |
|
|
(\276) 42 91.61 T |
8393 |
|
|
0 12 Q |
8394 |
|
|
(aelig) 96 92.95 T |
8395 |
|
|
(ae) 150 92.95 T |
8396 |
|
|
(E6) 240 92.95 T |
8397 |
|
|
(00E6) 294 92.95 T |
8398 |
|
|
0 10 Q |
8399 |
|
|
(LA) 348 94.28 T |
8400 |
|
|
(TIN SMALL LETTER A E) 360.21 94.28 T |
8401 |
|
|
5 12 Q |
8402 |
|
|
(Symbol) 43.67 739.95 T |
8403 |
|
|
(ISO) 106.67 746.95 T |
8404 |
|
|
(8879) 105.01 732.95 T |
8405 |
|
|
(Adobe name) 156.85 739.95 T |
8406 |
|
|
(Adobe) 244.34 746.95 T |
8407 |
|
|
(Hex) 250.67 732.95 T |
8408 |
|
|
(Unicode) 294.01 739.95 T |
8409 |
|
|
(Unicode name) 413.52 739.95 T |
8410 |
|
|
36 762.7 36 83.2 2 L |
8411 |
|
|
V |
8412 |
|
|
0.5 H |
8413 |
|
|
0 Z |
8414 |
|
|
N |
8415 |
|
|
90 763.2 90 82.7 2 L |
8416 |
|
|
V |
8417 |
|
|
N |
8418 |
|
|
144 763.2 144 82.7 2 L |
8419 |
|
|
V |
8420 |
|
|
N |
8421 |
|
|
234 763.2 234 82.7 2 L |
8422 |
|
|
V |
8423 |
|
|
N |
8424 |
|
|
288 763.2 288 82.7 2 L |
8425 |
|
|
V |
8426 |
|
|
N |
8427 |
|
|
342 763.2 342 82.7 2 L |
8428 |
|
|
V |
8429 |
|
|
N |
8430 |
|
|
558 762.7 558 83.2 2 L |
8431 |
|
|
V |
8432 |
|
|
N |
8433 |
|
|
35.75 762.95 558.25 762.95 2 L |
8434 |
|
|
V |
8435 |
|
|
N |
8436 |
|
|
36.25 724.2 557.75 724.2 2 L |
8437 |
|
|
V |
8438 |
|
|
N |
8439 |
|
|
36.25 721.7 557.75 721.7 2 L |
8440 |
|
|
V |
8441 |
|
|
N |
8442 |
|
|
35.75 700.95 558.25 700.95 2 L |
8443 |
|
|
V |
8444 |
|
|
N |
8445 |
|
|
35.75 676.95 558.25 676.95 2 L |
8446 |
|
|
V |
8447 |
|
|
N |
8448 |
|
|
35.75 652.95 558.25 652.95 2 L |
8449 |
|
|
V |
8450 |
|
|
N |
8451 |
|
|
35.75 628.95 558.25 628.95 2 L |
8452 |
|
|
V |
8453 |
|
|
N |
8454 |
|
|
35.75 606.95 558.25 606.95 2 L |
8455 |
|
|
V |
8456 |
|
|
N |
8457 |
|
|
35.75 582.95 558.25 582.95 2 L |
8458 |
|
|
V |
8459 |
|
|
N |
8460 |
|
|
35.75 558.95 558.25 558.95 2 L |
8461 |
|
|
V |
8462 |
|
|
N |
8463 |
|
|
35.75 534.95 558.25 534.95 2 L |
8464 |
|
|
V |
8465 |
|
|
N |
8466 |
|
|
35.75 510.95 558.25 510.95 2 L |
8467 |
|
|
V |
8468 |
|
|
N |
8469 |
|
|
35.75 486.95 558.25 486.95 2 L |
8470 |
|
|
V |
8471 |
|
|
N |
8472 |
|
|
35.75 462.95 558.25 462.95 2 L |
8473 |
|
|
V |
8474 |
|
|
N |
8475 |
|
|
35.75 438.95 558.25 438.95 2 L |
8476 |
|
|
V |
8477 |
|
|
N |
8478 |
|
|
35.75 414.95 558.25 414.95 2 L |
8479 |
|
|
V |
8480 |
|
|
N |
8481 |
|
|
35.75 390.95 558.25 390.95 2 L |
8482 |
|
|
V |
8483 |
|
|
N |
8484 |
|
|
35.75 366.95 558.25 366.95 2 L |
8485 |
|
|
V |
8486 |
|
|
N |
8487 |
|
|
35.75 342.95 558.25 342.95 2 L |
8488 |
|
|
V |
8489 |
|
|
N |
8490 |
|
|
35.75 318.95 558.25 318.95 2 L |
8491 |
|
|
V |
8492 |
|
|
N |
8493 |
|
|
35.75 296.95 558.25 296.95 2 L |
8494 |
|
|
V |
8495 |
|
|
N |
8496 |
|
|
35.75 274.95 558.25 274.95 2 L |
8497 |
|
|
V |
8498 |
|
|
N |
8499 |
|
|
35.75 250.95 558.25 250.95 2 L |
8500 |
|
|
V |
8501 |
|
|
N |
8502 |
|
|
35.75 226.95 558.25 226.95 2 L |
8503 |
|
|
V |
8504 |
|
|
N |
8505 |
|
|
35.75 202.95 558.25 202.95 2 L |
8506 |
|
|
V |
8507 |
|
|
N |
8508 |
|
|
35.75 178.95 558.25 178.95 2 L |
8509 |
|
|
V |
8510 |
|
|
N |
8511 |
|
|
35.75 154.95 558.25 154.95 2 L |
8512 |
|
|
V |
8513 |
|
|
N |
8514 |
|
|
35.75 130.95 558.25 130.95 2 L |
8515 |
|
|
V |
8516 |
|
|
N |
8517 |
|
|
35.75 106.95 558.25 106.95 2 L |
8518 |
|
|
V |
8519 |
|
|
N |
8520 |
|
|
35.75 82.95 558.25 82.95 2 L |
8521 |
|
|
V |
8522 |
|
|
N |
8523 |
|
|
FMENDPAGE |
8524 |
|
|
%%EndPage: "49" 54 |
8525 |
|
|
%%Page: "50" 54 |
8526 |
|
|
595.3 792 0 FMBEGINPAGE |
8527 |
|
|
0 10 Q |
8528 |
|
|
0 X |
8529 |
|
|
0 K |
8530 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
8531 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
8532 |
|
|
(50) 292.65 63.28 T |
8533 |
|
|
0 14 Q |
8534 |
|
|
(\215) 42 707.61 T |
8535 |
|
|
0 12 Q |
8536 |
|
|
(ccedil) 96 708.95 T |
8537 |
|
|
(ccedilla) 150 708.95 T |
8538 |
|
|
(E7) 240 708.95 T |
8539 |
|
|
(00E7) 294 708.95 T |
8540 |
|
|
0 10 Q |
8541 |
|
|
(LA) 348 710.28 T |
8542 |
|
|
(TIN SMALL LETTER C CEDILLA) 360.21 710.28 T |
8543 |
|
|
0 14 Q |
8544 |
|
|
(\217) 42 683.61 T |
8545 |
|
|
0 12 Q |
8546 |
|
|
(egrave) 96 684.95 T |
8547 |
|
|
(egrave) 150 684.95 T |
8548 |
|
|
(E8) 240 684.95 T |
8549 |
|
|
(00E8) 294 684.95 T |
8550 |
|
|
0 10 Q |
8551 |
|
|
(LA) 348 686.28 T |
8552 |
|
|
(TIN SMALL LETTER E GRA) 360.21 686.28 T |
8553 |
|
|
(VE) 483.85 686.28 T |
8554 |
|
|
0 14 Q |
8555 |
|
|
(\216) 42 659.62 T |
8556 |
|
|
0 12 Q |
8557 |
|
|
(eacute) 96 660.95 T |
8558 |
|
|
(eacute) 150 660.95 T |
8559 |
|
|
(E9) 240 660.95 T |
8560 |
|
|
(00E9) 294 660.95 T |
8561 |
|
|
0 10 Q |
8562 |
|
|
(LA) 348 662.28 T |
8563 |
|
|
(TIN SMALL LETTER E ACUTE) 360.21 662.28 T |
8564 |
|
|
0 14 Q |
8565 |
|
|
(\220) 42 635.62 T |
8566 |
|
|
0 12 Q |
8567 |
|
|
(ecirc) 96 636.95 T |
8568 |
|
|
(ecircum\337ex) 150 636.95 T |
8569 |
|
|
(EA) 240 636.95 T |
8570 |
|
|
(00EA) 294 636.95 T |
8571 |
|
|
0 10 Q |
8572 |
|
|
(LA) 348 638.28 T |
8573 |
|
|
(TIN SMALL LETTER E CIRCUMFLEX) 360.21 638.28 T |
8574 |
|
|
0 14 Q |
8575 |
|
|
(\221) 42 611.62 T |
8576 |
|
|
0 12 Q |
8577 |
|
|
(euml) 96 612.95 T |
8578 |
|
|
(edieresis) 150 612.95 T |
8579 |
|
|
(EB) 240 612.95 T |
8580 |
|
|
(00EB) 294 612.95 T |
8581 |
|
|
0 10 Q |
8582 |
|
|
(LA) 348 614.28 T |
8583 |
|
|
(TIN SMALL LETTER E DIAERESIS) 360.21 614.28 T |
8584 |
|
|
0 14 Q |
8585 |
|
|
(\223) 42 587.62 T |
8586 |
|
|
0 12 Q |
8587 |
|
|
(igrave) 96 588.95 T |
8588 |
|
|
(igrave) 150 588.95 T |
8589 |
|
|
(EC) 240 588.95 T |
8590 |
|
|
(00EC) 294 588.95 T |
8591 |
|
|
0 10 Q |
8592 |
|
|
(LA) 348 590.28 T |
8593 |
|
|
(TIN SMALL LETTER I GRA) 360.21 590.28 T |
8594 |
|
|
(VE) 481.07 590.28 T |
8595 |
|
|
0 14 Q |
8596 |
|
|
(\222) 42 563.62 T |
8597 |
|
|
0 12 Q |
8598 |
|
|
(iacute) 96 564.95 T |
8599 |
|
|
(iacute) 150 564.95 T |
8600 |
|
|
(ED) 240 564.95 T |
8601 |
|
|
(00ED) 294 564.95 T |
8602 |
|
|
0 10 Q |
8603 |
|
|
(LA) 348 566.28 T |
8604 |
|
|
(TIN SMALL LETTER I ACUTE) 360.21 566.28 T |
8605 |
|
|
0 14 Q |
8606 |
|
|
(\224) 42 539.62 T |
8607 |
|
|
0 12 Q |
8608 |
|
|
(icirc) 96 540.95 T |
8609 |
|
|
(icircum\337ex) 150 540.95 T |
8610 |
|
|
(EE) 240 540.95 T |
8611 |
|
|
(00EE) 294 540.95 T |
8612 |
|
|
0 10 Q |
8613 |
|
|
(LA) 348 542.28 T |
8614 |
|
|
(TIN SMALL LETTER I CIRCUMFLEX) 360.21 542.28 T |
8615 |
|
|
0 14 Q |
8616 |
|
|
(\225) 42 515.61 T |
8617 |
|
|
0 12 Q |
8618 |
|
|
(iuml) 96 516.95 T |
8619 |
|
|
(idieresis) 150 516.95 T |
8620 |
|
|
(EF) 240 516.95 T |
8621 |
|
|
(00EF) 294 516.95 T |
8622 |
|
|
0 10 Q |
8623 |
|
|
(LA) 348 518.28 T |
8624 |
|
|
(TIN SMALL LETTER I DIAERESIS) 360.21 518.28 T |
8625 |
|
|
0 12 Q |
8626 |
|
|
(eth) 96 492.95 T |
8627 |
|
|
(eth) 150 492.95 T |
8628 |
|
|
(F0) 240 492.95 T |
8629 |
|
|
(00F0) 294 492.95 T |
8630 |
|
|
0 10 Q |
8631 |
|
|
(LA) 348 494.28 T |
8632 |
|
|
(TIN SMALL LETTER ETH) 360.21 494.28 T |
8633 |
|
|
0 14 Q |
8634 |
|
|
(\226) 42 469.61 T |
8635 |
|
|
0 12 Q |
8636 |
|
|
(ntilde) 96 470.95 T |
8637 |
|
|
(ntilde) 150 470.95 T |
8638 |
|
|
(F1) 240 470.95 T |
8639 |
|
|
(00F1) 294 470.95 T |
8640 |
|
|
0 10 Q |
8641 |
|
|
(LA) 348 472.28 T |
8642 |
|
|
(TIN SMALL LETTER N TILDE) 360.21 472.28 T |
8643 |
|
|
0 14 Q |
8644 |
|
|
(\230) 42 445.61 T |
8645 |
|
|
0 12 Q |
8646 |
|
|
(ograve) 96 446.95 T |
8647 |
|
|
(ograve) 150 446.95 T |
8648 |
|
|
(F2) 240 446.95 T |
8649 |
|
|
(00F2) 294 446.95 T |
8650 |
|
|
0 10 Q |
8651 |
|
|
(LA) 348 448.28 T |
8652 |
|
|
(TIN SMALL LETTER O GRA) 360.21 448.28 T |
8653 |
|
|
(VE) 484.95 448.28 T |
8654 |
|
|
0 14 Q |
8655 |
|
|
(\227) 42 421.61 T |
8656 |
|
|
0 12 Q |
8657 |
|
|
(oacute) 96 422.95 T |
8658 |
|
|
(oacute) 150 422.95 T |
8659 |
|
|
(F3) 240 422.95 T |
8660 |
|
|
(00F3) 294 422.95 T |
8661 |
|
|
0 10 Q |
8662 |
|
|
(LA) 348 424.28 T |
8663 |
|
|
(TIN SMALL LETTER O ACUTE) 360.21 424.28 T |
8664 |
|
|
0 14 Q |
8665 |
|
|
(\231) 42 397.61 T |
8666 |
|
|
0 12 Q |
8667 |
|
|
(ocirc) 96 398.95 T |
8668 |
|
|
(ocircum\337ex) 150 398.95 T |
8669 |
|
|
(F4) 240 398.95 T |
8670 |
|
|
(00F4) 294 398.95 T |
8671 |
|
|
0 10 Q |
8672 |
|
|
(LA) 348 400.28 T |
8673 |
|
|
(TIN SMALL LETTER O CIRCUMFLEX) 360.21 400.28 T |
8674 |
|
|
0 14 Q |
8675 |
|
|
(\233) 42 372.61 T |
8676 |
|
|
0 12 Q |
8677 |
|
|
(otilde) 96 374.95 T |
8678 |
|
|
(otilde) 150 374.95 T |
8679 |
|
|
(F5) 240 374.95 T |
8680 |
|
|
(00F5) 294 374.95 T |
8681 |
|
|
0 10 Q |
8682 |
|
|
(LA) 348 376.28 T |
8683 |
|
|
(TIN SMALL LETTER O TILDE) 360.21 376.28 T |
8684 |
|
|
0 14 Q |
8685 |
|
|
(\232) 42 349.61 T |
8686 |
|
|
0 12 Q |
8687 |
|
|
(ouml) 96 350.95 T |
8688 |
|
|
(odieresis) 150 350.95 T |
8689 |
|
|
(F6) 240 350.95 T |
8690 |
|
|
(00F6) 294 350.95 T |
8691 |
|
|
0 10 Q |
8692 |
|
|
(LA) 348 352.28 T |
8693 |
|
|
(TIN SMALL LETTER O DIAERESIS) 360.21 352.28 T |
8694 |
|
|
9 14 Q |
8695 |
|
|
(\270) 42 325.61 T |
8696 |
|
|
0 12 Q |
8697 |
|
|
(divide) 96 326.95 T |
8698 |
|
|
(divide) 150 326.95 T |
8699 |
|
|
(F7) 240 326.95 T |
8700 |
|
|
(00F7) 294 326.95 T |
8701 |
|
|
0 10 Q |
8702 |
|
|
(DIVISION SIGN) 348 328.28 T |
8703 |
|
|
0 14 Q |
8704 |
|
|
(\277) 42 301.61 T |
8705 |
|
|
0 12 Q |
8706 |
|
|
(oslash) 96 302.95 T |
8707 |
|
|
(oslash) 150 302.95 T |
8708 |
|
|
(F8) 240 302.95 T |
8709 |
|
|
(00F8) 294 302.95 T |
8710 |
|
|
0 10 Q |
8711 |
|
|
(LA) 348 304.28 T |
8712 |
|
|
(TIN SMALL LETTER O SLASH) 360.21 304.28 T |
8713 |
|
|
0 14 Q |
8714 |
|
|
(\235) 42 277.61 T |
8715 |
|
|
0 12 Q |
8716 |
|
|
(ugrave) 96 278.95 T |
8717 |
|
|
(ugrave) 150 278.95 T |
8718 |
|
|
(F9) 240 278.95 T |
8719 |
|
|
(00F9) 294 278.95 T |
8720 |
|
|
0 10 Q |
8721 |
|
|
(LA) 348 280.28 T |
8722 |
|
|
(TIN SMALL LETTER U GRA) 360.21 280.28 T |
8723 |
|
|
(VE) 484.95 280.28 T |
8724 |
|
|
0 14 Q |
8725 |
|
|
(\234) 42 253.61 T |
8726 |
|
|
0 12 Q |
8727 |
|
|
(uacute) 96 254.95 T |
8728 |
|
|
(uacute) 150 254.95 T |
8729 |
|
|
(F) 240 254.95 T |
8730 |
|
|
(A) 245.78 254.95 T |
8731 |
|
|
(00F) 294 254.95 T |
8732 |
|
|
(A) 311.77 254.95 T |
8733 |
|
|
0 10 Q |
8734 |
|
|
(LA) 348 256.28 T |
8735 |
|
|
(TIN SMALL LETTER U ACUTE) 360.21 256.28 T |
8736 |
|
|
0 14 Q |
8737 |
|
|
(\236) 42 229.61 T |
8738 |
|
|
0 12 Q |
8739 |
|
|
(ucirc) 96 230.95 T |
8740 |
|
|
(ucircum\337ex) 150 230.95 T |
8741 |
|
|
(FB) 240 230.95 T |
8742 |
|
|
(00FB) 294 230.95 T |
8743 |
|
|
0 10 Q |
8744 |
|
|
(LA) 348 232.28 T |
8745 |
|
|
(TIN SMALL LETTER U CIRCUMFLEX) 360.21 232.28 T |
8746 |
|
|
0 14 Q |
8747 |
|
|
(\237) 42 205.61 T |
8748 |
|
|
0 12 Q |
8749 |
|
|
(uuml) 96 206.95 T |
8750 |
|
|
(udieresis) 150 206.95 T |
8751 |
|
|
(FC) 240 206.95 T |
8752 |
|
|
(00FC) 294 206.95 T |
8753 |
|
|
0 10 Q |
8754 |
|
|
(LA) 348 208.28 T |
8755 |
|
|
(TIN SMALL LETTER U DIAERESIS) 360.21 208.28 T |
8756 |
|
|
0 12 Q |
8757 |
|
|
(yacute) 96 182.95 T |
8758 |
|
|
(yacute) 150 182.95 T |
8759 |
|
|
(FD) 240 182.95 T |
8760 |
|
|
(00FD) 294 182.95 T |
8761 |
|
|
0 10 Q |
8762 |
|
|
(LA) 348 184.28 T |
8763 |
|
|
(TIN SMALL LETTER Y ACUTE) 360.21 184.28 T |
8764 |
|
|
0 12 Q |
8765 |
|
|
(thorn) 96 160.95 T |
8766 |
|
|
(thorn) 150 160.95 T |
8767 |
|
|
(FE) 240 160.95 T |
8768 |
|
|
(00FE) 294 160.95 T |
8769 |
|
|
0 10 Q |
8770 |
|
|
(LA) 348 162.28 T |
8771 |
|
|
(TIN SMALL LETTER THORN) 360.21 162.28 T |
8772 |
|
|
0 14 Q |
8773 |
|
|
(\330) 42 137.61 T |
8774 |
|
|
0 12 Q |
8775 |
|
|
(yuml) 96 138.95 T |
8776 |
|
|
(ydieresis) 150 138.95 T |
8777 |
|
|
(FF) 240 138.95 T |
8778 |
|
|
(00FF) 294 138.95 T |
8779 |
|
|
0 10 Q |
8780 |
|
|
(LA) 348 140.28 T |
8781 |
|
|
(TIN SMALL LETTER Y DIAERESIS) 360.21 140.28 T |
8782 |
|
|
5 18 Q |
8783 |
|
|
(Adobe Symbol Font Entities) 188.8 110.95 T |
8784 |
|
|
9 14 Q |
8785 |
|
|
(") 42 85.61 T |
8786 |
|
|
0 12 Q |
8787 |
|
|
(forall) 96 86.95 T |
8788 |
|
|
(universal) 150 86.95 T |
8789 |
|
|
(22) 240 86.95 T |
8790 |
|
|
(2200) 294 86.95 T |
8791 |
|
|
0 10 Q |
8792 |
|
|
(FOR ALL) 348 88.28 T |
8793 |
|
|
5 12 Q |
8794 |
|
|
(Symbol) 43.67 739.95 T |
8795 |
|
|
(ISO) 106.67 746.95 T |
8796 |
|
|
(8879) 105.01 732.95 T |
8797 |
|
|
(Adobe name) 156.85 739.95 T |
8798 |
|
|
(Adobe) 244.34 746.95 T |
8799 |
|
|
(Hex) 250.67 732.95 T |
8800 |
|
|
(Unicode) 294.01 739.95 T |
8801 |
|
|
(Unicode name) 413.52 739.95 T |
8802 |
|
|
36 762.7 36 77.2 2 L |
8803 |
|
|
V |
8804 |
|
|
0.5 H |
8805 |
|
|
0 Z |
8806 |
|
|
N |
8807 |
|
|
90 763.2 90 128.7 2 L |
8808 |
|
|
V |
8809 |
|
|
N |
8810 |
|
|
90 101.2 90 76.7 2 L |
8811 |
|
|
V |
8812 |
|
|
N |
8813 |
|
|
144 763.2 144 128.7 2 L |
8814 |
|
|
V |
8815 |
|
|
N |
8816 |
|
|
144 101.2 144 76.7 2 L |
8817 |
|
|
V |
8818 |
|
|
N |
8819 |
|
|
234 763.2 234 128.7 2 L |
8820 |
|
|
V |
8821 |
|
|
N |
8822 |
|
|
234 101.2 234 76.7 2 L |
8823 |
|
|
V |
8824 |
|
|
N |
8825 |
|
|
288 763.2 288 128.7 2 L |
8826 |
|
|
V |
8827 |
|
|
N |
8828 |
|
|
288 101.2 288 76.7 2 L |
8829 |
|
|
V |
8830 |
|
|
N |
8831 |
|
|
342 763.2 342 128.7 2 L |
8832 |
|
|
V |
8833 |
|
|
N |
8834 |
|
|
342 101.2 342 76.7 2 L |
8835 |
|
|
V |
8836 |
|
|
N |
8837 |
|
|
558 762.7 558 77.2 2 L |
8838 |
|
|
V |
8839 |
|
|
N |
8840 |
|
|
35.75 762.95 558.25 762.95 2 L |
8841 |
|
|
V |
8842 |
|
|
N |
8843 |
|
|
36.25 724.2 557.75 724.2 2 L |
8844 |
|
|
V |
8845 |
|
|
N |
8846 |
|
|
36.25 721.7 557.75 721.7 2 L |
8847 |
|
|
V |
8848 |
|
|
N |
8849 |
|
|
35.75 698.95 558.25 698.95 2 L |
8850 |
|
|
V |
8851 |
|
|
N |
8852 |
|
|
35.75 674.95 558.25 674.95 2 L |
8853 |
|
|
V |
8854 |
|
|
N |
8855 |
|
|
35.75 650.95 558.25 650.95 2 L |
8856 |
|
|
V |
8857 |
|
|
N |
8858 |
|
|
35.75 626.95 558.25 626.95 2 L |
8859 |
|
|
V |
8860 |
|
|
N |
8861 |
|
|
35.75 602.95 558.25 602.95 2 L |
8862 |
|
|
V |
8863 |
|
|
N |
8864 |
|
|
35.75 578.95 558.25 578.95 2 L |
8865 |
|
|
V |
8866 |
|
|
N |
8867 |
|
|
35.75 554.95 558.25 554.95 2 L |
8868 |
|
|
V |
8869 |
|
|
N |
8870 |
|
|
35.75 530.95 558.25 530.95 2 L |
8871 |
|
|
V |
8872 |
|
|
N |
8873 |
|
|
35.75 506.95 558.25 506.95 2 L |
8874 |
|
|
V |
8875 |
|
|
N |
8876 |
|
|
35.75 484.95 558.25 484.95 2 L |
8877 |
|
|
V |
8878 |
|
|
N |
8879 |
|
|
35.75 460.95 558.25 460.95 2 L |
8880 |
|
|
V |
8881 |
|
|
N |
8882 |
|
|
35.75 436.95 558.25 436.95 2 L |
8883 |
|
|
V |
8884 |
|
|
N |
8885 |
|
|
35.75 412.95 558.25 412.95 2 L |
8886 |
|
|
V |
8887 |
|
|
N |
8888 |
|
|
35.75 388.95 558.25 388.95 2 L |
8889 |
|
|
V |
8890 |
|
|
N |
8891 |
|
|
35.75 364.95 558.25 364.95 2 L |
8892 |
|
|
V |
8893 |
|
|
N |
8894 |
|
|
35.75 340.95 558.25 340.95 2 L |
8895 |
|
|
V |
8896 |
|
|
N |
8897 |
|
|
35.75 316.95 558.25 316.95 2 L |
8898 |
|
|
V |
8899 |
|
|
N |
8900 |
|
|
35.75 292.95 558.25 292.95 2 L |
8901 |
|
|
V |
8902 |
|
|
N |
8903 |
|
|
35.75 268.95 558.25 268.95 2 L |
8904 |
|
|
V |
8905 |
|
|
N |
8906 |
|
|
35.75 244.95 558.25 244.95 2 L |
8907 |
|
|
V |
8908 |
|
|
N |
8909 |
|
|
35.75 220.95 558.25 220.95 2 L |
8910 |
|
|
V |
8911 |
|
|
N |
8912 |
|
|
35.75 196.95 558.25 196.95 2 L |
8913 |
|
|
V |
8914 |
|
|
N |
8915 |
|
|
35.75 174.95 558.25 174.95 2 L |
8916 |
|
|
V |
8917 |
|
|
N |
8918 |
|
|
35.75 152.95 558.25 152.95 2 L |
8919 |
|
|
V |
8920 |
|
|
N |
8921 |
|
|
35.75 128.95 558.25 128.95 2 L |
8922 |
|
|
V |
8923 |
|
|
N |
8924 |
|
|
35.75 100.95 558.25 100.95 2 L |
8925 |
|
|
V |
8926 |
|
|
N |
8927 |
|
|
35.75 76.95 558.25 76.95 2 L |
8928 |
|
|
V |
8929 |
|
|
N |
8930 |
|
|
FMENDPAGE |
8931 |
|
|
%%EndPage: "50" 55 |
8932 |
|
|
%%Page: "51" 55 |
8933 |
|
|
595.3 792 0 FMBEGINPAGE |
8934 |
|
|
0 10 Q |
8935 |
|
|
0 X |
8936 |
|
|
0 K |
8937 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
8938 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
8939 |
|
|
(51) 292.65 63.28 T |
8940 |
|
|
9 14 Q |
8941 |
|
|
($) 42 707.61 T |
8942 |
|
|
0 12 Q |
8943 |
|
|
(exist) 96 708.95 T |
8944 |
|
|
(existential) 150 708.95 T |
8945 |
|
|
(24) 240 708.95 T |
8946 |
|
|
(2203) 294 708.95 T |
8947 |
|
|
0 10 Q |
8948 |
|
|
(THERE EXISTS) 348 710.28 T |
8949 |
|
|
9 12 Q |
8950 |
|
|
(') 42 684.95 T |
8951 |
|
|
0 F |
8952 |
|
|
(ni) 96 684.95 T |
8953 |
|
|
(suchthat) 150 684.95 T |
8954 |
|
|
(27) 240 684.95 T |
8955 |
|
|
(220B) 294 684.95 T |
8956 |
|
|
0 10 Q |
8957 |
|
|
(CONT) 348 686.28 T |
8958 |
|
|
(AINS AS MEMBER) 374.4 686.28 T |
8959 |
|
|
9 14 Q |
8960 |
|
|
(*) 42 661.62 T |
8961 |
|
|
0 12 Q |
8962 |
|
|
(lowast) 96 662.95 T |
8963 |
|
|
(asteriskmath) 150 662.95 T |
8964 |
|
|
(2A) 240 662.95 T |
8965 |
|
|
(2217) 294 662.95 T |
8966 |
|
|
0 10 Q |
8967 |
|
|
(ASTERISK OPERA) 348 664.28 T |
8968 |
|
|
(T) 429.9 664.28 T |
8969 |
|
|
(OR) 435.83 664.28 T |
8970 |
|
|
9 14 Q |
8971 |
|
|
(-) 42 637.62 T |
8972 |
|
|
0 12 Q |
8973 |
|
|
(minus) 96 638.95 T |
8974 |
|
|
(minus) 150 638.95 T |
8975 |
|
|
(2D) 240 638.95 T |
8976 |
|
|
(2212) 294 638.95 T |
8977 |
|
|
0 10 Q |
8978 |
|
|
(MINUS SIGN) 348 640.28 T |
8979 |
|
|
9 14 Q |
8980 |
|
|
(@) 42 613.62 T |
8981 |
|
|
0 12 Q |
8982 |
|
|
(cong) 96 614.95 T |
8983 |
|
|
(congruent) 150 614.95 T |
8984 |
|
|
(40) 240 614.95 T |
8985 |
|
|
(2245) 294 614.95 T |
8986 |
|
|
0 10 Q |
8987 |
|
|
(APPROXIMA) 348 616.28 T |
8988 |
|
|
(TEL) 405.75 616.28 T |
8989 |
|
|
(Y EQUAL T) 423.07 616.28 T |
8990 |
|
|
(O) 475.07 616.28 T |
8991 |
|
|
9 14 Q |
8992 |
|
|
(A) 42 589.62 T |
8993 |
|
|
0 12 Q |
8994 |
|
|
(Agr) 96 590.95 T |
8995 |
|
|
(Alpha) 150 590.95 T |
8996 |
|
|
(41) 240 590.95 T |
8997 |
|
|
(0391) 294 590.95 T |
8998 |
|
|
0 10 Q |
8999 |
|
|
(GREEK CAPIT) 348 592.28 T |
9000 |
|
|
(AL LETTER ALPHA) 411.89 592.28 T |
9001 |
|
|
9 14 Q |
9002 |
|
|
(B) 42 565.62 T |
9003 |
|
|
0 12 Q |
9004 |
|
|
(Bgr) 96 566.95 T |
9005 |
|
|
(Beta) 150 566.95 T |
9006 |
|
|
(42) 240 566.95 T |
9007 |
|
|
(0392) 294 566.95 T |
9008 |
|
|
0 10 Q |
9009 |
|
|
(GREEK CAPIT) 348 568.28 T |
9010 |
|
|
(AL LETTER BET) 411.89 568.28 T |
9011 |
|
|
(A) 485.48 568.28 T |
9012 |
|
|
9 14 Q |
9013 |
|
|
(C) 42 541.62 T |
9014 |
|
|
0 12 Q |
9015 |
|
|
(KHgr) 96 542.95 T |
9016 |
|
|
(Chi) 150 542.95 T |
9017 |
|
|
(43) 240 542.95 T |
9018 |
|
|
(03A7) 294 542.95 T |
9019 |
|
|
0 10 Q |
9020 |
|
|
(GREEK CAPIT) 348 544.28 T |
9021 |
|
|
(AL LETTER CHI) 411.89 544.28 T |
9022 |
|
|
9 14 Q |
9023 |
|
|
(D) 42 517.61 T |
9024 |
|
|
0 12 Q |
9025 |
|
|
(Delta) 96 518.95 T |
9026 |
|
|
(Delta) 150 518.95 T |
9027 |
|
|
(44) 240 518.95 T |
9028 |
|
|
(0394) 294 518.95 T |
9029 |
|
|
0 10 Q |
9030 |
|
|
(GREEK CAPIT) 348 520.28 T |
9031 |
|
|
(AL LETTER DEL) 411.89 520.28 T |
9032 |
|
|
(T) 485.91 520.28 T |
9033 |
|
|
(A) 491.22 520.28 T |
9034 |
|
|
9 14 Q |
9035 |
|
|
(E) 42 493.61 T |
9036 |
|
|
0 12 Q |
9037 |
|
|
(Egr) 96 494.95 T |
9038 |
|
|
(Epsilon) 150 494.95 T |
9039 |
|
|
(45) 240 494.95 T |
9040 |
|
|
(0395) 294 494.95 T |
9041 |
|
|
0 10 Q |
9042 |
|
|
(GREEK CAPIT) 348 496.28 T |
9043 |
|
|
(AL LETTER EPSILON) 411.89 496.28 T |
9044 |
|
|
9 14 Q |
9045 |
|
|
(F) 42 469.61 T |
9046 |
|
|
0 12 Q |
9047 |
|
|
(PHgr) 96 470.95 T |
9048 |
|
|
(Phi) 150 470.95 T |
9049 |
|
|
(46) 240 470.95 T |
9050 |
|
|
(03A6) 294 470.95 T |
9051 |
|
|
0 10 Q |
9052 |
|
|
(GREEK CAPIT) 348 472.28 T |
9053 |
|
|
(AL LETTER PHI) 411.89 472.28 T |
9054 |
|
|
9 14 Q |
9055 |
|
|
(G) 42 445.61 T |
9056 |
|
|
0 12 Q |
9057 |
|
|
(Gamma) 96 446.95 T |
9058 |
|
|
(Gamma) 150 446.95 T |
9059 |
|
|
(47) 240 446.95 T |
9060 |
|
|
(0393) 294 446.95 T |
9061 |
|
|
0 10 Q |
9062 |
|
|
(GREEK CAPIT) 348 448.28 T |
9063 |
|
|
(AL LETTER GAMMA) 411.89 448.28 T |
9064 |
|
|
9 14 Q |
9065 |
|
|
(H) 42 421.61 T |
9066 |
|
|
0 12 Q |
9067 |
|
|
(EEgr) 96 422.95 T |
9068 |
|
|
(Eta) 150 422.95 T |
9069 |
|
|
(48) 240 422.95 T |
9070 |
|
|
(0397) 294 422.95 T |
9071 |
|
|
0 10 Q |
9072 |
|
|
(GREEK CAPIT) 348 424.28 T |
9073 |
|
|
(AL LETTER ET) 411.89 424.28 T |
9074 |
|
|
(A) 478.82 424.28 T |
9075 |
|
|
9 14 Q |
9076 |
|
|
(I) 42 397.61 T |
9077 |
|
|
0 12 Q |
9078 |
|
|
(Igr) 96 398.95 T |
9079 |
|
|
(Iota) 150 398.95 T |
9080 |
|
|
(49) 240 398.95 T |
9081 |
|
|
(0399) 294 398.95 T |
9082 |
|
|
0 10 Q |
9083 |
|
|
(GREEK CAPIT) 348 400.28 T |
9084 |
|
|
(AL LETTER IOT) 411.89 400.28 T |
9085 |
|
|
(A) 483.26 400.28 T |
9086 |
|
|
9 14 Q |
9087 |
|
|
(J) 42 373.61 T |
9088 |
|
|
0 12 Q |
9089 |
|
|
(thetav) 96 374.95 T |
9090 |
|
|
(theta1) 150 374.95 T |
9091 |
|
|
(4A) 240 374.95 T |
9092 |
|
|
(03D1) 294 374.95 T |
9093 |
|
|
0 10 Q |
9094 |
|
|
(GREEK SMALL LETTER SCRIPT THET) 348 376.28 T |
9095 |
|
|
(A) 520.99 376.28 T |
9096 |
|
|
9 14 Q |
9097 |
|
|
(K) 42 349.61 T |
9098 |
|
|
0 12 Q |
9099 |
|
|
(Kgr) 96 350.95 T |
9100 |
|
|
(Kappa) 150 350.95 T |
9101 |
|
|
(4B) 240 350.95 T |
9102 |
|
|
(039A) 294 350.95 T |
9103 |
|
|
0 10 Q |
9104 |
|
|
(GREEK CAPIT) 348 352.28 T |
9105 |
|
|
(AL LETTER KAPP) 411.89 352.28 T |
9106 |
|
|
(A) 492.03 352.28 T |
9107 |
|
|
9 14 Q |
9108 |
|
|
(L) 42 325.61 T |
9109 |
|
|
0 12 Q |
9110 |
|
|
(Lambda) 96 326.95 T |
9111 |
|
|
(Lambda) 150 326.95 T |
9112 |
|
|
(4C) 240 326.95 T |
9113 |
|
|
(039B) 294 326.95 T |
9114 |
|
|
0 10 Q |
9115 |
|
|
(GREEK CAPIT) 348 328.28 T |
9116 |
|
|
(AL LETTER LAMBDA) 411.89 328.28 T |
9117 |
|
|
9 14 Q |
9118 |
|
|
(M) 42 301.61 T |
9119 |
|
|
0 12 Q |
9120 |
|
|
(Mgr) 96 302.95 T |
9121 |
|
|
(Mu) 150 302.95 T |
9122 |
|
|
(4D) 240 302.95 T |
9123 |
|
|
(039C) 294 302.95 T |
9124 |
|
|
0 10 Q |
9125 |
|
|
(GREEK CAPIT) 348 304.28 T |
9126 |
|
|
(AL LETTER MU) 411.89 304.28 T |
9127 |
|
|
9 14 Q |
9128 |
|
|
(N) 42 277.61 T |
9129 |
|
|
0 12 Q |
9130 |
|
|
(Ngr) 96 278.95 T |
9131 |
|
|
(Nu) 150 278.95 T |
9132 |
|
|
(4E) 240 278.95 T |
9133 |
|
|
(039D) 294 278.95 T |
9134 |
|
|
0 10 Q |
9135 |
|
|
(GREEK CAPIT) 348 280.28 T |
9136 |
|
|
(AL LETTER NU) 411.89 280.28 T |
9137 |
|
|
9 14 Q |
9138 |
|
|
(O) 42 253.61 T |
9139 |
|
|
0 12 Q |
9140 |
|
|
(Ogr) 96 254.95 T |
9141 |
|
|
(Omicron) 150 254.95 T |
9142 |
|
|
(4F) 240 254.95 T |
9143 |
|
|
(039F) 294 254.95 T |
9144 |
|
|
0 10 Q |
9145 |
|
|
(GREEK CAPIT) 348 256.28 T |
9146 |
|
|
(AL LETTER OMICRON) 411.89 256.28 T |
9147 |
|
|
9 14 Q |
9148 |
|
|
(P) 42 229.61 T |
9149 |
|
|
0 12 Q |
9150 |
|
|
(Pi) 96 230.95 T |
9151 |
|
|
(Pi) 150 230.95 T |
9152 |
|
|
(50) 240 230.95 T |
9153 |
|
|
(03A0) 294 230.95 T |
9154 |
|
|
0 10 Q |
9155 |
|
|
(GREEK CAPIT) 348 232.28 T |
9156 |
|
|
(AL LETTER Pl) 411.89 232.28 T |
9157 |
|
|
9 14 Q |
9158 |
|
|
(Q) 42 205.61 T |
9159 |
|
|
0 12 Q |
9160 |
|
|
(Theta) 96 206.95 T |
9161 |
|
|
(Theta) 150 206.95 T |
9162 |
|
|
(51) 240 206.95 T |
9163 |
|
|
(0398) 294 206.95 T |
9164 |
|
|
0 10 Q |
9165 |
|
|
(GREEK CAPIT) 348 208.28 T |
9166 |
|
|
(AL LETTER THET) 411.89 208.28 T |
9167 |
|
|
(A) 492.14 208.28 T |
9168 |
|
|
9 14 Q |
9169 |
|
|
(R) 42 181.61 T |
9170 |
|
|
0 12 Q |
9171 |
|
|
(Rgr) 96 182.95 T |
9172 |
|
|
(Rho) 150 182.95 T |
9173 |
|
|
(52) 240 182.95 T |
9174 |
|
|
(03A1) 294 182.95 T |
9175 |
|
|
0 10 Q |
9176 |
|
|
(GREEK CAPIT) 348 184.28 T |
9177 |
|
|
(AL LETTER RHO) 411.89 184.28 T |
9178 |
|
|
9 14 Q |
9179 |
|
|
(S) 42 157.61 T |
9180 |
|
|
0 12 Q |
9181 |
|
|
(Sigma) 96 158.95 T |
9182 |
|
|
(Sigma) 150 158.95 T |
9183 |
|
|
(53) 240 158.95 T |
9184 |
|
|
(03A3) 294 158.95 T |
9185 |
|
|
0 10 Q |
9186 |
|
|
(GREEK CAPIT) 348 160.28 T |
9187 |
|
|
(AL LETTER SIGMA) 411.89 160.28 T |
9188 |
|
|
9 14 Q |
9189 |
|
|
(T) 42 133.61 T |
9190 |
|
|
0 12 Q |
9191 |
|
|
(Tgr) 96 134.95 T |
9192 |
|
|
(T) 150 134.95 T |
9193 |
|
|
(au) 156.49 134.95 T |
9194 |
|
|
(54) 240 134.95 T |
9195 |
|
|
(03A4) 294 134.95 T |
9196 |
|
|
0 10 Q |
9197 |
|
|
(GREEK CAPIT) 348 136.28 T |
9198 |
|
|
(AL LETTER T) 411.89 136.28 T |
9199 |
|
|
(AU) 472.71 136.28 T |
9200 |
|
|
9 14 Q |
9201 |
|
|
(U) 42 109.61 T |
9202 |
|
|
0 12 Q |
9203 |
|
|
(Upsi) 96 110.95 T |
9204 |
|
|
(Upsilon) 150 110.95 T |
9205 |
|
|
(55) 240 110.95 T |
9206 |
|
|
(03A5) 294 110.95 T |
9207 |
|
|
0 10 Q |
9208 |
|
|
(GREEK CAPIT) 348 112.28 T |
9209 |
|
|
(AL LETTER UPSILON) 411.89 112.28 T |
9210 |
|
|
9 14 Q |
9211 |
|
|
(V) 42 87.61 T |
9212 |
|
|
0 12 Q |
9213 |
|
|
(sfgr) 96 86.95 T |
9214 |
|
|
(sigma1) 150 86.95 T |
9215 |
|
|
(56) 240 86.95 T |
9216 |
|
|
(03C2) 294 86.95 T |
9217 |
|
|
0 10 Q |
9218 |
|
|
(GREEK SMALL LETTER FINAL SIGMA) 348 88.28 T |
9219 |
|
|
5 12 Q |
9220 |
|
|
(Symbol) 43.67 739.95 T |
9221 |
|
|
(ISO) 106.67 746.95 T |
9222 |
|
|
(8879) 105.01 732.95 T |
9223 |
|
|
(Adobe name) 156.85 739.95 T |
9224 |
|
|
(Adobe) 244.34 746.95 T |
9225 |
|
|
(Hex) 250.67 732.95 T |
9226 |
|
|
(Unicode) 294.01 739.95 T |
9227 |
|
|
(Unicode name) 413.52 739.95 T |
9228 |
|
|
36 762.7 36 77.2 2 L |
9229 |
|
|
V |
9230 |
|
|
0.5 H |
9231 |
|
|
0 Z |
9232 |
|
|
N |
9233 |
|
|
90 763.2 90 76.7 2 L |
9234 |
|
|
V |
9235 |
|
|
N |
9236 |
|
|
144 763.2 144 76.7 2 L |
9237 |
|
|
V |
9238 |
|
|
N |
9239 |
|
|
234 763.2 234 76.7 2 L |
9240 |
|
|
V |
9241 |
|
|
N |
9242 |
|
|
288 763.2 288 76.7 2 L |
9243 |
|
|
V |
9244 |
|
|
N |
9245 |
|
|
342 763.2 342 76.7 2 L |
9246 |
|
|
V |
9247 |
|
|
N |
9248 |
|
|
558 762.7 558 77.2 2 L |
9249 |
|
|
V |
9250 |
|
|
N |
9251 |
|
|
35.75 762.95 558.25 762.95 2 L |
9252 |
|
|
V |
9253 |
|
|
N |
9254 |
|
|
36.25 724.2 557.75 724.2 2 L |
9255 |
|
|
V |
9256 |
|
|
N |
9257 |
|
|
36.25 721.7 557.75 721.7 2 L |
9258 |
|
|
V |
9259 |
|
|
N |
9260 |
|
|
35.75 698.95 558.25 698.95 2 L |
9261 |
|
|
V |
9262 |
|
|
N |
9263 |
|
|
35.75 676.95 558.25 676.95 2 L |
9264 |
|
|
V |
9265 |
|
|
N |
9266 |
|
|
35.75 652.95 558.25 652.95 2 L |
9267 |
|
|
V |
9268 |
|
|
N |
9269 |
|
|
35.75 628.95 558.25 628.95 2 L |
9270 |
|
|
V |
9271 |
|
|
N |
9272 |
|
|
35.75 604.95 558.25 604.95 2 L |
9273 |
|
|
V |
9274 |
|
|
N |
9275 |
|
|
35.75 580.95 558.25 580.95 2 L |
9276 |
|
|
V |
9277 |
|
|
N |
9278 |
|
|
35.75 556.95 558.25 556.95 2 L |
9279 |
|
|
V |
9280 |
|
|
N |
9281 |
|
|
35.75 532.95 558.25 532.95 2 L |
9282 |
|
|
V |
9283 |
|
|
N |
9284 |
|
|
35.75 508.95 558.25 508.95 2 L |
9285 |
|
|
V |
9286 |
|
|
N |
9287 |
|
|
35.75 484.95 558.25 484.95 2 L |
9288 |
|
|
V |
9289 |
|
|
N |
9290 |
|
|
35.75 460.95 558.25 460.95 2 L |
9291 |
|
|
V |
9292 |
|
|
N |
9293 |
|
|
35.75 436.95 558.25 436.95 2 L |
9294 |
|
|
V |
9295 |
|
|
N |
9296 |
|
|
35.75 412.95 558.25 412.95 2 L |
9297 |
|
|
V |
9298 |
|
|
N |
9299 |
|
|
35.75 388.95 558.25 388.95 2 L |
9300 |
|
|
V |
9301 |
|
|
N |
9302 |
|
|
35.75 364.95 558.25 364.95 2 L |
9303 |
|
|
V |
9304 |
|
|
N |
9305 |
|
|
35.75 340.95 558.25 340.95 2 L |
9306 |
|
|
V |
9307 |
|
|
N |
9308 |
|
|
35.75 316.95 558.25 316.95 2 L |
9309 |
|
|
V |
9310 |
|
|
N |
9311 |
|
|
35.75 292.95 558.25 292.95 2 L |
9312 |
|
|
V |
9313 |
|
|
N |
9314 |
|
|
35.75 268.95 558.25 268.95 2 L |
9315 |
|
|
V |
9316 |
|
|
N |
9317 |
|
|
35.75 244.95 558.25 244.95 2 L |
9318 |
|
|
V |
9319 |
|
|
N |
9320 |
|
|
35.75 220.95 558.25 220.95 2 L |
9321 |
|
|
V |
9322 |
|
|
N |
9323 |
|
|
35.75 196.95 558.25 196.95 2 L |
9324 |
|
|
V |
9325 |
|
|
N |
9326 |
|
|
35.75 172.95 558.25 172.95 2 L |
9327 |
|
|
V |
9328 |
|
|
N |
9329 |
|
|
35.75 148.95 558.25 148.95 2 L |
9330 |
|
|
V |
9331 |
|
|
N |
9332 |
|
|
35.75 124.95 558.25 124.95 2 L |
9333 |
|
|
V |
9334 |
|
|
N |
9335 |
|
|
35.75 100.95 558.25 100.95 2 L |
9336 |
|
|
V |
9337 |
|
|
N |
9338 |
|
|
35.75 76.95 558.25 76.95 2 L |
9339 |
|
|
V |
9340 |
|
|
N |
9341 |
|
|
FMENDPAGE |
9342 |
|
|
%%EndPage: "51" 56 |
9343 |
|
|
%%Page: "52" 56 |
9344 |
|
|
595.3 792 0 FMBEGINPAGE |
9345 |
|
|
0 10 Q |
9346 |
|
|
0 X |
9347 |
|
|
0 K |
9348 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
9349 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
9350 |
|
|
(52) 292.65 63.28 T |
9351 |
|
|
9 14 Q |
9352 |
|
|
(W) 42 707.61 T |
9353 |
|
|
0 12 Q |
9354 |
|
|
(Omega) 96 708.95 T |
9355 |
|
|
(Omega) 150 708.95 T |
9356 |
|
|
(57) 240 708.95 T |
9357 |
|
|
(03A9) 294 708.95 T |
9358 |
|
|
0 10 Q |
9359 |
|
|
(GREEK CAPIT) 348 710.28 T |
9360 |
|
|
(AL LETTER OMEGA) 411.89 710.28 T |
9361 |
|
|
9 14 Q |
9362 |
|
|
(X) 42 683.61 T |
9363 |
|
|
0 12 Q |
9364 |
|
|
(Xi) 96 684.95 T |
9365 |
|
|
(Xi) 150 684.95 T |
9366 |
|
|
(58) 240 684.95 T |
9367 |
|
|
(039E) 294 684.95 T |
9368 |
|
|
0 10 Q |
9369 |
|
|
(GREEK CAPIT) 348 686.28 T |
9370 |
|
|
(AL LETTER Xl) 411.89 686.28 T |
9371 |
|
|
9 14 Q |
9372 |
|
|
(Y) 42 659.62 T |
9373 |
|
|
0 12 Q |
9374 |
|
|
(Psi) 96 660.95 T |
9375 |
|
|
(Psi) 150 660.95 T |
9376 |
|
|
(59) 240 660.95 T |
9377 |
|
|
(03A8) 294 660.95 T |
9378 |
|
|
0 10 Q |
9379 |
|
|
(GREEK CAPIT) 348 662.28 T |
9380 |
|
|
(AL LETTER PSI) 411.89 662.28 T |
9381 |
|
|
9 14 Q |
9382 |
|
|
(Z) 42 635.62 T |
9383 |
|
|
0 12 Q |
9384 |
|
|
(Zgr) 96 636.95 T |
9385 |
|
|
(Zeta) 150 636.95 T |
9386 |
|
|
(5A) 240 636.95 T |
9387 |
|
|
(0396) 294 636.95 T |
9388 |
|
|
0 10 Q |
9389 |
|
|
(GREEK CAPIT) 348 638.28 T |
9390 |
|
|
(AL LETTER ZET) 411.89 638.28 T |
9391 |
|
|
(A) 484.92 638.28 T |
9392 |
|
|
9 14 Q |
9393 |
|
|
(\134) 42 611.62 T |
9394 |
|
|
0 12 Q |
9395 |
|
|
(there4) 96 612.95 T |
9396 |
|
|
(therefore) 150 612.95 T |
9397 |
|
|
(5C) 240 612.95 T |
9398 |
|
|
(2234) 294 612.95 T |
9399 |
|
|
0 10 Q |
9400 |
|
|
(THEREFORE) 348 614.28 T |
9401 |
|
|
9 14 Q |
9402 |
|
|
(^) 42 587.62 T |
9403 |
|
|
0 12 Q |
9404 |
|
|
(perp) 96 588.95 T |
9405 |
|
|
(perpendicular) 150 588.95 T |
9406 |
|
|
(5E) 240 588.95 T |
9407 |
|
|
(22A5) 294 588.95 T |
9408 |
|
|
0 10 Q |
9409 |
|
|
(UP T) 348 590.28 T |
9410 |
|
|
(ACK) 368.58 590.28 T |
9411 |
|
|
9 12 Q |
9412 |
|
|
(`) 42 564.95 T |
9413 |
|
|
0 F |
9414 |
|
|
(radicalex) 150 564.95 T |
9415 |
|
|
(60) 240 564.95 T |
9416 |
|
|
(203E) 294 564.95 T |
9417 |
|
|
0 10 Q |
9418 |
|
|
(SP) 348 566.28 T |
9419 |
|
|
(ACING OVERSCORE) 358.19 566.28 T |
9420 |
|
|
9 14 Q |
9421 |
|
|
(a) 42 541.62 T |
9422 |
|
|
0 12 Q |
9423 |
|
|
(alpha) 96 542.95 T |
9424 |
|
|
(alpha) 150 542.95 T |
9425 |
|
|
(61) 240 542.95 T |
9426 |
|
|
(03B1) 294 542.95 T |
9427 |
|
|
0 10 Q |
9428 |
|
|
(GREEK SMALL LETTER ALPHA) 348 544.28 T |
9429 |
|
|
9 14 Q |
9430 |
|
|
(b) 42 517.61 T |
9431 |
|
|
0 12 Q |
9432 |
|
|
(beta) 96 518.95 T |
9433 |
|
|
(beta) 150 518.95 T |
9434 |
|
|
(62) 240 518.95 T |
9435 |
|
|
(03B2) 294 518.95 T |
9436 |
|
|
0 10 Q |
9437 |
|
|
(GREEK SMALL LETTER BET) 348 520.28 T |
9438 |
|
|
(A) 477.96 520.28 T |
9439 |
|
|
9 14 Q |
9440 |
|
|
(c) 42 493.61 T |
9441 |
|
|
0 12 Q |
9442 |
|
|
(chi) 96 494.95 T |
9443 |
|
|
(chi) 150 494.95 T |
9444 |
|
|
(63) 240 494.95 T |
9445 |
|
|
(03C7) 294 494.95 T |
9446 |
|
|
0 10 Q |
9447 |
|
|
(GREEK SMALL LETTER CHI) 348 496.28 T |
9448 |
|
|
9 14 Q |
9449 |
|
|
(d) 42 469.61 T |
9450 |
|
|
0 12 Q |
9451 |
|
|
(delta) 96 470.95 T |
9452 |
|
|
(delta) 150 470.95 T |
9453 |
|
|
(64) 240 470.95 T |
9454 |
|
|
(03B4) 294 470.95 T |
9455 |
|
|
0 10 Q |
9456 |
|
|
(GREEK SMALL LETTER DEL) 348 472.28 T |
9457 |
|
|
(T) 478.39 472.28 T |
9458 |
|
|
(A) 483.7 472.28 T |
9459 |
|
|
9 14 Q |
9460 |
|
|
(e) 42 445.61 T |
9461 |
|
|
0 12 Q |
9462 |
|
|
(epsi) 96 446.95 T |
9463 |
|
|
(epsilon) 150 446.95 T |
9464 |
|
|
(65) 240 446.95 T |
9465 |
|
|
(03B5) 294 446.95 T |
9466 |
|
|
0 10 Q |
9467 |
|
|
(GREEK SMALL LETTER EPSILON) 348 448.28 T |
9468 |
|
|
9 14 Q |
9469 |
|
|
(f) 42 421.61 T |
9470 |
|
|
0 12 Q |
9471 |
|
|
(phis) 96 422.95 T |
9472 |
|
|
(phi) 150 422.95 T |
9473 |
|
|
(66) 240 422.95 T |
9474 |
|
|
(03C6) 294 422.95 T |
9475 |
|
|
0 10 Q |
9476 |
|
|
(GREEK SMALL LETTER PHI) 348 424.28 T |
9477 |
|
|
9 14 Q |
9478 |
|
|
(g) 42 397.61 T |
9479 |
|
|
0 12 Q |
9480 |
|
|
(gamma) 96 398.95 T |
9481 |
|
|
(gamma) 150 398.95 T |
9482 |
|
|
(67) 240 398.95 T |
9483 |
|
|
(03B3) 294 398.95 T |
9484 |
|
|
0 10 Q |
9485 |
|
|
(GREEK SMALL LETTER GAMMA) 348 400.28 T |
9486 |
|
|
9 14 Q |
9487 |
|
|
(h) 42 373.61 T |
9488 |
|
|
0 12 Q |
9489 |
|
|
(eta) 96 374.95 T |
9490 |
|
|
(eta) 150 374.95 T |
9491 |
|
|
(68) 240 374.95 T |
9492 |
|
|
(03B7) 294 374.95 T |
9493 |
|
|
0 10 Q |
9494 |
|
|
(GREEK SMALL LETTER ET) 348 376.28 T |
9495 |
|
|
(A) 471.29 376.28 T |
9496 |
|
|
9 14 Q |
9497 |
|
|
(i) 42 349.61 T |
9498 |
|
|
0 12 Q |
9499 |
|
|
(iota) 96 350.95 T |
9500 |
|
|
(iota) 150 350.95 T |
9501 |
|
|
(69) 240 350.95 T |
9502 |
|
|
(03B9) 294 350.95 T |
9503 |
|
|
0 10 Q |
9504 |
|
|
(GREEK SMALL LETTER IOT) 348 352.28 T |
9505 |
|
|
(A) 475.73 352.28 T |
9506 |
|
|
9 14 Q |
9507 |
|
|
(j) 42 325.61 T |
9508 |
|
|
0 12 Q |
9509 |
|
|
(phiv) 96 326.95 T |
9510 |
|
|
(phi1) 150 326.95 T |
9511 |
|
|
(6A) 240 326.95 T |
9512 |
|
|
(03D5) 294 326.95 T |
9513 |
|
|
0 10 Q |
9514 |
|
|
(GREEK SMALL LETTER SCRIPT PHI) 348 328.28 T |
9515 |
|
|
9 14 Q |
9516 |
|
|
(k) 42 301.61 T |
9517 |
|
|
0 12 Q |
9518 |
|
|
(kappa) 96 302.95 T |
9519 |
|
|
(kappa) 150 302.95 T |
9520 |
|
|
(6B) 240 302.95 T |
9521 |
|
|
(03BA) 294 302.95 T |
9522 |
|
|
0 10 Q |
9523 |
|
|
(GREEK SMALL LETTER KAPP) 348 304.28 T |
9524 |
|
|
(A) 484.51 304.28 T |
9525 |
|
|
9 14 Q |
9526 |
|
|
(l) 42 277.61 T |
9527 |
|
|
0 12 Q |
9528 |
|
|
(lambda) 96 278.95 T |
9529 |
|
|
(lambda) 150 278.95 T |
9530 |
|
|
(6C) 240 278.95 T |
9531 |
|
|
(03BB) 294 278.95 T |
9532 |
|
|
0 10 Q |
9533 |
|
|
(GREEK SMALL LETTER LAMBDA) 348 280.28 T |
9534 |
|
|
9 14 Q |
9535 |
|
|
(m) 42 253.61 T |
9536 |
|
|
0 12 Q |
9537 |
|
|
(mu) 96 254.95 T |
9538 |
|
|
(mu) 150 254.95 T |
9539 |
|
|
(6D) 240 254.95 T |
9540 |
|
|
(03BC) 294 254.95 T |
9541 |
|
|
0 10 Q |
9542 |
|
|
(GREEK SMALL LETTER MU) 348 256.28 T |
9543 |
|
|
9 14 Q |
9544 |
|
|
(n) 42 229.61 T |
9545 |
|
|
0 12 Q |
9546 |
|
|
(nu) 96 230.95 T |
9547 |
|
|
(nu) 150 230.95 T |
9548 |
|
|
(6E) 240 230.95 T |
9549 |
|
|
(03BD) 294 230.95 T |
9550 |
|
|
0 10 Q |
9551 |
|
|
(GREEK SMALL LETTER NU) 348 232.28 T |
9552 |
|
|
9 12 Q |
9553 |
|
|
(o) 42 206.95 T |
9554 |
|
|
0 F |
9555 |
|
|
(ogr) 96 206.95 T |
9556 |
|
|
(omicron) 150 206.95 T |
9557 |
|
|
(6F) 240 206.95 T |
9558 |
|
|
(03BF) 294 206.95 T |
9559 |
|
|
0 10 Q |
9560 |
|
|
(GREEK SMALL LETTER OMICRON) 348 208.28 T |
9561 |
|
|
9 14 Q |
9562 |
|
|
(p) 42 183.61 T |
9563 |
|
|
0 12 Q |
9564 |
|
|
(pi) 96 184.95 T |
9565 |
|
|
(pi) 150 184.95 T |
9566 |
|
|
(70) 240 184.95 T |
9567 |
|
|
(03C0) 294 184.95 T |
9568 |
|
|
0 10 Q |
9569 |
|
|
(GREEK SMALL LETTER Pl) 348 186.28 T |
9570 |
|
|
9 14 Q |
9571 |
|
|
(q) 42 159.61 T |
9572 |
|
|
0 12 Q |
9573 |
|
|
(thetas) 96 160.95 T |
9574 |
|
|
(theta) 150 160.95 T |
9575 |
|
|
(71) 240 160.95 T |
9576 |
|
|
(03B8) 294 160.95 T |
9577 |
|
|
0 10 Q |
9578 |
|
|
(GREEK SMALL LETTER THET) 348 162.28 T |
9579 |
|
|
(A) 484.61 162.28 T |
9580 |
|
|
9 14 Q |
9581 |
|
|
(r) 42 135.61 T |
9582 |
|
|
0 12 Q |
9583 |
|
|
(rho) 96 136.95 T |
9584 |
|
|
(rho) 150 136.95 T |
9585 |
|
|
(72) 240 136.95 T |
9586 |
|
|
(03C1) 294 136.95 T |
9587 |
|
|
0 10 Q |
9588 |
|
|
(GREEK SMALL LETTER RHO) 348 138.28 T |
9589 |
|
|
9 14 Q |
9590 |
|
|
(s) 42 111.61 T |
9591 |
|
|
0 12 Q |
9592 |
|
|
(sigma) 96 112.95 T |
9593 |
|
|
(sigma) 150 112.95 T |
9594 |
|
|
(73) 240 112.95 T |
9595 |
|
|
(03C3) 294 112.95 T |
9596 |
|
|
0 10 Q |
9597 |
|
|
(GREEK SMALL LETTER SIGMA) 348 114.28 T |
9598 |
|
|
9 14 Q |
9599 |
|
|
(t) 42 87.61 T |
9600 |
|
|
0 12 Q |
9601 |
|
|
(tau) 96 88.95 T |
9602 |
|
|
(tau) 150 88.95 T |
9603 |
|
|
(74) 240 88.95 T |
9604 |
|
|
(03C4) 294 88.95 T |
9605 |
|
|
0 10 Q |
9606 |
|
|
(GREEK SMALL LETTER T) 348 90.28 T |
9607 |
|
|
(AU) 465.19 90.28 T |
9608 |
|
|
5 12 Q |
9609 |
|
|
(Symbol) 43.67 739.95 T |
9610 |
|
|
(ISO) 106.67 746.95 T |
9611 |
|
|
(8879) 105.01 732.95 T |
9612 |
|
|
(Adobe name) 156.85 739.95 T |
9613 |
|
|
(Adobe) 244.34 746.95 T |
9614 |
|
|
(Hex) 250.67 732.95 T |
9615 |
|
|
(Unicode) 294.01 739.95 T |
9616 |
|
|
(Unicode name) 413.52 739.95 T |
9617 |
|
|
36 762.7 36 79.2 2 L |
9618 |
|
|
V |
9619 |
|
|
0.5 H |
9620 |
|
|
0 Z |
9621 |
|
|
N |
9622 |
|
|
90 763.2 90 78.7 2 L |
9623 |
|
|
V |
9624 |
|
|
N |
9625 |
|
|
144 763.2 144 78.7 2 L |
9626 |
|
|
V |
9627 |
|
|
N |
9628 |
|
|
234 763.2 234 78.7 2 L |
9629 |
|
|
V |
9630 |
|
|
N |
9631 |
|
|
288 763.2 288 78.7 2 L |
9632 |
|
|
V |
9633 |
|
|
N |
9634 |
|
|
342 763.2 342 78.7 2 L |
9635 |
|
|
V |
9636 |
|
|
N |
9637 |
|
|
558 762.7 558 79.2 2 L |
9638 |
|
|
V |
9639 |
|
|
N |
9640 |
|
|
35.75 762.95 558.25 762.95 2 L |
9641 |
|
|
V |
9642 |
|
|
N |
9643 |
|
|
36.25 724.2 557.75 724.2 2 L |
9644 |
|
|
V |
9645 |
|
|
N |
9646 |
|
|
36.25 721.7 557.75 721.7 2 L |
9647 |
|
|
V |
9648 |
|
|
N |
9649 |
|
|
35.75 698.95 558.25 698.95 2 L |
9650 |
|
|
V |
9651 |
|
|
N |
9652 |
|
|
35.75 674.95 558.25 674.95 2 L |
9653 |
|
|
V |
9654 |
|
|
N |
9655 |
|
|
35.75 650.95 558.25 650.95 2 L |
9656 |
|
|
V |
9657 |
|
|
N |
9658 |
|
|
35.75 626.95 558.25 626.95 2 L |
9659 |
|
|
V |
9660 |
|
|
N |
9661 |
|
|
35.75 602.95 558.25 602.95 2 L |
9662 |
|
|
V |
9663 |
|
|
N |
9664 |
|
|
35.75 578.95 558.25 578.95 2 L |
9665 |
|
|
V |
9666 |
|
|
N |
9667 |
|
|
35.75 556.95 558.25 556.95 2 L |
9668 |
|
|
V |
9669 |
|
|
N |
9670 |
|
|
35.75 532.95 558.25 532.95 2 L |
9671 |
|
|
V |
9672 |
|
|
N |
9673 |
|
|
35.75 508.95 558.25 508.95 2 L |
9674 |
|
|
V |
9675 |
|
|
N |
9676 |
|
|
35.75 484.95 558.25 484.95 2 L |
9677 |
|
|
V |
9678 |
|
|
N |
9679 |
|
|
35.75 460.95 558.25 460.95 2 L |
9680 |
|
|
V |
9681 |
|
|
N |
9682 |
|
|
35.75 436.95 558.25 436.95 2 L |
9683 |
|
|
V |
9684 |
|
|
N |
9685 |
|
|
35.75 412.95 558.25 412.95 2 L |
9686 |
|
|
V |
9687 |
|
|
N |
9688 |
|
|
35.75 388.95 558.25 388.95 2 L |
9689 |
|
|
V |
9690 |
|
|
N |
9691 |
|
|
35.75 364.95 558.25 364.95 2 L |
9692 |
|
|
V |
9693 |
|
|
N |
9694 |
|
|
35.75 340.95 558.25 340.95 2 L |
9695 |
|
|
V |
9696 |
|
|
N |
9697 |
|
|
35.75 316.95 558.25 316.95 2 L |
9698 |
|
|
V |
9699 |
|
|
N |
9700 |
|
|
35.75 292.95 558.25 292.95 2 L |
9701 |
|
|
V |
9702 |
|
|
N |
9703 |
|
|
35.75 268.95 558.25 268.95 2 L |
9704 |
|
|
V |
9705 |
|
|
N |
9706 |
|
|
35.75 244.95 558.25 244.95 2 L |
9707 |
|
|
V |
9708 |
|
|
N |
9709 |
|
|
35.75 220.95 558.25 220.95 2 L |
9710 |
|
|
V |
9711 |
|
|
N |
9712 |
|
|
35.75 198.95 558.25 198.95 2 L |
9713 |
|
|
V |
9714 |
|
|
N |
9715 |
|
|
35.75 174.95 558.25 174.95 2 L |
9716 |
|
|
V |
9717 |
|
|
N |
9718 |
|
|
35.75 150.95 558.25 150.95 2 L |
9719 |
|
|
V |
9720 |
|
|
N |
9721 |
|
|
35.75 126.95 558.25 126.95 2 L |
9722 |
|
|
V |
9723 |
|
|
N |
9724 |
|
|
35.75 102.95 558.25 102.95 2 L |
9725 |
|
|
V |
9726 |
|
|
N |
9727 |
|
|
35.75 78.95 558.25 78.95 2 L |
9728 |
|
|
V |
9729 |
|
|
N |
9730 |
|
|
FMENDPAGE |
9731 |
|
|
%%EndPage: "52" 57 |
9732 |
|
|
%%Page: "53" 57 |
9733 |
|
|
595.3 792 0 FMBEGINPAGE |
9734 |
|
|
0 10 Q |
9735 |
|
|
0 X |
9736 |
|
|
0 K |
9737 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
9738 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
9739 |
|
|
(53) 292.65 63.28 T |
9740 |
|
|
9 14 Q |
9741 |
|
|
(u) 42 707.61 T |
9742 |
|
|
0 12 Q |
9743 |
|
|
(upsi) 96 708.95 T |
9744 |
|
|
(upsilon) 150 708.95 T |
9745 |
|
|
(75) 240 708.95 T |
9746 |
|
|
(03C5) 294 708.95 T |
9747 |
|
|
0 10 Q |
9748 |
|
|
(GREEK SMALL LETTER UPSILON) 348 710.28 T |
9749 |
|
|
9 14 Q |
9750 |
|
|
(v) 42 683.61 T |
9751 |
|
|
0 12 Q |
9752 |
|
|
(piv) 96 684.95 T |
9753 |
|
|
(omega1) 150 684.95 T |
9754 |
|
|
(76) 240 684.95 T |
9755 |
|
|
(03D6) 294 684.95 T |
9756 |
|
|
0 10 Q |
9757 |
|
|
(GREEK SMALL LETTER OMEGA Pl) 348 686.28 T |
9758 |
|
|
9 14 Q |
9759 |
|
|
(w) 42 659.62 T |
9760 |
|
|
0 12 Q |
9761 |
|
|
(omega) 96 660.95 T |
9762 |
|
|
(omega) 150 660.95 T |
9763 |
|
|
(77) 240 660.95 T |
9764 |
|
|
(03C9) 294 660.95 T |
9765 |
|
|
0 10 Q |
9766 |
|
|
(GREEK SMALL LETTER OMEGA) 348 662.28 T |
9767 |
|
|
9 14 Q |
9768 |
|
|
(x) 42 635.62 T |
9769 |
|
|
0 12 Q |
9770 |
|
|
(xi) 96 636.95 T |
9771 |
|
|
(xi) 150 636.95 T |
9772 |
|
|
(78) 240 636.95 T |
9773 |
|
|
(03BE) 294 636.95 T |
9774 |
|
|
0 10 Q |
9775 |
|
|
(GREEK SMALL LETTER Xl) 348 638.28 T |
9776 |
|
|
9 14 Q |
9777 |
|
|
(y) 42 611.62 T |
9778 |
|
|
0 12 Q |
9779 |
|
|
(psi) 96 612.95 T |
9780 |
|
|
(psi) 150 612.95 T |
9781 |
|
|
(79) 240 612.95 T |
9782 |
|
|
(03C8) 294 612.95 T |
9783 |
|
|
0 10 Q |
9784 |
|
|
(GREEK SMALL LETTER PSI) 348 614.28 T |
9785 |
|
|
9 14 Q |
9786 |
|
|
(z) 42 587.62 T |
9787 |
|
|
0 12 Q |
9788 |
|
|
(zeta) 96 588.95 T |
9789 |
|
|
(zeta) 150 588.95 T |
9790 |
|
|
(7A) 240 588.95 T |
9791 |
|
|
(03B6) 294 588.95 T |
9792 |
|
|
0 10 Q |
9793 |
|
|
(GREEK SMALL LETTER ZET) 348 590.28 T |
9794 |
|
|
(A) 477.4 590.28 T |
9795 |
|
|
9 14 Q |
9796 |
|
|
(~) 42 563.62 T |
9797 |
|
|
0 12 Q |
9798 |
|
|
(sim) 96 564.95 T |
9799 |
|
|
(similar) 150 564.95 T |
9800 |
|
|
(7E) 240 564.95 T |
9801 |
|
|
(223C) 294 564.95 T |
9802 |
|
|
0 10 Q |
9803 |
|
|
(TILDE OPERA) 348 566.28 T |
9804 |
|
|
(T) 411.02 566.28 T |
9805 |
|
|
(OR) 416.94 566.28 T |
9806 |
|
|
9 14 Q |
9807 |
|
|
(\241) 42 539.62 T |
9808 |
|
|
0 12 Q |
9809 |
|
|
(Upsilon1) 150 540.95 T |
9810 |
|
|
(A1) 240 540.95 T |
9811 |
|
|
(03D2) 294 540.95 T |
9812 |
|
|
0 10 Q |
9813 |
|
|
(GREEK CAPIT) 348 542.28 T |
9814 |
|
|
(AL LETTER UPSILON HOOK) 411.89 542.28 T |
9815 |
|
|
9 14 Q |
9816 |
|
|
(\242) 42 515.61 T |
9817 |
|
|
0 12 Q |
9818 |
|
|
(vprime) 96 516.95 T |
9819 |
|
|
(minute) 150 516.95 T |
9820 |
|
|
(A2) 240 516.95 T |
9821 |
|
|
(2032) 294 516.95 T |
9822 |
|
|
0 10 Q |
9823 |
|
|
(PRIME) 348 518.28 T |
9824 |
|
|
9 14 Q |
9825 |
|
|
(\243) 42 491.61 T |
9826 |
|
|
0 12 Q |
9827 |
|
|
(le) 96 492.95 T |
9828 |
|
|
(lessequal) 150 492.95 T |
9829 |
|
|
(A3) 240 492.95 T |
9830 |
|
|
(2264) 294 492.95 T |
9831 |
|
|
0 10 Q |
9832 |
|
|
(LESS THAN OR EQUAL T) 348 494.28 T |
9833 |
|
|
(O) 462.75 494.28 T |
9834 |
|
|
0 12 Q |
9835 |
|
|
(\332) 42 468.95 T |
9836 |
|
|
(fraction) 150 468.95 T |
9837 |
|
|
(A4) 240 468.95 T |
9838 |
|
|
(2044) 294 468.95 T |
9839 |
|
|
0 10 Q |
9840 |
|
|
(FRACTION SLASH) 348 470.28 T |
9841 |
|
|
9 14 Q |
9842 |
|
|
(\245) 42 445.61 T |
9843 |
|
|
0 12 Q |
9844 |
|
|
(in\336n) 96 446.95 T |
9845 |
|
|
(in\336nity) 150 446.95 T |
9846 |
|
|
(A5) 240 446.95 T |
9847 |
|
|
(221E) 294 446.95 T |
9848 |
|
|
0 10 Q |
9849 |
|
|
(INFINITY) 348 448.28 T |
9850 |
|
|
9 14 Q |
9851 |
|
|
(\246) 42 421.61 T |
9852 |
|
|
0 12 Q |
9853 |
|
|
(fnof) 96 422.95 T |
9854 |
|
|
(\337orin) 150 422.95 T |
9855 |
|
|
(A6) 240 422.95 T |
9856 |
|
|
(0192) 294 422.95 T |
9857 |
|
|
0 10 Q |
9858 |
|
|
(LA) 348 424.28 T |
9859 |
|
|
(TIN SMALL LETTER SCRIPT F) 360.21 424.28 T |
9860 |
|
|
9 14 Q |
9861 |
|
|
(\247) 42 397.61 T |
9862 |
|
|
0 12 Q |
9863 |
|
|
(clubs) 96 398.95 T |
9864 |
|
|
(club) 150 398.95 T |
9865 |
|
|
(A7) 240 398.95 T |
9866 |
|
|
(2663) 294 398.95 T |
9867 |
|
|
0 10 Q |
9868 |
|
|
(BLACK CLUB SUIT) 348 400.28 T |
9869 |
|
|
9 14 Q |
9870 |
|
|
(\250) 42 373.61 T |
9871 |
|
|
0 12 Q |
9872 |
|
|
(diams) 96 374.95 T |
9873 |
|
|
(diamond) 150 374.95 T |
9874 |
|
|
(A8) 240 374.95 T |
9875 |
|
|
(2666) 294 374.95 T |
9876 |
|
|
0 10 Q |
9877 |
|
|
(BLACK DIAMOND SUIT) 348 376.28 T |
9878 |
|
|
9 14 Q |
9879 |
|
|
(\251) 42 349.61 T |
9880 |
|
|
0 12 Q |
9881 |
|
|
(hearts) 96 350.95 T |
9882 |
|
|
(heart) 150 350.95 T |
9883 |
|
|
(A9) 240 350.95 T |
9884 |
|
|
(2665) 294 350.95 T |
9885 |
|
|
0 10 Q |
9886 |
|
|
(BLACK HEAR) 348 352.28 T |
9887 |
|
|
(T SUIT) 410.98 352.28 T |
9888 |
|
|
9 14 Q |
9889 |
|
|
(\252) 42 325.61 T |
9890 |
|
|
0 12 Q |
9891 |
|
|
(spades) 96 326.95 T |
9892 |
|
|
(spade) 150 326.95 T |
9893 |
|
|
(AA) 240 326.95 T |
9894 |
|
|
(2660) 294 326.95 T |
9895 |
|
|
0 10 Q |
9896 |
|
|
(BLACK SP) 348 328.28 T |
9897 |
|
|
(ADE SUIT) 394.56 328.28 T |
9898 |
|
|
9 14 Q |
9899 |
|
|
(\253) 42 301.61 T |
9900 |
|
|
0 12 Q |
9901 |
|
|
(harr) 96 302.95 T |
9902 |
|
|
(arrowboth) 150 302.95 T |
9903 |
|
|
(AB) 240 302.95 T |
9904 |
|
|
(2194) 294 302.95 T |
9905 |
|
|
0 10 Q |
9906 |
|
|
(LEFT RIGHT ARROW) 348 304.28 T |
9907 |
|
|
9 14 Q |
9908 |
|
|
(\254) 42 277.61 T |
9909 |
|
|
0 12 Q |
9910 |
|
|
(larr) 96 278.95 T |
9911 |
|
|
(arrowleft) 150 278.95 T |
9912 |
|
|
(AC) 240 278.95 T |
9913 |
|
|
(2190) 294 278.95 T |
9914 |
|
|
0 10 Q |
9915 |
|
|
(LEFT ARROW) 348 280.28 T |
9916 |
|
|
9 14 Q |
9917 |
|
|
(\255) 42 253.61 T |
9918 |
|
|
0 12 Q |
9919 |
|
|
(uarr) 96 254.95 T |
9920 |
|
|
(arrowup) 150 254.95 T |
9921 |
|
|
(AD) 240 254.95 T |
9922 |
|
|
(2191) 294 254.95 T |
9923 |
|
|
0 10 Q |
9924 |
|
|
(UP ARROW) 348 256.28 T |
9925 |
|
|
9 14 Q |
9926 |
|
|
(\256) 42 229.61 T |
9927 |
|
|
0 12 Q |
9928 |
|
|
(rarr) 96 230.95 T |
9929 |
|
|
(arrowright) 150 230.95 T |
9930 |
|
|
(AE) 240 230.95 T |
9931 |
|
|
(2192) 294 230.95 T |
9932 |
|
|
0 10 Q |
9933 |
|
|
(RIGHT ARROW) 348 232.28 T |
9934 |
|
|
9 14 Q |
9935 |
|
|
(\257) 42 207.61 T |
9936 |
|
|
0 12 Q |
9937 |
|
|
(darr) 96 206.95 T |
9938 |
|
|
(arrowdown) 150 206.95 T |
9939 |
|
|
(AF) 240 206.95 T |
9940 |
|
|
(2193) 294 206.95 T |
9941 |
|
|
0 10 Q |
9942 |
|
|
(DOWN ARROW) 348 208.28 T |
9943 |
|
|
9 14 Q |
9944 |
|
|
(\262) 42 181.61 T |
9945 |
|
|
0 12 Q |
9946 |
|
|
(Prime) 96 182.95 T |
9947 |
|
|
(second) 150 182.95 T |
9948 |
|
|
(B2) 240 182.95 T |
9949 |
|
|
(2033) 294 182.95 T |
9950 |
|
|
0 10 Q |
9951 |
|
|
(DOUBLE PRIME) 348 184.28 T |
9952 |
|
|
9 14 Q |
9953 |
|
|
(\263) 42 157.61 T |
9954 |
|
|
0 12 Q |
9955 |
|
|
(ge) 96 158.95 T |
9956 |
|
|
(greaterequal) 150 158.95 T |
9957 |
|
|
(B3) 240 158.95 T |
9958 |
|
|
(2265) 294 158.95 T |
9959 |
|
|
0 10 Q |
9960 |
|
|
(GREA) 348 160.28 T |
9961 |
|
|
(TER THAN OR EQUAL T) 374.1 160.28 T |
9962 |
|
|
(O) 484.39 160.28 T |
9963 |
|
|
9 14 Q |
9964 |
|
|
(\265) 42 133.61 T |
9965 |
|
|
0 12 Q |
9966 |
|
|
(prop) 96 134.95 T |
9967 |
|
|
(proportional) 150 134.95 T |
9968 |
|
|
(B5) 240 134.95 T |
9969 |
|
|
(221D) 294 134.95 T |
9970 |
|
|
0 10 Q |
9971 |
|
|
(PROPOR) 348 136.28 T |
9972 |
|
|
(TIONAL T) 386.28 136.28 T |
9973 |
|
|
(O) 431.89 136.28 T |
9974 |
|
|
9 14 Q |
9975 |
|
|
(\266) 42 109.61 T |
9976 |
|
|
0 12 Q |
9977 |
|
|
(part) 96 110.95 T |
9978 |
|
|
(partialdif) 150 110.95 T |
9979 |
|
|
(f) 193.75 110.95 T |
9980 |
|
|
(B6) 240 110.95 T |
9981 |
|
|
(2202) 294 110.95 T |
9982 |
|
|
0 10 Q |
9983 |
|
|
(P) 348 112.28 T |
9984 |
|
|
(AR) 352.64 112.28 T |
9985 |
|
|
(TIAL DIFFERENTIAL) 365.92 112.28 T |
9986 |
|
|
9 14 Q |
9987 |
|
|
(\267) 42 85.61 T |
9988 |
|
|
0 12 Q |
9989 |
|
|
(bull) 96 86.95 T |
9990 |
|
|
(bullet) 150 86.95 T |
9991 |
|
|
(B7) 240 86.95 T |
9992 |
|
|
(2022) 294 86.95 T |
9993 |
|
|
0 10 Q |
9994 |
|
|
(BULLET) 348 88.28 T |
9995 |
|
|
5 12 Q |
9996 |
|
|
(Symbol) 43.67 739.95 T |
9997 |
|
|
(ISO) 106.67 746.95 T |
9998 |
|
|
(8879) 105.01 732.95 T |
9999 |
|
|
(Adobe name) 156.85 739.95 T |
10000 |
|
|
(Adobe) 244.34 746.95 T |
10001 |
|
|
(Hex) 250.67 732.95 T |
10002 |
|
|
(Unicode) 294.01 739.95 T |
10003 |
|
|
(Unicode name) 413.52 739.95 T |
10004 |
|
|
36 762.7 36 77.2 2 L |
10005 |
|
|
V |
10006 |
|
|
0.5 H |
10007 |
|
|
0 Z |
10008 |
|
|
N |
10009 |
|
|
90 763.2 90 76.7 2 L |
10010 |
|
|
V |
10011 |
|
|
N |
10012 |
|
|
144 763.2 144 76.7 2 L |
10013 |
|
|
V |
10014 |
|
|
N |
10015 |
|
|
234 763.2 234 76.7 2 L |
10016 |
|
|
V |
10017 |
|
|
N |
10018 |
|
|
288 763.2 288 76.7 2 L |
10019 |
|
|
V |
10020 |
|
|
N |
10021 |
|
|
342 763.2 342 76.7 2 L |
10022 |
|
|
V |
10023 |
|
|
N |
10024 |
|
|
558 762.7 558 77.2 2 L |
10025 |
|
|
V |
10026 |
|
|
N |
10027 |
|
|
35.75 762.95 558.25 762.95 2 L |
10028 |
|
|
V |
10029 |
|
|
N |
10030 |
|
|
36.25 724.2 557.75 724.2 2 L |
10031 |
|
|
V |
10032 |
|
|
N |
10033 |
|
|
36.25 721.7 557.75 721.7 2 L |
10034 |
|
|
V |
10035 |
|
|
N |
10036 |
|
|
35.75 698.95 558.25 698.95 2 L |
10037 |
|
|
V |
10038 |
|
|
N |
10039 |
|
|
35.75 674.95 558.25 674.95 2 L |
10040 |
|
|
V |
10041 |
|
|
N |
10042 |
|
|
35.75 650.95 558.25 650.95 2 L |
10043 |
|
|
V |
10044 |
|
|
N |
10045 |
|
|
35.75 626.95 558.25 626.95 2 L |
10046 |
|
|
V |
10047 |
|
|
N |
10048 |
|
|
35.75 602.95 558.25 602.95 2 L |
10049 |
|
|
V |
10050 |
|
|
N |
10051 |
|
|
35.75 578.95 558.25 578.95 2 L |
10052 |
|
|
V |
10053 |
|
|
N |
10054 |
|
|
35.75 554.95 558.25 554.95 2 L |
10055 |
|
|
V |
10056 |
|
|
N |
10057 |
|
|
35.75 530.95 558.25 530.95 2 L |
10058 |
|
|
V |
10059 |
|
|
N |
10060 |
|
|
35.75 506.95 558.25 506.95 2 L |
10061 |
|
|
V |
10062 |
|
|
N |
10063 |
|
|
35.75 482.95 558.25 482.95 2 L |
10064 |
|
|
V |
10065 |
|
|
N |
10066 |
|
|
35.75 460.95 558.25 460.95 2 L |
10067 |
|
|
V |
10068 |
|
|
N |
10069 |
|
|
35.75 436.95 558.25 436.95 2 L |
10070 |
|
|
V |
10071 |
|
|
N |
10072 |
|
|
35.75 412.95 558.25 412.95 2 L |
10073 |
|
|
V |
10074 |
|
|
N |
10075 |
|
|
35.75 388.95 558.25 388.95 2 L |
10076 |
|
|
V |
10077 |
|
|
N |
10078 |
|
|
35.75 364.95 558.25 364.95 2 L |
10079 |
|
|
V |
10080 |
|
|
N |
10081 |
|
|
35.75 340.95 558.25 340.95 2 L |
10082 |
|
|
V |
10083 |
|
|
N |
10084 |
|
|
35.75 316.95 558.25 316.95 2 L |
10085 |
|
|
V |
10086 |
|
|
N |
10087 |
|
|
35.75 292.95 558.25 292.95 2 L |
10088 |
|
|
V |
10089 |
|
|
N |
10090 |
|
|
35.75 268.95 558.25 268.95 2 L |
10091 |
|
|
V |
10092 |
|
|
N |
10093 |
|
|
35.75 244.95 558.25 244.95 2 L |
10094 |
|
|
V |
10095 |
|
|
N |
10096 |
|
|
35.75 220.95 558.25 220.95 2 L |
10097 |
|
|
V |
10098 |
|
|
N |
10099 |
|
|
35.75 196.95 558.25 196.95 2 L |
10100 |
|
|
V |
10101 |
|
|
N |
10102 |
|
|
35.75 172.95 558.25 172.95 2 L |
10103 |
|
|
V |
10104 |
|
|
N |
10105 |
|
|
35.75 148.95 558.25 148.95 2 L |
10106 |
|
|
V |
10107 |
|
|
N |
10108 |
|
|
35.75 124.95 558.25 124.95 2 L |
10109 |
|
|
V |
10110 |
|
|
N |
10111 |
|
|
35.75 100.95 558.25 100.95 2 L |
10112 |
|
|
V |
10113 |
|
|
N |
10114 |
|
|
35.75 76.95 558.25 76.95 2 L |
10115 |
|
|
V |
10116 |
|
|
N |
10117 |
|
|
FMENDPAGE |
10118 |
|
|
%%EndPage: "53" 58 |
10119 |
|
|
%%Page: "54" 58 |
10120 |
|
|
595.3 792 0 FMBEGINPAGE |
10121 |
|
|
0 10 Q |
10122 |
|
|
0 X |
10123 |
|
|
0 K |
10124 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
10125 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
10126 |
|
|
(54) 292.65 63.28 T |
10127 |
|
|
9 14 Q |
10128 |
|
|
(\271) 42 707.61 T |
10129 |
|
|
0 12 Q |
10130 |
|
|
(ne) 96 708.95 T |
10131 |
|
|
(notequal) 150 708.95 T |
10132 |
|
|
(B9) 240 708.95 T |
10133 |
|
|
(2260) 294 708.95 T |
10134 |
|
|
0 10 Q |
10135 |
|
|
(NOT EQUAL T) 348 710.28 T |
10136 |
|
|
(O) 413.32 710.28 T |
10137 |
|
|
9 14 Q |
10138 |
|
|
(\272) 42 683.61 T |
10139 |
|
|
0 12 Q |
10140 |
|
|
(equiv) 96 684.95 T |
10141 |
|
|
(equivalence) 150 684.95 T |
10142 |
|
|
(BA) 240 684.95 T |
10143 |
|
|
(2261) 294 684.95 T |
10144 |
|
|
0 10 Q |
10145 |
|
|
(IDENTICAL T) 348 686.28 T |
10146 |
|
|
(O) 409.72 686.28 T |
10147 |
|
|
9 14 Q |
10148 |
|
|
(\273) 42 659.62 T |
10149 |
|
|
0 12 Q |
10150 |
|
|
(ap) 96 660.95 T |
10151 |
|
|
(approxequal) 150 660.95 T |
10152 |
|
|
(BB) 240 660.95 T |
10153 |
|
|
(2248) 294 660.95 T |
10154 |
|
|
0 10 Q |
10155 |
|
|
(ALMOST EQUAL T) 348 662.28 T |
10156 |
|
|
(O) 433.87 662.28 T |
10157 |
|
|
9 14 Q |
10158 |
|
|
(\274) 42 635.62 T |
10159 |
|
|
0 12 Q |
10160 |
|
|
(hellip) 96 636.95 T |
10161 |
|
|
(ellipsis) 150 636.95 T |
10162 |
|
|
(BC) 240 636.95 T |
10163 |
|
|
(2026) 294 636.95 T |
10164 |
|
|
0 10 Q |
10165 |
|
|
(HORIZONT) 348 638.28 T |
10166 |
|
|
(AL ELLIPSIS) 398.27 638.28 T |
10167 |
|
|
9 14 Q |
10168 |
|
|
(\275) 42 611.62 T |
10169 |
|
|
0 12 Q |
10170 |
|
|
(arrowvertex) 150 612.95 T |
10171 |
|
|
(BD) 240 612.95 T |
10172 |
|
|
9 14 Q |
10173 |
|
|
(\276) 42 587.62 T |
10174 |
|
|
0 12 Q |
10175 |
|
|
(arrowhorizex) 150 588.95 T |
10176 |
|
|
(BE) 240 588.95 T |
10177 |
|
|
9 14 Q |
10178 |
|
|
(\277) 42 563.62 T |
10179 |
|
|
0 12 Q |
10180 |
|
|
(carriagereturn) 150 564.95 T |
10181 |
|
|
(BF) 240 564.95 T |
10182 |
|
|
(21B5) 294 564.95 T |
10183 |
|
|
0 10 Q |
10184 |
|
|
(DOWN ARROW WITH CORNER LEFT) 348 566.28 T |
10185 |
|
|
9 14 Q |
10186 |
|
|
(\300) 42 539.62 T |
10187 |
|
|
0 12 Q |
10188 |
|
|
(aleph) 96 540.95 T |
10189 |
|
|
(aleph) 150 540.95 T |
10190 |
|
|
(C0) 240 540.95 T |
10191 |
|
|
(2135) 294 540.95 T |
10192 |
|
|
0 10 Q |
10193 |
|
|
(FIRST TRANSFINITE CARDINAL) 348 542.28 T |
10194 |
|
|
9 14 Q |
10195 |
|
|
(\301) 42 515.61 T |
10196 |
|
|
0 12 Q |
10197 |
|
|
(image) 96 516.95 T |
10198 |
|
|
(Ifraktur) 150 516.95 T |
10199 |
|
|
(C1) 240 516.95 T |
10200 |
|
|
(21) 294 516.95 T |
10201 |
|
|
(1) 305.55 516.95 T |
10202 |
|
|
(1) 311.1 516.95 T |
10203 |
|
|
0 10 Q |
10204 |
|
|
(BLACK-LETTER I) 348 518.28 T |
10205 |
|
|
9 14 Q |
10206 |
|
|
(\302) 42 491.61 T |
10207 |
|
|
0 12 Q |
10208 |
|
|
(real) 96 492.95 T |
10209 |
|
|
(Rfraktur) 150 492.95 T |
10210 |
|
|
(C2) 240 492.95 T |
10211 |
|
|
(21) 294 492.95 T |
10212 |
|
|
(1C) 305.55 492.95 T |
10213 |
|
|
0 10 Q |
10214 |
|
|
(BLACK-LETTER R) 348 494.28 T |
10215 |
|
|
9 14 Q |
10216 |
|
|
(\303) 42 468.61 T |
10217 |
|
|
0 12 Q |
10218 |
|
|
(weierp) 96 468.95 T |
10219 |
|
|
(weierstrass) 150 468.95 T |
10220 |
|
|
(C3) 240 468.95 T |
10221 |
|
|
(21) 294 468.95 T |
10222 |
|
|
(18) 305.55 468.95 T |
10223 |
|
|
0 10 Q |
10224 |
|
|
(SCRIPT P) 348 470.28 T |
10225 |
|
|
9 14 Q |
10226 |
|
|
(\304) 42 443.61 T |
10227 |
|
|
0 12 Q |
10228 |
|
|
(otimes) 96 444.95 T |
10229 |
|
|
(circlemultiply) 150 444.95 T |
10230 |
|
|
(C4) 240 444.95 T |
10231 |
|
|
(2297) 294 444.95 T |
10232 |
|
|
0 10 Q |
10233 |
|
|
(CIRCLED TIMES) 348 446.28 T |
10234 |
|
|
9 14 Q |
10235 |
|
|
(\305) 42 419.61 T |
10236 |
|
|
0 12 Q |
10237 |
|
|
(oplus) 96 420.95 T |
10238 |
|
|
(circleplus) 150 420.95 T |
10239 |
|
|
(C5) 240 420.95 T |
10240 |
|
|
(2295) 294 420.95 T |
10241 |
|
|
0 10 Q |
10242 |
|
|
(CIRCLED PLUS) 348 422.28 T |
10243 |
|
|
9 14 Q |
10244 |
|
|
(\306) 42 395.61 T |
10245 |
|
|
0 12 Q |
10246 |
|
|
(empty) 96 396.95 T |
10247 |
|
|
(emptyset) 150 396.95 T |
10248 |
|
|
(C6) 240 396.95 T |
10249 |
|
|
(2205) 294 396.95 T |
10250 |
|
|
0 10 Q |
10251 |
|
|
(EMPTY SET) 348 398.28 T |
10252 |
|
|
9 14 Q |
10253 |
|
|
(\307) 42 371.61 T |
10254 |
|
|
0 12 Q |
10255 |
|
|
(cap) 96 372.95 T |
10256 |
|
|
(intersection) 150 372.95 T |
10257 |
|
|
(C7) 240 372.95 T |
10258 |
|
|
(2229) 294 372.95 T |
10259 |
|
|
0 10 Q |
10260 |
|
|
(INTERSECTION) 348 374.28 T |
10261 |
|
|
9 14 Q |
10262 |
|
|
(\310) 42 347.61 T |
10263 |
|
|
0 12 Q |
10264 |
|
|
(cup) 96 348.95 T |
10265 |
|
|
(union) 150 348.95 T |
10266 |
|
|
(C8) 240 348.95 T |
10267 |
|
|
(222A) 294 348.95 T |
10268 |
|
|
0 10 Q |
10269 |
|
|
(UNION) 348 350.28 T |
10270 |
|
|
9 14 Q |
10271 |
|
|
(\311) 42 323.61 T |
10272 |
|
|
0 12 Q |
10273 |
|
|
(sup) 96 324.95 T |
10274 |
|
|
(propersuperset) 150 324.95 T |
10275 |
|
|
(C9) 240 324.95 T |
10276 |
|
|
(2283) 294 324.95 T |
10277 |
|
|
0 10 Q |
10278 |
|
|
(SUPERSET OF) 348 326.28 T |
10279 |
|
|
9 14 Q |
10280 |
|
|
(\312) 42 300.61 T |
10281 |
|
|
0 12 Q |
10282 |
|
|
(supe) 96 300.95 T |
10283 |
|
|
(re\337exsuperset) 150 300.95 T |
10284 |
|
|
(CA) 240 300.95 T |
10285 |
|
|
(2287) 294 300.95 T |
10286 |
|
|
0 10 Q |
10287 |
|
|
(SUPERSET OF OR EQUAL T) 348 302.28 T |
10288 |
|
|
(O) 473.31 302.28 T |
10289 |
|
|
9 14 Q |
10290 |
|
|
(\313) 42 275.61 T |
10291 |
|
|
0 12 Q |
10292 |
|
|
(nsub) 96 276.95 T |
10293 |
|
|
(notsubset) 150 276.95 T |
10294 |
|
|
(CB) 240 276.95 T |
10295 |
|
|
(2284) 294 276.95 T |
10296 |
|
|
0 10 Q |
10297 |
|
|
(NOT A SUBSET OF) 348 278.28 T |
10298 |
|
|
9 14 Q |
10299 |
|
|
(\314) 42 251.61 T |
10300 |
|
|
0 12 Q |
10301 |
|
|
(sub) 96 252.95 T |
10302 |
|
|
(propersubset) 150 252.95 T |
10303 |
|
|
(CC) 240 252.95 T |
10304 |
|
|
(2282) 294 252.95 T |
10305 |
|
|
0 10 Q |
10306 |
|
|
(SUBSET OF) 348 254.28 T |
10307 |
|
|
9 14 Q |
10308 |
|
|
(\315) 42 228.61 T |
10309 |
|
|
0 12 Q |
10310 |
|
|
(sube) 96 228.95 T |
10311 |
|
|
(re\337exsubset) 150 228.95 T |
10312 |
|
|
(CD) 240 228.95 T |
10313 |
|
|
(2286) 294 228.95 T |
10314 |
|
|
0 10 Q |
10315 |
|
|
(SUBSET OF OR EQUAL T) 348 230.28 T |
10316 |
|
|
(O) 461.65 230.28 T |
10317 |
|
|
9 14 Q |
10318 |
|
|
(\316) 42 203.61 T |
10319 |
|
|
0 12 Q |
10320 |
|
|
(isin) 96 204.95 T |
10321 |
|
|
(element) 150 204.95 T |
10322 |
|
|
(CE) 240 204.95 T |
10323 |
|
|
(2208) 294 204.95 T |
10324 |
|
|
0 10 Q |
10325 |
|
|
(ELEMENT OF) 348 206.28 T |
10326 |
|
|
9 14 Q |
10327 |
|
|
(\317) 42 179.61 T |
10328 |
|
|
0 12 Q |
10329 |
|
|
(notin) 96 180.95 T |
10330 |
|
|
(notelement) 150 180.95 T |
10331 |
|
|
(CF) 240 180.95 T |
10332 |
|
|
(2209) 294 180.95 T |
10333 |
|
|
0 10 Q |
10334 |
|
|
(NOT AN ELEMENT OF) 348 182.28 T |
10335 |
|
|
9 14 Q |
10336 |
|
|
(\320) 42 155.61 T |
10337 |
|
|
0 12 Q |
10338 |
|
|
(ang) 96 156.95 T |
10339 |
|
|
(angle) 150 156.95 T |
10340 |
|
|
(D0) 240 156.95 T |
10341 |
|
|
(2220) 294 156.95 T |
10342 |
|
|
0 10 Q |
10343 |
|
|
(ANGLE) 348 158.28 T |
10344 |
|
|
9 14 Q |
10345 |
|
|
(\321) 42 131.61 T |
10346 |
|
|
0 12 Q |
10347 |
|
|
(nabla) 96 132.95 T |
10348 |
|
|
(gradient) 150 132.95 T |
10349 |
|
|
(D1) 240 132.95 T |
10350 |
|
|
(2207) 294 132.95 T |
10351 |
|
|
0 10 Q |
10352 |
|
|
(NABLA) 348 134.28 T |
10353 |
|
|
9 14 Q |
10354 |
|
|
(\324) 42 107.61 T |
10355 |
|
|
0 12 Q |
10356 |
|
|
(trade) 96 108.95 T |
10357 |
|
|
(trademarkserif) 150 108.95 T |
10358 |
|
|
(D4) 240 108.95 T |
10359 |
|
|
(2122) 294 108.95 T |
10360 |
|
|
0 10 Q |
10361 |
|
|
(TRADEMARK) 348 110.28 T |
10362 |
|
|
9 14 Q |
10363 |
|
|
(\325) 42 83.61 T |
10364 |
|
|
0 12 Q |
10365 |
|
|
(prod) 96 84.95 T |
10366 |
|
|
(product) 150 84.95 T |
10367 |
|
|
(D5) 240 84.95 T |
10368 |
|
|
(220F) 294 84.95 T |
10369 |
|
|
0 10 Q |
10370 |
|
|
(N-AR) 348 86.28 T |
10371 |
|
|
(Y PRODUCT) 371.88 86.28 T |
10372 |
|
|
5 12 Q |
10373 |
|
|
(Symbol) 43.67 739.95 T |
10374 |
|
|
(ISO) 106.67 746.95 T |
10375 |
|
|
(8879) 105.01 732.95 T |
10376 |
|
|
(Adobe name) 156.85 739.95 T |
10377 |
|
|
(Adobe) 244.34 746.95 T |
10378 |
|
|
(Hex) 250.67 732.95 T |
10379 |
|
|
(Unicode) 294.01 739.95 T |
10380 |
|
|
(Unicode name) 413.52 739.95 T |
10381 |
|
|
36 762.7 36 75.2 2 L |
10382 |
|
|
V |
10383 |
|
|
0.5 H |
10384 |
|
|
0 Z |
10385 |
|
|
N |
10386 |
|
|
90 763.2 90 74.7 2 L |
10387 |
|
|
V |
10388 |
|
|
N |
10389 |
|
|
144 763.2 144 74.7 2 L |
10390 |
|
|
V |
10391 |
|
|
N |
10392 |
|
|
234 763.2 234 74.7 2 L |
10393 |
|
|
V |
10394 |
|
|
N |
10395 |
|
|
288 763.2 288 74.7 2 L |
10396 |
|
|
V |
10397 |
|
|
N |
10398 |
|
|
342 763.2 342 74.7 2 L |
10399 |
|
|
V |
10400 |
|
|
N |
10401 |
|
|
558 762.7 558 75.2 2 L |
10402 |
|
|
V |
10403 |
|
|
N |
10404 |
|
|
35.75 762.95 558.25 762.95 2 L |
10405 |
|
|
V |
10406 |
|
|
N |
10407 |
|
|
36.25 724.2 557.75 724.2 2 L |
10408 |
|
|
V |
10409 |
|
|
N |
10410 |
|
|
36.25 721.7 557.75 721.7 2 L |
10411 |
|
|
V |
10412 |
|
|
N |
10413 |
|
|
35.75 698.95 558.25 698.95 2 L |
10414 |
|
|
V |
10415 |
|
|
N |
10416 |
|
|
35.75 674.95 558.25 674.95 2 L |
10417 |
|
|
V |
10418 |
|
|
N |
10419 |
|
|
35.75 650.95 558.25 650.95 2 L |
10420 |
|
|
V |
10421 |
|
|
N |
10422 |
|
|
35.75 626.95 558.25 626.95 2 L |
10423 |
|
|
V |
10424 |
|
|
N |
10425 |
|
|
35.75 602.95 558.25 602.95 2 L |
10426 |
|
|
V |
10427 |
|
|
N |
10428 |
|
|
35.75 578.95 558.25 578.95 2 L |
10429 |
|
|
V |
10430 |
|
|
N |
10431 |
|
|
35.75 554.95 558.25 554.95 2 L |
10432 |
|
|
V |
10433 |
|
|
N |
10434 |
|
|
35.75 530.95 558.25 530.95 2 L |
10435 |
|
|
V |
10436 |
|
|
N |
10437 |
|
|
35.75 506.95 558.25 506.95 2 L |
10438 |
|
|
V |
10439 |
|
|
N |
10440 |
|
|
35.75 482.95 558.25 482.95 2 L |
10441 |
|
|
V |
10442 |
|
|
N |
10443 |
|
|
35.75 458.95 558.25 458.95 2 L |
10444 |
|
|
V |
10445 |
|
|
N |
10446 |
|
|
35.75 434.95 558.25 434.95 2 L |
10447 |
|
|
V |
10448 |
|
|
N |
10449 |
|
|
35.75 410.95 558.25 410.95 2 L |
10450 |
|
|
V |
10451 |
|
|
N |
10452 |
|
|
35.75 386.95 558.25 386.95 2 L |
10453 |
|
|
V |
10454 |
|
|
N |
10455 |
|
|
35.75 362.95 558.25 362.95 2 L |
10456 |
|
|
V |
10457 |
|
|
N |
10458 |
|
|
35.75 338.95 558.25 338.95 2 L |
10459 |
|
|
V |
10460 |
|
|
N |
10461 |
|
|
35.75 314.95 558.25 314.95 2 L |
10462 |
|
|
V |
10463 |
|
|
N |
10464 |
|
|
35.75 290.95 558.25 290.95 2 L |
10465 |
|
|
V |
10466 |
|
|
N |
10467 |
|
|
35.75 266.95 558.25 266.95 2 L |
10468 |
|
|
V |
10469 |
|
|
N |
10470 |
|
|
35.75 242.95 558.25 242.95 2 L |
10471 |
|
|
V |
10472 |
|
|
N |
10473 |
|
|
35.75 218.95 558.25 218.95 2 L |
10474 |
|
|
V |
10475 |
|
|
N |
10476 |
|
|
35.75 194.95 558.25 194.95 2 L |
10477 |
|
|
V |
10478 |
|
|
N |
10479 |
|
|
35.75 170.95 558.25 170.95 2 L |
10480 |
|
|
V |
10481 |
|
|
N |
10482 |
|
|
35.75 146.95 558.25 146.95 2 L |
10483 |
|
|
V |
10484 |
|
|
N |
10485 |
|
|
35.75 122.95 558.25 122.95 2 L |
10486 |
|
|
V |
10487 |
|
|
N |
10488 |
|
|
35.75 98.95 558.25 98.95 2 L |
10489 |
|
|
V |
10490 |
|
|
N |
10491 |
|
|
35.75 74.95 558.25 74.95 2 L |
10492 |
|
|
V |
10493 |
|
|
N |
10494 |
|
|
FMENDPAGE |
10495 |
|
|
%%EndPage: "54" 59 |
10496 |
|
|
%%Page: "55" 59 |
10497 |
|
|
595.3 792 0 FMBEGINPAGE |
10498 |
|
|
0 10 Q |
10499 |
|
|
0 X |
10500 |
|
|
0 K |
10501 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
10502 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
10503 |
|
|
(55) 292.65 63.28 T |
10504 |
|
|
9 14 Q |
10505 |
|
|
(\326) 42 707.61 T |
10506 |
|
|
0 12 Q |
10507 |
|
|
(radic) 96 708.95 T |
10508 |
|
|
(radical) 150 708.95 T |
10509 |
|
|
(D6) 240 708.95 T |
10510 |
|
|
(221A) 294 708.95 T |
10511 |
|
|
0 10 Q |
10512 |
|
|
(SQUARE ROOT) 348 710.28 T |
10513 |
|
|
9 14 Q |
10514 |
|
|
(\327) 42 683.61 T |
10515 |
|
|
0 12 Q |
10516 |
|
|
(sdot) 96 684.95 T |
10517 |
|
|
(dotmath) 150 684.95 T |
10518 |
|
|
(D7) 240 684.95 T |
10519 |
|
|
(22C5) 294 684.95 T |
10520 |
|
|
0 10 Q |
10521 |
|
|
(DOT OPERA) 348 686.28 T |
10522 |
|
|
(T) 402.69 686.28 T |
10523 |
|
|
(OR) 408.62 686.28 T |
10524 |
|
|
9 14 Q |
10525 |
|
|
(\331) 42 659.62 T |
10526 |
|
|
0 12 Q |
10527 |
|
|
(and) 96 660.95 T |
10528 |
|
|
(logicaland) 150 660.95 T |
10529 |
|
|
(D9) 240 660.95 T |
10530 |
|
|
(2227) 294 660.95 T |
10531 |
|
|
0 10 Q |
10532 |
|
|
(LOGICAL AND) 348 662.28 T |
10533 |
|
|
9 14 Q |
10534 |
|
|
(\332) 42 635.62 T |
10535 |
|
|
0 12 Q |
10536 |
|
|
(or) 96 636.95 T |
10537 |
|
|
(logicalor) 150 636.95 T |
10538 |
|
|
(DA) 240 636.95 T |
10539 |
|
|
(2228) 294 636.95 T |
10540 |
|
|
0 10 Q |
10541 |
|
|
(LOGICAL OR) 348 638.28 T |
10542 |
|
|
9 14 Q |
10543 |
|
|
(\333) 42 611.62 T |
10544 |
|
|
0 12 Q |
10545 |
|
|
(hArr) 96 612.95 T |
10546 |
|
|
(arrowdblboth) 150 612.95 T |
10547 |
|
|
(DB) 240 612.95 T |
10548 |
|
|
(21D4) 294 612.95 T |
10549 |
|
|
0 10 Q |
10550 |
|
|
(LEFT RIGHT DOUBLE ARROW) 348 614.28 T |
10551 |
|
|
9 14 Q |
10552 |
|
|
(\334) 42 587.62 T |
10553 |
|
|
0 12 Q |
10554 |
|
|
(lArr) 96 588.95 T |
10555 |
|
|
(arrowdblleft) 150 588.95 T |
10556 |
|
|
(DC) 240 588.95 T |
10557 |
|
|
(21D0) 294 588.95 T |
10558 |
|
|
0 10 Q |
10559 |
|
|
(LEFT DOUBLE ARROW) 348 590.28 T |
10560 |
|
|
9 14 Q |
10561 |
|
|
(\335) 42 563.62 T |
10562 |
|
|
0 12 Q |
10563 |
|
|
(uArr) 96 564.95 T |
10564 |
|
|
(arrowdblup) 150 564.95 T |
10565 |
|
|
(DD) 240 564.95 T |
10566 |
|
|
(21D1) 294 564.95 T |
10567 |
|
|
0 10 Q |
10568 |
|
|
(UP DOUBLE ARROW) 348 566.28 T |
10569 |
|
|
9 14 Q |
10570 |
|
|
(\336) 42 539.62 T |
10571 |
|
|
0 12 Q |
10572 |
|
|
(rArr) 96 540.95 T |
10573 |
|
|
(arrowdblright) 150 540.95 T |
10574 |
|
|
(DE) 240 540.95 T |
10575 |
|
|
(21D2) 294 540.95 T |
10576 |
|
|
0 10 Q |
10577 |
|
|
(RIGHT DOUBLE ARROW) 348 542.28 T |
10578 |
|
|
9 14 Q |
10579 |
|
|
(\337) 42 515.61 T |
10580 |
|
|
0 12 Q |
10581 |
|
|
(dArr) 96 516.95 T |
10582 |
|
|
(arrowdbldown) 150 516.95 T |
10583 |
|
|
(DF) 240 516.95 T |
10584 |
|
|
(21D3) 294 516.95 T |
10585 |
|
|
0 10 Q |
10586 |
|
|
(DOWN DOUBLE ARROW) 348 518.28 T |
10587 |
|
|
9 14 Q |
10588 |
|
|
(\340) 42 491.61 T |
10589 |
|
|
0 12 Q |
10590 |
|
|
(loz) 96 492.95 T |
10591 |
|
|
(lozenge) 150 492.95 T |
10592 |
|
|
(E0) 240 492.95 T |
10593 |
|
|
(25CA) 294 492.95 T |
10594 |
|
|
0 10 Q |
10595 |
|
|
(LOZENGE) 348 494.28 T |
10596 |
|
|
9 14 Q |
10597 |
|
|
(\341) 42 467.61 T |
10598 |
|
|
0 12 Q |
10599 |
|
|
(lang) 96 468.95 T |
10600 |
|
|
(angleleft) 150 468.95 T |
10601 |
|
|
(E1) 240 468.95 T |
10602 |
|
|
(2329) 294 468.95 T |
10603 |
|
|
0 10 Q |
10604 |
|
|
(BRA) 348 470.28 T |
10605 |
|
|
9 14 Q |
10606 |
|
|
(\345) 42 443.61 T |
10607 |
|
|
0 12 Q |
10608 |
|
|
(sum) 96 444.95 T |
10609 |
|
|
(summation) 150 444.95 T |
10610 |
|
|
(E5) 240 444.95 T |
10611 |
|
|
(221) 294 444.95 T |
10612 |
|
|
(1) 311.55 444.95 T |
10613 |
|
|
0 10 Q |
10614 |
|
|
(N-AR) 348 446.28 T |
10615 |
|
|
(Y SUMMA) 371.88 446.28 T |
10616 |
|
|
(TION) 418.24 446.28 T |
10617 |
|
|
9 12 Q |
10618 |
|
|
(\346) 42 420.95 T |
10619 |
|
|
0 F |
10620 |
|
|
(parenlefttp) 150 420.95 T |
10621 |
|
|
(E6) 240 420.95 T |
10622 |
|
|
9 F |
10623 |
|
|
(\347) 42 398.95 T |
10624 |
|
|
0 F |
10625 |
|
|
(parenleftex) 150 398.95 T |
10626 |
|
|
(E7) 240 398.95 T |
10627 |
|
|
9 F |
10628 |
|
|
(\350) 42 376.95 T |
10629 |
|
|
0 F |
10630 |
|
|
(parenleftbt) 150 376.95 T |
10631 |
|
|
(E8) 240 376.95 T |
10632 |
|
|
9 14 Q |
10633 |
|
|
(\351) 42 353.61 T |
10634 |
|
|
0 12 Q |
10635 |
|
|
(lceil) 96 354.95 T |
10636 |
|
|
(bracketlefttp) 150 354.95 T |
10637 |
|
|
(E9) 240 354.95 T |
10638 |
|
|
(2308) 294 354.95 T |
10639 |
|
|
0 10 Q |
10640 |
|
|
(LEFT CEILING) 348 356.28 T |
10641 |
|
|
9 12 Q |
10642 |
|
|
(\352) 42 330.95 T |
10643 |
|
|
0 F |
10644 |
|
|
(bracketleftex) 150 330.95 T |
10645 |
|
|
(EA) 240 330.95 T |
10646 |
|
|
9 F |
10647 |
|
|
(\353) 42 308.95 T |
10648 |
|
|
0 F |
10649 |
|
|
(l\337oor) 96 308.95 T |
10650 |
|
|
(bracketleftbt) 150 308.95 T |
10651 |
|
|
(EB) 240 308.95 T |
10652 |
|
|
(230A) 294 308.95 T |
10653 |
|
|
0 10 Q |
10654 |
|
|
(LEFT FLOOR) 348 310.28 T |
10655 |
|
|
9 12 Q |
10656 |
|
|
(\354) 42 286.95 T |
10657 |
|
|
0 F |
10658 |
|
|
(bracelefttp) 150 286.95 T |
10659 |
|
|
(EC) 240 286.95 T |
10660 |
|
|
9 F |
10661 |
|
|
(\355) 42 264.95 T |
10662 |
|
|
0 F |
10663 |
|
|
(braceleftmid) 150 264.95 T |
10664 |
|
|
(ED) 240 264.95 T |
10665 |
|
|
9 F |
10666 |
|
|
(\356) 42 242.95 T |
10667 |
|
|
0 F |
10668 |
|
|
(braceleftbt) 150 242.95 T |
10669 |
|
|
(EE) 240 242.95 T |
10670 |
|
|
9 F |
10671 |
|
|
(\357) 42 220.95 T |
10672 |
|
|
0 F |
10673 |
|
|
(braceex) 150 220.95 T |
10674 |
|
|
(EF) 240 220.95 T |
10675 |
|
|
9 14 Q |
10676 |
|
|
(\361) 42 197.61 T |
10677 |
|
|
0 12 Q |
10678 |
|
|
(rang) 96 198.95 T |
10679 |
|
|
(angleright) 150 198.95 T |
10680 |
|
|
(F1) 240 198.95 T |
10681 |
|
|
(232A) 294 198.95 T |
10682 |
|
|
0 10 Q |
10683 |
|
|
(KET) 348 200.28 T |
10684 |
|
|
9 14 Q |
10685 |
|
|
(\362) 42 173.61 T |
10686 |
|
|
0 12 Q |
10687 |
|
|
(int) 96 174.95 T |
10688 |
|
|
(integral) 150 174.95 T |
10689 |
|
|
(F2) 240 174.95 T |
10690 |
|
|
(222B) 294 174.95 T |
10691 |
|
|
0 10 Q |
10692 |
|
|
(INTEGRAL) 348 176.28 T |
10693 |
|
|
9 14 Q |
10694 |
|
|
(\363) 42 149.61 T |
10695 |
|
|
0 12 Q |
10696 |
|
|
(integraltp) 150 150.95 T |
10697 |
|
|
(F3) 240 150.95 T |
10698 |
|
|
(2320) 294 150.95 T |
10699 |
|
|
0 10 Q |
10700 |
|
|
(T) 348 152.28 T |
10701 |
|
|
(OP HALF INTEGRAL) 353.93 152.28 T |
10702 |
|
|
9 12 Q |
10703 |
|
|
(\364) 42 126.95 T |
10704 |
|
|
0 F |
10705 |
|
|
(integralex) 150 126.95 T |
10706 |
|
|
(F4) 240 126.95 T |
10707 |
|
|
9 14 Q |
10708 |
|
|
(\365) 42 105.61 T |
10709 |
|
|
0 12 Q |
10710 |
|
|
(integralbt) 150 104.95 T |
10711 |
|
|
(F5) 240 104.95 T |
10712 |
|
|
(2321) 294 104.95 T |
10713 |
|
|
0 10 Q |
10714 |
|
|
(BOTT) 348 106.28 T |
10715 |
|
|
(OM HALF INTEGRAL) 373.92 106.28 T |
10716 |
|
|
9 12 Q |
10717 |
|
|
(\366) 42 80.95 T |
10718 |
|
|
0 F |
10719 |
|
|
(parenrighttp) 150 80.95 T |
10720 |
|
|
(F6) 240 80.95 T |
10721 |
|
|
5 F |
10722 |
|
|
(Symbol) 43.67 739.95 T |
10723 |
|
|
(ISO) 106.67 746.95 T |
10724 |
|
|
(8879) 105.01 732.95 T |
10725 |
|
|
(Adobe name) 156.85 739.95 T |
10726 |
|
|
(Adobe) 244.34 746.95 T |
10727 |
|
|
(Hex) 250.67 732.95 T |
10728 |
|
|
(Unicode) 294.01 739.95 T |
10729 |
|
|
(Unicode name) 413.52 739.95 T |
10730 |
|
|
36 762.7 36 73.2 2 L |
10731 |
|
|
V |
10732 |
|
|
0.5 H |
10733 |
|
|
0 Z |
10734 |
|
|
N |
10735 |
|
|
90 763.2 90 72.7 2 L |
10736 |
|
|
V |
10737 |
|
|
N |
10738 |
|
|
144 763.2 144 72.7 2 L |
10739 |
|
|
V |
10740 |
|
|
N |
10741 |
|
|
234 763.2 234 72.7 2 L |
10742 |
|
|
V |
10743 |
|
|
N |
10744 |
|
|
288 763.2 288 72.7 2 L |
10745 |
|
|
V |
10746 |
|
|
N |
10747 |
|
|
342 763.2 342 72.7 2 L |
10748 |
|
|
V |
10749 |
|
|
N |
10750 |
|
|
558 762.7 558 73.2 2 L |
10751 |
|
|
V |
10752 |
|
|
N |
10753 |
|
|
35.75 762.95 558.25 762.95 2 L |
10754 |
|
|
V |
10755 |
|
|
N |
10756 |
|
|
36.25 724.2 557.75 724.2 2 L |
10757 |
|
|
V |
10758 |
|
|
N |
10759 |
|
|
36.25 721.7 557.75 721.7 2 L |
10760 |
|
|
V |
10761 |
|
|
N |
10762 |
|
|
35.75 698.95 558.25 698.95 2 L |
10763 |
|
|
V |
10764 |
|
|
N |
10765 |
|
|
35.75 674.95 558.25 674.95 2 L |
10766 |
|
|
V |
10767 |
|
|
N |
10768 |
|
|
35.75 650.95 558.25 650.95 2 L |
10769 |
|
|
V |
10770 |
|
|
N |
10771 |
|
|
35.75 626.95 558.25 626.95 2 L |
10772 |
|
|
V |
10773 |
|
|
N |
10774 |
|
|
35.75 602.95 558.25 602.95 2 L |
10775 |
|
|
V |
10776 |
|
|
N |
10777 |
|
|
35.75 578.95 558.25 578.95 2 L |
10778 |
|
|
V |
10779 |
|
|
N |
10780 |
|
|
35.75 554.95 558.25 554.95 2 L |
10781 |
|
|
V |
10782 |
|
|
N |
10783 |
|
|
35.75 530.95 558.25 530.95 2 L |
10784 |
|
|
V |
10785 |
|
|
N |
10786 |
|
|
35.75 506.95 558.25 506.95 2 L |
10787 |
|
|
V |
10788 |
|
|
N |
10789 |
|
|
35.75 482.95 558.25 482.95 2 L |
10790 |
|
|
V |
10791 |
|
|
N |
10792 |
|
|
35.75 458.95 558.25 458.95 2 L |
10793 |
|
|
V |
10794 |
|
|
N |
10795 |
|
|
35.75 434.95 558.25 434.95 2 L |
10796 |
|
|
V |
10797 |
|
|
N |
10798 |
|
|
35.75 412.95 558.25 412.95 2 L |
10799 |
|
|
V |
10800 |
|
|
N |
10801 |
|
|
35.75 390.95 558.25 390.95 2 L |
10802 |
|
|
V |
10803 |
|
|
N |
10804 |
|
|
35.75 368.95 558.25 368.95 2 L |
10805 |
|
|
V |
10806 |
|
|
N |
10807 |
|
|
35.75 344.95 558.25 344.95 2 L |
10808 |
|
|
V |
10809 |
|
|
N |
10810 |
|
|
35.75 322.95 558.25 322.95 2 L |
10811 |
|
|
V |
10812 |
|
|
N |
10813 |
|
|
35.75 300.95 558.25 300.95 2 L |
10814 |
|
|
V |
10815 |
|
|
N |
10816 |
|
|
35.75 278.95 558.25 278.95 2 L |
10817 |
|
|
V |
10818 |
|
|
N |
10819 |
|
|
35.75 256.95 558.25 256.95 2 L |
10820 |
|
|
V |
10821 |
|
|
N |
10822 |
|
|
35.75 234.95 558.25 234.95 2 L |
10823 |
|
|
V |
10824 |
|
|
N |
10825 |
|
|
35.75 212.95 558.25 212.95 2 L |
10826 |
|
|
V |
10827 |
|
|
N |
10828 |
|
|
35.75 188.95 558.25 188.95 2 L |
10829 |
|
|
V |
10830 |
|
|
N |
10831 |
|
|
35.75 164.95 558.25 164.95 2 L |
10832 |
|
|
V |
10833 |
|
|
N |
10834 |
|
|
35.75 140.95 558.25 140.95 2 L |
10835 |
|
|
V |
10836 |
|
|
N |
10837 |
|
|
35.75 118.95 558.25 118.95 2 L |
10838 |
|
|
V |
10839 |
|
|
N |
10840 |
|
|
35.75 94.95 558.25 94.95 2 L |
10841 |
|
|
V |
10842 |
|
|
N |
10843 |
|
|
35.75 72.95 558.25 72.95 2 L |
10844 |
|
|
V |
10845 |
|
|
N |
10846 |
|
|
FMENDPAGE |
10847 |
|
|
%%EndPage: "55" 60 |
10848 |
|
|
%%Page: "56" 60 |
10849 |
|
|
595.3 792 0 FMBEGINPAGE |
10850 |
|
|
0 10 Q |
10851 |
|
|
0 X |
10852 |
|
|
0 K |
10853 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
10854 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
10855 |
|
|
(56) 292.65 63.28 T |
10856 |
|
|
0 12 Q |
10857 |
|
|
(Many thanks to Bob Stayton for volunteering his time and ef) 36 524.95 T |
10858 |
|
|
(fort to prepare this table.) 327.61 524.95 T |
10859 |
|
|
9 F |
10860 |
|
|
(\367) 42 708.95 T |
10861 |
|
|
0 F |
10862 |
|
|
(parenrightex) 150 708.95 T |
10863 |
|
|
(F7) 240 708.95 T |
10864 |
|
|
9 F |
10865 |
|
|
(\370) 42 686.95 T |
10866 |
|
|
0 F |
10867 |
|
|
(parenrightbt) 150 686.95 T |
10868 |
|
|
(F8) 240 686.95 T |
10869 |
|
|
9 F |
10870 |
|
|
(\371) 42 664.95 T |
10871 |
|
|
0 F |
10872 |
|
|
(rceil) 96 664.95 T |
10873 |
|
|
(bracketrighttp) 150 664.95 T |
10874 |
|
|
(F9) 240 664.95 T |
10875 |
|
|
(2309) 294 664.95 T |
10876 |
|
|
0 10 Q |
10877 |
|
|
(RIGHT CEILING) 348 666.28 T |
10878 |
|
|
9 12 Q |
10879 |
|
|
(\372) 42 642.95 T |
10880 |
|
|
0 F |
10881 |
|
|
(bracketrightex) 150 642.95 T |
10882 |
|
|
(F) 240 642.95 T |
10883 |
|
|
(A) 245.78 642.95 T |
10884 |
|
|
9 F |
10885 |
|
|
(\373) 42 620.95 T |
10886 |
|
|
0 F |
10887 |
|
|
(r\337oor) 96 620.95 T |
10888 |
|
|
(bracketrightbt) 150 620.95 T |
10889 |
|
|
(FB) 240 620.95 T |
10890 |
|
|
(230B) 294 620.95 T |
10891 |
|
|
0 10 Q |
10892 |
|
|
(RIGHT FLOOR) 348 622.28 T |
10893 |
|
|
9 12 Q |
10894 |
|
|
(\374) 42 598.95 T |
10895 |
|
|
0 F |
10896 |
|
|
(bracerighttp) 150 598.95 T |
10897 |
|
|
(FC) 240 598.95 T |
10898 |
|
|
9 14 Q |
10899 |
|
|
(\375) 42 578.62 T |
10900 |
|
|
0 12 Q |
10901 |
|
|
(bracerightmid) 150 576.95 T |
10902 |
|
|
(FD) 240 576.95 T |
10903 |
|
|
9 F |
10904 |
|
|
(\376) 42 552.95 T |
10905 |
|
|
0 F |
10906 |
|
|
(bracerightbt) 150 552.95 T |
10907 |
|
|
(FE) 240 552.95 T |
10908 |
|
|
5 F |
10909 |
|
|
(Symbol) 43.67 739.95 T |
10910 |
|
|
(ISO) 106.67 746.95 T |
10911 |
|
|
(8879) 105.01 732.95 T |
10912 |
|
|
(Adobe name) 156.85 739.95 T |
10913 |
|
|
(Adobe) 244.34 746.95 T |
10914 |
|
|
(Hex) 250.67 732.95 T |
10915 |
|
|
(Unicode) 294.01 739.95 T |
10916 |
|
|
(Unicode name) 413.52 739.95 T |
10917 |
|
|
36 762.7 36 545.2 2 L |
10918 |
|
|
V |
10919 |
|
|
0.5 H |
10920 |
|
|
0 Z |
10921 |
|
|
N |
10922 |
|
|
90 763.2 90 544.7 2 L |
10923 |
|
|
V |
10924 |
|
|
N |
10925 |
|
|
144 763.2 144 544.7 2 L |
10926 |
|
|
V |
10927 |
|
|
N |
10928 |
|
|
234 763.2 234 544.7 2 L |
10929 |
|
|
V |
10930 |
|
|
N |
10931 |
|
|
288 763.2 288 544.7 2 L |
10932 |
|
|
V |
10933 |
|
|
N |
10934 |
|
|
342 763.2 342 544.7 2 L |
10935 |
|
|
V |
10936 |
|
|
N |
10937 |
|
|
558 762.7 558 545.2 2 L |
10938 |
|
|
V |
10939 |
|
|
N |
10940 |
|
|
35.75 762.95 558.25 762.95 2 L |
10941 |
|
|
V |
10942 |
|
|
N |
10943 |
|
|
36.25 724.2 557.75 724.2 2 L |
10944 |
|
|
V |
10945 |
|
|
N |
10946 |
|
|
36.25 721.7 557.75 721.7 2 L |
10947 |
|
|
V |
10948 |
|
|
N |
10949 |
|
|
35.75 700.95 558.25 700.95 2 L |
10950 |
|
|
V |
10951 |
|
|
N |
10952 |
|
|
35.75 678.95 558.25 678.95 2 L |
10953 |
|
|
V |
10954 |
|
|
N |
10955 |
|
|
35.75 656.95 558.25 656.95 2 L |
10956 |
|
|
V |
10957 |
|
|
N |
10958 |
|
|
35.75 634.95 558.25 634.95 2 L |
10959 |
|
|
V |
10960 |
|
|
N |
10961 |
|
|
35.75 612.95 558.25 612.95 2 L |
10962 |
|
|
V |
10963 |
|
|
N |
10964 |
|
|
35.75 590.95 558.25 590.95 2 L |
10965 |
|
|
V |
10966 |
|
|
N |
10967 |
|
|
35.75 566.95 558.25 566.95 2 L |
10968 |
|
|
V |
10969 |
|
|
N |
10970 |
|
|
35.75 544.95 558.25 544.95 2 L |
10971 |
|
|
V |
10972 |
|
|
N |
10973 |
|
|
FMENDPAGE |
10974 |
|
|
%%EndPage: "56" 61 |
10975 |
|
|
%%Page: "57" 61 |
10976 |
|
|
595.3 792 0 FMBEGINPAGE |
10977 |
|
|
0 10 Q |
10978 |
|
|
0 X |
10979 |
|
|
0 K |
10980 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
10981 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
10982 |
|
|
(57) 292.65 63.28 T |
10983 |
|
|
1 18 Q |
10984 |
|
|
(Appendix III) 246.66 732.95 T |
10985 |
|
|
3 12 Q |
10986 |
|
|
(ANSI C Code for testing if a point lies within a polygon.) 144 700.95 T |
10987 |
|
|
(This may be freely used provided the original copyright) 144 686.95 T |
10988 |
|
|
(message is retained in full.) 144 672.95 T |
10989 |
|
|
2 10 Q |
10990 |
|
|
(/*) 72 655.28 T |
10991 |
|
|
(** Reproduced with thanks from mapper 1.2) 72 643.28 T |
10992 |
|
|
(** 7/26/93 Kevin Hughes, kevinh@pulua.hcc.hawaii.edu) 72 631.28 T |
10993 |
|
|
(** polygon code copyright 1992 by Eric Haines, erich@eye.com) 72 619.28 T |
10994 |
|
|
(*/) 72 607.28 T |
10995 |
|
|
(#include <stdio.h>) 72 583.28 T |
10996 |
|
|
(#def) 72 559.28 T |
10997 |
|
|
(ine MAXLINE 500) 95.99 559.28 T |
10998 |
|
|
(#def) 72 547.28 T |
10999 |
|
|
(ine MAXVERTS 100) 95.99 547.28 T |
11000 |
|
|
(#def) 72 535.28 T |
11001 |
|
|
(ine X 0) 95.99 535.28 T |
11002 |
|
|
(#def) 72 523.28 T |
11003 |
|
|
(ine Y 1) 95.99 523.28 T |
11004 |
|
|
(int pointinpoly\050double point[2], double pgon[MAXVERTS][2]\051) 72 499.28 T |
11005 |
|
|
({) 72 487.28 T |
11006 |
|
|
( int i, numverts, inside_f) 72 475.28 T |
11007 |
|
|
(lag, xf) 245.9 475.28 T |
11008 |
|
|
(lag0;) 287.88 475.28 T |
11009 |
|
|
( int crossings;) 72 463.28 T |
11010 |
|
|
( double *p, *stop;) 72 451.28 T |
11011 |
|
|
( double tx, ty, y;) 72 439.28 T |
11012 |
|
|
( for \050i = 0; pgon[i][X] != -1 && i < MAXVERTS; i++\051) 72 415.28 T |
11013 |
|
|
( ;) 72 403.28 T |
11014 |
|
|
( numverts = i;) 72 391.28 T |
11015 |
|
|
( crossings = 0;) 72 379.28 T |
11016 |
|
|
( tx = point[X];) 72 355.28 T |
11017 |
|
|
( ty = point[Y];) 72 343.28 T |
11018 |
|
|
( y = pgon[numverts - 1][Y];) 72 331.28 T |
11019 |
|
|
( p = \050double *\051 pgon + 1;) 72 307.28 T |
11020 |
|
|
( if \050\050y >= ty\051 != \050*p >= ty\051\051) 72 295.28 T |
11021 |
|
|
( {) 72 283.28 T |
11022 |
|
|
( if \050\050xf) 72 271.28 T |
11023 |
|
|
(lag0 = \050pgon[numverts - 1][X] >= tx\051\051 ==) 161.95 271.28 T |
11024 |
|
|
( \050*\050double *\051 pgon >= tx\051\051) 72 259.28 T |
11025 |
|
|
( {) 72 247.28 T |
11026 |
|
|
( if \050xf) 72 235.28 T |
11027 |
|
|
(lag0\051) 179.94 235.28 T |
11028 |
|
|
( crossings++;) 72 223.28 T |
11029 |
|
|
( }) 72 211.28 T |
11030 |
|
|
( else) 72 199.28 T |
11031 |
|
|
( {) 72 187.28 T |
11032 |
|
|
( crossings += \050pgon[numverts - 1][X] - \050y - ty\051 *) 72 175.28 T |
11033 |
|
|
( \050*\050double *\051 pgon - pgon[numverts - 1][X]\051 /) 72 163.28 T |
11034 |
|
|
( \050*p - y\051\051 >= tx;) 72 151.28 T |
11035 |
|
|
( }) 72 139.28 T |
11036 |
|
|
( }) 72 127.28 T |
11037 |
|
|
( stop = pgon[numverts];) 72 103.28 T |
11038 |
|
|
FMENDPAGE |
11039 |
|
|
%%EndPage: "57" 62 |
11040 |
|
|
%%Page: "58" 62 |
11041 |
|
|
595.3 792 0 FMBEGINPAGE |
11042 |
|
|
0 10 Q |
11043 |
|
|
0 X |
11044 |
|
|
0 K |
11045 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
11046 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
11047 |
|
|
(58) 292.65 63.28 T |
11048 |
|
|
2 F |
11049 |
|
|
( for \050y = *p, p += 2; p < stop; y = *p, p += 2\051) 72 738.28 T |
11050 |
|
|
( {) 72 726.28 T |
11051 |
|
|
( if \050y >= ty\051) 72 714.28 T |
11052 |
|
|
( {) 72 702.28 T |
11053 |
|
|
( while \050\050p < stop\051 && \050*p >= ty\051\051) 72 690.28 T |
11054 |
|
|
( p += 2;) 72 678.28 T |
11055 |
|
|
( if \050p >= stop\051) 72 666.28 T |
11056 |
|
|
( break;) 72 654.28 T |
11057 |
|
|
( if \050\050xf) 72 642.28 T |
11058 |
|
|
(lag0 = \050*\050p - 3\051 >= tx\051\051 == \050*\050p - 1\051 >= tx\051\051) 185.94 642.28 T |
11059 |
|
|
( {) 72 630.28 T |
11060 |
|
|
( if \050xf) 72 618.28 T |
11061 |
|
|
(lag0\051) 203.93 618.28 T |
11062 |
|
|
( crossings++;) 72 606.28 T |
11063 |
|
|
( }) 72 594.28 T |
11064 |
|
|
( else) 72 582.28 T |
11065 |
|
|
( {) 72 570.28 T |
11066 |
|
|
( crossings += \050*\050p - 3\051 - \050*\050p - 2\051 - ty\051 *) 72 558.28 T |
11067 |
|
|
-0.1 ( \050*\050p - 1\051 - *\050p - 3\051\051 / \050*p - *\050p - 2\051\051\051 >= tx;) 72 546.28 P |
11068 |
|
|
( }) 72 534.28 T |
11069 |
|
|
( }) 72 522.28 T |
11070 |
|
|
( else) 72 510.28 T |
11071 |
|
|
( {) 72 498.28 T |
11072 |
|
|
( while \050\050p < stop\051 && \050*p < ty\051\051) 72 486.28 T |
11073 |
|
|
( p += 2;) 72 474.28 T |
11074 |
|
|
( if \050p >= stop\051) 72 462.28 T |
11075 |
|
|
( break;) 72 450.28 T |
11076 |
|
|
( if \050\050xf) 72 438.28 T |
11077 |
|
|
(lag0 = \050*\050p - 3\051 >= tx\051\051 == \050*\050p - 1\051 >= tx\051\051) 185.94 438.28 T |
11078 |
|
|
( {) 72 426.28 T |
11079 |
|
|
( if \050xf) 72 414.28 T |
11080 |
|
|
(lag0\051) 203.93 414.28 T |
11081 |
|
|
( crossings++;) 72 402.28 T |
11082 |
|
|
( }) 72 390.28 T |
11083 |
|
|
( else) 72 378.28 T |
11084 |
|
|
( {) 72 366.28 T |
11085 |
|
|
( crossings += \050*\050p - 3\051 - \050*\050p - 2\051 - ty\051 *) 72 354.28 T |
11086 |
|
|
-0.1 ( \050*\050p - 1\051 - *\050p - 3\051\051 / \050*p - *\050p - 2\051\051\051 >= tx;) 72 342.28 P |
11087 |
|
|
( }) 72 330.28 T |
11088 |
|
|
( }) 72 318.28 T |
11089 |
|
|
( }) 72 306.28 T |
11090 |
|
|
( inside_f) 72 294.28 T |
11091 |
|
|
(lag = crossings & 0x01;) 143.96 294.28 T |
11092 |
|
|
( return \050inside_f) 72 282.28 T |
11093 |
|
|
(lag\051;) 191.93 282.28 T |
11094 |
|
|
(}) 72 270.28 T |
11095 |
|
|
FMENDPAGE |
11096 |
|
|
%%EndPage: "58" 63 |
11097 |
|
|
%%Page: "59" 63 |
11098 |
|
|
595.3 792 0 FMBEGINPAGE |
11099 |
|
|
0 10 Q |
11100 |
|
|
0 X |
11101 |
|
|
0 K |
11102 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
11103 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
11104 |
|
|
(59) 292.65 63.28 T |
11105 |
|
|
1 18 Q |
11106 |
|
|
(Appendix IV) 245.67 732.95 T |
11107 |
|
|
3 12 Q |
11108 |
|
|
(Alphabetically sorted list of HTML+ tags and their) 144 700.95 T |
11109 |
|
|
(associated attribute names.) 144 686.95 T |
11110 |
|
|
(A) 72 657.95 T |
11111 |
|
|
(id, name, shape, href, rel, rev) 216 657.95 T |
11112 |
|
|
(, methods, ef) 371.1 657.95 T |
11113 |
|
|
(fect, print, title,) 440.22 657.95 T |
11114 |
|
|
(type, size, lang) 216 643.95 T |
11115 |
|
|
(ABBREV) 72 629.95 T |
11116 |
|
|
(id, lang, index) 216 629.95 T |
11117 |
|
|
(ABSTRACT) 72 615.95 T |
11118 |
|
|
(id, lang, index) 216 615.95 T |
11119 |
|
|
(ACRONYM) 72 601.95 T |
11120 |
|
|
(id, lang, index) 216 601.95 T |
11121 |
|
|
(ADDED) 72 587.95 T |
11122 |
|
|
(id, lang, index) 216 587.95 T |
11123 |
|
|
(ADDRESS) 72 573.95 T |
11124 |
|
|
(ARG) 72 559.95 T |
11125 |
|
|
(id, lang, index) 216 559.95 T |
11126 |
|
|
(B) 72 545.95 T |
11127 |
|
|
(id, lang, index) 216 545.95 T |
11128 |
|
|
(BASE) 72 531.95 T |
11129 |
|
|
(href) 216 531.95 T |
11130 |
|
|
(BLOCKQUOTE) 72 517.95 T |
11131 |
|
|
(BODY) 72 503.95 T |
11132 |
|
|
(BOX) 72 489.95 T |
11133 |
|
|
(BR) 72 475.95 T |
11134 |
|
|
(BYLINE) 72 461.95 T |
11135 |
|
|
(id, lang, index) 216 461.95 T |
11136 |
|
|
(CAPTION) 72 447.95 T |
11137 |
|
|
(id, lang, index) 216 447.95 T |
11138 |
|
|
(CHANGED) 72 433.95 T |
11139 |
|
|
(id, idref) 216 433.95 T |
11140 |
|
|
(CITE) 72 419.95 T |
11141 |
|
|
(id, lang, index) 216 419.95 T |
11142 |
|
|
(CMD) 72 405.95 T |
11143 |
|
|
(id, lang, index) 216 405.95 T |
11144 |
|
|
(CODE) 72 391.95 T |
11145 |
|
|
(id, lang, index) 216 391.95 T |
11146 |
|
|
(DD) 72 377.95 T |
11147 |
|
|
(id, lang, index) 216 377.95 T |
11148 |
|
|
(DFN) 72 363.95 T |
11149 |
|
|
(id, lang, index) 216 363.95 T |
11150 |
|
|
(DIR) 72 349.95 T |
11151 |
|
|
(id, lang, index) 216 349.95 T |
11152 |
|
|
(DL) 72 335.95 T |
11153 |
|
|
(id, compact, lang, index) 216 335.95 T |
11154 |
|
|
(DT) 72 321.95 T |
11155 |
|
|
(id, lang, index) 216 321.95 T |
11156 |
|
|
(EM) 72 307.95 T |
11157 |
|
|
(id, lang, index) 216 307.95 T |
11158 |
|
|
(FIG) 72 293.95 T |
11159 |
|
|
(id, align, ismap, src, index, lang) 216 293.95 T |
11160 |
|
|
(FOOTNOTE) 72 279.95 T |
11161 |
|
|
(id, lang, index) 216 279.95 T |
11162 |
|
|
(FORM) 72 265.95 T |
11163 |
|
|
(id, action, method, lang, index) 216 265.95 T |
11164 |
|
|
(H1) 72 251.95 T |
11165 |
|
|
(id, lang, index) 216 251.95 T |
11166 |
|
|
(H2) 72 237.95 T |
11167 |
|
|
(id, lang, index) 216 237.95 T |
11168 |
|
|
(H3) 72 223.95 T |
11169 |
|
|
(id, lang, index) 216 223.95 T |
11170 |
|
|
(H4) 72 209.95 T |
11171 |
|
|
(id, lang, index) 216 209.95 T |
11172 |
|
|
(H5) 72 195.95 T |
11173 |
|
|
(id, lang, index) 216 195.95 T |
11174 |
|
|
(H6) 72 181.95 T |
11175 |
|
|
(id, lang, index) 216 181.95 T |
11176 |
|
|
(HEAD) 72 167.95 T |
11177 |
|
|
(HTMLPLUS) 72 153.95 T |
11178 |
|
|
(version, forms) 216 153.95 T |
11179 |
|
|
(I) 72 139.95 T |
11180 |
|
|
(id, lang, index) 216 139.95 T |
11181 |
|
|
(IMAGE) 72 125.95 T |
11182 |
|
|
(src, align, seethru, ismap, lang) 216 125.95 T |
11183 |
|
|
(IMG) 72 111.95 T |
11184 |
|
|
(src, align, seethru, alt, ismap) 216 111.95 T |
11185 |
|
|
FMENDPAGE |
11186 |
|
|
%%EndPage: "59" 64 |
11187 |
|
|
%%Page: "60" 64 |
11188 |
|
|
595.3 792 0 FMBEGINPAGE |
11189 |
|
|
0 10 Q |
11190 |
|
|
0 X |
11191 |
|
|
0 K |
11192 |
|
|
(HTML+ Discussion Document) 72 774.28 T |
11193 |
|
|
3.81 (November 2, 1993) 441 774.28 P |
11194 |
|
|
(60) 292.65 63.28 T |
11195 |
|
|
3 12 Q |
11196 |
|
|
(INPUT) 72 736.95 T |
11197 |
|
|
(name, type, size, min, max, value, checked, disabled,) 216 736.95 T |
11198 |
|
|
(error) 216 722.95 T |
11199 |
|
|
(, src, align, lang) 240.66 722.95 T |
11200 |
|
|
(ISINDEX) 72 708.95 T |
11201 |
|
|
(href) 216 708.95 T |
11202 |
|
|
(KBD) 72 694.95 T |
11203 |
|
|
(id, lang, index) 216 694.95 T |
11204 |
|
|
(L) 72 680.95 T |
11205 |
|
|
(id, align, lang, index) 216 680.95 T |
11206 |
|
|
(LI) 72 666.95 T |
11207 |
|
|
(id, src, lang, index) 216 666.95 T |
11208 |
|
|
(LINK) 72 652.95 T |
11209 |
|
|
(idref, href, rel, rev) 216 652.95 T |
11210 |
|
|
(, methods) 309.09 652.95 T |
11211 |
|
|
(LIT) 72 638.95 T |
11212 |
|
|
(id, lang, index) 216 638.95 T |
11213 |
|
|
(MARGIN) 72 624.95 T |
11214 |
|
|
(id, lang, index) 216 624.95 T |
11215 |
|
|
(MA) 72 610.95 T |
11216 |
|
|
(TH) 89.1 610.95 T |
11217 |
|
|
(id) 216 610.95 T |
11218 |
|
|
(MENU) 72 596.95 T |
11219 |
|
|
(id, lang, index) 216 596.95 T |
11220 |
|
|
(NEXTID) 72 582.95 T |
11221 |
|
|
(n) 216 582.95 T |
11222 |
|
|
(NOTE) 72 568.95 T |
11223 |
|
|
(id, role, lang, index) 216 568.95 T |
11224 |
|
|
(OL) 72 554.95 T |
11225 |
|
|
(id, compact, lang, index) 216 554.95 T |
11226 |
|
|
(OPTION) 72 540.95 T |
11227 |
|
|
(selected, disabled, lang) 216 540.95 T |
11228 |
|
|
(OVER) 72 526.95 T |
11229 |
|
|
(P) 72 512.95 T |
11230 |
|
|
(id, align, lang, index) 216 512.95 T |
11231 |
|
|
(PERSON) 72 498.95 T |
11232 |
|
|
(id, lang, index) 216 498.95 T |
11233 |
|
|
(PRE) 72 484.95 T |
11234 |
|
|
(id, lang, index) 216 484.95 T |
11235 |
|
|
(Q) 72 470.95 T |
11236 |
|
|
(id, lang, index) 216 470.95 T |
11237 |
|
|
(QUOTE) 72 456.95 T |
11238 |
|
|
(id, lang, index) 216 456.95 T |
11239 |
|
|
(RENDER) 72 442.95 T |
11240 |
|
|
(tag, style) 216 442.95 T |
11241 |
|
|
(REMOVED) 72 428.95 T |
11242 |
|
|
(id, lang, index) 216 428.95 T |
11243 |
|
|
(S) 72 414.95 T |
11244 |
|
|
(id, lang, index) 216 414.95 T |
11245 |
|
|
(SAMP) 72 400.95 T |
11246 |
|
|
(id, lang, index) 216 400.95 T |
11247 |
|
|
(SELECT) 72 386.95 T |
11248 |
|
|
(name, several, error) 216 386.95 T |
11249 |
|
|
(, lang) 322.64 386.95 T |
11250 |
|
|
(STRONG) 72 372.95 T |
11251 |
|
|
(id, lang, index) 216 372.95 T |
11252 |
|
|
(SUB) 72 358.95 T |
11253 |
|
|
(id, lang, index) 216 358.95 T |
11254 |
|
|
(SUP) 72 344.95 T |
11255 |
|
|
(id, lang, index) 216 344.95 T |
11256 |
|
|
(T) 72 330.95 T |
11257 |
|
|
(AB) 78.44 330.95 T |
11258 |
|
|
(at, align) 216 330.95 T |
11259 |
|
|
(T) 72 316.95 T |
11260 |
|
|
(ABLE) 78.44 316.95 T |
11261 |
|
|
(id, border) 216 316.95 T |
11262 |
|
|
(, lang, index) 266 316.95 T |
11263 |
|
|
(TD) 72 302.95 T |
11264 |
|
|
(colspan, rowspan, align, lang) 216 302.95 T |
11265 |
|
|
(TEXT) 72 288.95 T |
11266 |
|
|
(AREA) 101.77 288.95 T |
11267 |
|
|
(name, cols, rows, disabled, error) 216 288.95 T |
11268 |
|
|
(, lang) 388.63 288.95 T |
11269 |
|
|
(TH) 72 274.95 T |
11270 |
|
|
(colspan, rowspan, align, lang) 216 274.95 T |
11271 |
|
|
(TITLE) 72 260.95 T |
11272 |
|
|
(id, lang, index) 216 260.95 T |
11273 |
|
|
(TR) 72 246.95 T |
11274 |
|
|
(id) 216 246.95 T |
11275 |
|
|
(TT) 72 232.95 T |
11276 |
|
|
(id, lang, index) 216 232.95 T |
11277 |
|
|
(U) 72 218.95 T |
11278 |
|
|
(id, lang, index) 216 218.95 T |
11279 |
|
|
(UL) 72 204.95 T |
11280 |
|
|
(id, compact, plain, wrap, lang, index) 216 204.95 T |
11281 |
|
|
(V) 72 190.95 T |
11282 |
|
|
(AR) 79.11 190.95 T |
11283 |
|
|
(id, lang, index) 216 190.95 T |
11284 |
|
|
FMENDPAGE |
11285 |
|
|
%%EndPage: "60" 65 |
11286 |
|
|
%%Trailer |
11287 |
|
|
%%BoundingBox: 0 0 595.3 792 |
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 |