How can I link to specific places in a variety of documents?
March 17, 2011 10:01 AM Subscribe
How can I create a web-based table of contents that links to specific places within a diverse collection of documents?
How can I create a web-based table of contents that links to specific places in a variety of document formats (unspecified: I assume Excel, PowerPoint, Word, and PDF)? Also, how could I search within the documents and create an index? Both the search results and the index should link to specific places within the documents.
My first thought was to convert all of the documents to PDF,
create destinations within the PDFs, and
link to the destinations from a web page. I'm definitely open to other ideas, though.
I'm pretty sure the documents will not be set up in a way that would be easy to automate adding bookmarks and links within PDFs; i.e., Word documents probably won't use heading styles.
posted by kirkaracha to computers & internet (4 answers total) 1 user marked this as a favorite
<a href="../doc1#pos1">Document 1, Position 1</a>.In the html files for your docs, you can add the destinations like this:
<a name="pos1"></a>I'm pretty sure most of Microsoft Office products can output html. If they do, you should be able to just go through and add the positions by hand in a text editor.
posted by thsmchnekllsfascists at 10:20 AM on March 17, 2011