索引 PDF 文件的正确方法是什么?我想在其中添加语义信息,并帮助搜索引擎更准确、更精确地呈现文件(特定图像、PDF 文件中的文本)。我正在考虑使用引擎已经理解的本体,例如Schema.org。
问问题
849 次
1 回答
3
如何使用 schema.org 从这样的网页链接到 PDF 文件:
<div itemscope itemtype="http://schema.org/Article">
<img itemprop="thumbnailUrl" src="http://www.example.com/how_to_build_a_web_app.jpg"/>
<a itemprop="url" href="http://www.example.com/how_to_build_a_web_app.pdf">
<span itemprop="name">How to Build a Web App</span></a>
by <span itemprop="author">John Smith</span>
<div itemprop="description">This short e-book explains what a web application
is and how to build one.</div>
</div>
这使您可以将标题、图像和文本描述与 PDF 中的文章相关联。
于 2012-08-01T00:02:20.617 回答