Digital zines 3: Difference between revisions
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
* XQuery ? from document to database ?? | * XQuery ? from document to database ?? | ||
* Book indexes | * Book indexes | ||
small but significant: show example of making your own "manpdf" command: | |||
<source lang="bash"> | |||
#!/bin/bash | |||
man -t $1 | ps2pdf - > $1.pdf | |||
</source> |
Revision as of 16:26, 31 January 2020
this page is still being written 2020
Creating (static) indexes: Python + whoosh for search (maybe using facets to produce two-level index listings?) Concordances, Historical (and contemporary indexes) -- tools for making indexes. (Static sites I) ... work on pdfs from week 1 (and eventually materials from special issue)
- Bootstrapping, Englebart, Nelson, and other holy grail dreamers ...
- XQuery ? from document to database ??
- Book indexes
small but significant: show example of making your own "manpdf" command:
#!/bin/bash
man -t $1 | ps2pdf - > $1.pdf