blob: 838cda2a55bd722e05c1770a0257473f937ff66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<HTML>
<!-- teched.html -->
<!-- (C) Copyright 1998 by Robert S. Sutor. All rights reserved. -->
<HEAD>
<META HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR"
CONTENT="Mozilla/4.01 [en] (Win95; I) [Netscape]">
<TITLE>teched Sample LaTeX Editor</TITLE>
</HEAD>
<!-- This is a very simple LaTeX editor built using the -->
<!-- IBM techexplorer Hypermedia Browser and a Java applet. -->
<BODY>
<CENTER>
<!-- The upper window is controlled by techexplorer. We -->
<!-- give the name 'teInput' to this window. We are -->
<!-- using a table to put a frame around the window. -->
<TABLE BORDER=1>
<TR>
<TD>
<EMBED TYPE="application/x-techexplorer"
TEXDATA="\(\)"
NAME="teInput" WIDTH=600 HEIGHT=150>
</TD>
</TR>
</TABLE>
<!-- The lower window is handled by the 'teched' Java -->
<!-- applet. Like the techexplorer window, it is 600 -->
<!-- pixels wide. -->
<TABLE BORDER=1>
<TR>
<TD>
<APPLET CODE="teched.class"
NAME="teched" ALIGN=CENTER
WIDTH=600 HEIGHT=130 MAYSCRIPT></APPLET>
</TD>
</TR>
</TABLE>
</CENTER>
</BODY>
</HTML>
|