2016-11-03 18 views
0

[GATE開発ツールを使用して強調表示された]ドキュメントの強調表示された注釈を新しいファイル[単語またはExcelのいずれか]に投稿したかったのです。誰かが提案やこれで私を助けることができますか? ありがとうございました。GATE developer_提案のためにリクエスト

よろしく、 ガヤトリ

答えて

0

申し訳ありませんが、私はここに

同様の質問Read annotated data from GATE datastore

コメントはまだ...することはできません(イアン・ロバーツ)提供答えはで選択した注釈を保存するための手段を有していますファイル。

提案:GATE埋め込み(Javaで)を使用してください。

0

注釈付きドキュメントを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

を参照してください:

  1. は、MS Wordで保存されたアノテーション付きXMLファイルを開きます。
  2. 注釈付き文書が保存されているのと同じディレクトリにcssファイルを追加します。
  3. Wordで[開発者]タブを開きます。
  4. [ドキュメントテンプレート]アイコンを選択します。
  5. [リンクされたCSS]タブを選択し、注釈付きのドキュメントとCSSファイルの場所に移動します。
  6. リンクされたスタイルシートにCSSファイルを追加します。
  7. ドキュメントをWebページとして保存します。
  8. htmlページを保存した場所に移動し、お気に入りのブラウザで開きます。
  9. [ページ設定]で[背景色と画像を印刷]を選択していることを確認してください。
  10. ハイライトされたドキュメントを印刷します。

尻の痛みの種類ですが、印刷されたコピーが必要な場合に機能します。文書はWordでCSSを表示しません。私はこれが役立つことを願っています

関連する問題