GATE developer_Requesting for Suggestion

时间:2016-11-03 00:15:19

标签: gate

我想将文档的突出显示[使用GATE开发人员工具突出显示]发布到新文件[word或Excel]。有人可以帮我提出任何建议吗? 在此先感谢。

此致 加亚特里讷

2 个答案:

答案 0 :(得分:0)

对不起,我还不能评论......

此处类似问题Read annotated data from GATE datastore

提供的答案(由Ian Roberts提供)具有将选定的注释存储在文件中的方法。

建议:使用嵌入式GATE(使用Java)。

答案 1 :(得分:0)

在html中阅读带注释的文档非常简单。您可以按照printing的说明进行操作,这些说明可以使用文本编辑器执行。请记住选择要显示的注释,并使用“保存保存格式”保存工件。生成的xml将包含您在已保存文档中嵌入的注释标记。

您还可以在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>

设置html后,添加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注释的基本视图。当然,根据您要表达的内容,它可能会更复杂。请参阅Fiddle

在MS Word中查看:

  1. 在MS Word中打开已保存的带注释的xml文件。
  2. 将css文件添加到存储带注释的文档的同一目录中。
  3. 在Word中打开“开发人员”选项卡。
  4. 选择文档模板图标。
  5. 选择Linked CSS选项卡,导航到带注释的文档和css文件的位置。
  6. 将css文件添加到链接样式表。
  7. 将文档另存为网页。
  8. 导航到您保存html页面的位置,然后在您喜欢的浏览器中打开。
  9. 确保您已从页面设置中选择了打印背景颜色和图像。
  10. 打印突出显示的文档。
  11. 屁股有点疼,但是如果你想要一份印刷品就可以了。该文档不会在Word中显示css。我希望这会有所帮助。