[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacspeak and w3



井上様、WIT共同発表者の皆様、

渡辺@湘南工科大です。

WITで、W3のデモをすることになったので、大学のデスクトップに W3を入れて
試してみましたが、わかりやすいWebサイトがなかったので、デモ用のHTMLを
作ってみました。以下のデモができます。

・ヘッダーで声のピッチが変わる。
・リンクで声が変わる。
・強調エレメントで声が変わる。
・DLなどのリストエレメントで声が変わる。
・表の見出しと要素で声が変わる。
・表の要素の情報を読み上げる。 ( = ; w3-table-speak-this-cell-info)
・表を立て読みする。 ( | ; w3-table-speak-current-table-column)


HTMLを同封します。井上さんのVAIOでうまくいくか試してみてくださいませんか。

<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML lang="en">
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META NAME="author" CONTENT="Takayuki Watanabe">
<META name="keywords" content="Emacspeak, CSS, W3, Emacs">
<link rev=made href="mailto:takayuki@la.shonan-it.ac.jp">
<TITLE>Emacspeak for Emacs/W3</TITLE>
</HEAD>

<H1>Demonstration of Emacspeak for Web browsing, or hearing.</H1>

<H2>Various voice-fonts</H2>

<p>You may already notice that Emacspeak speaks heading elements 
with different voices.  Exactly saying, 
it changes the pitch of the same voice, Paul.</p>

<p>As shown in this sample, 
<a href="http://emacspeak.sourceforge.net">Emacspeak</a> 
speaks links with a different voice.  
Harry and Betty speaks the linked and visited elements, respectively.</p>

<dl>
<dt>Definition:
	<dd>Explanation.
<dt>Another definition:
	<dd>Another explanation.
</dl>

<p>These voice settings are defined in a cascading style sheet as 
<strong>an aural style sheet</strong>.</p>

<H2>Table</H2>

<table border=2>
<CAPTION>Example of table elements<br></CAPTION>

<tr><th> OS </th>    <th>name of Emacs</th>       <th>Price</th></tr>
<tr><td>Linux</td>   <td>Emacs, Mule, XEmacs</td> <td>free</td></tr>
<tr><td>Windows</td> <td>Meadow, Mule</td>        <td>not free</td></tr>
</table>

</BODY>
</HTML>