[GATE開発ツールを使用して強調表示された]ドキュメントの強調表示された注釈を新しいファイル[単語またはExcelのいずれか]に投稿したかったのです。誰かが提案やこれで私を助けることができますか? ありがとうございました。GATE developer_提案のためにリクエスト
よろしく、 ガヤトリ
[GATE開発ツールを使用して強調表示された]ドキュメントの強調表示された注釈を新しいファイル[単語またはExcelのいずれか]に投稿したかったのです。誰かが提案やこれで私を助けることができますか? ありがとうございました。GATE developer_提案のためにリクエスト
よろしく、 ガヤトリ
申し訳ありませんが、私はここに
同様の質問Read annotated data from GATE datastore
コメントはまだ...することはできません(イアン・ロバーツ)提供答えはで選択した注釈を保存するための手段を有していますファイル。
提案:GATE埋め込み(Javaで)を使用してください。
注釈付きドキュメントをhtmlで読むことはかなり簡単です。テキストエディタを使用して実行できるprintingの手順に従うことができます。表示する注釈を選択し、[保存形式を保存]を使用して案件を保存することを忘れないでください。結果のxmlには、選択した注釈タグが保存された文書に埋め込まれます。
また、htmlで視覚化することもできます。 HTMLが設定されると
<!DOCTYPE html>
<div id="topContent">
<h1>Report Example</h1>
<p>
This example provide a visualization of a annotated document produced by GATE using ANNIE with defaults. To use with Javascript, the document can be formatted as an xml document using xmlHttpRequest.
</p>
</div>
<div id="pageView">
<div id="legendView">
<h3>Document Legend</h3>
<div>
<table id="annotationTable">
<tr>
<th>Facet</th>
<th>Color</th>
</tr>
<tr>
<td>Date</td>
<td id="dateFill"></td>
</tr>
<tr>
<td>Location</td>
<td id="locationFill"></td>
</tr>
<tr>
<td>Organization</td>
<td id="organizationFill"></td>
</tr>
<tr>
<td>Person</td>
<td id="personFill"></td>
</tr>
</table>
</div>
</div>
<p>..Add GATE XML contents here..</p>
</div>
、CSSを追加します。
body {}
table, th, td {
border: 1px solid black;
text-align: center;
font-family: arial;
}
#annotationTable {
border-collapse: collapse;
width: 10%;
}
#topContent {
font: 18px arial;
}
#pageView {
border: 1px solid black;
font: 14px arial;
}
#legendView {
margin: 10px 10px 10px 10px;
}
#dateFill {background-color: rgb(51, 255, 119)}
#locationFill {background-color: rgb(204, 153, 255)}
#organizationFill {background-color: rgb(102, 255, 255)}
#personFill {background-color: rgb(255, 204, 153)}
Date {background-color: rgb(51, 255, 119)}
Location {background-color: rgb(204, 153, 255)}
Organization {background-color: rgb(102, 255, 255)}
Person {background-color: rgb(255, 204, 153)}
これはGATE注釈の基本的なビューを提供します。もちろん、あなたが表現しようとしているものによってはもっと複雑になることもあります。 MS Wordで表示するにはFiddle
を参照してください:
尻の痛みの種類ですが、印刷されたコピーが必要な場合に機能します。文書はWordでCSSを表示しません。私はこれが役立つことを願っています