Difference between revisions of "ePub"

From Wiki
Jump to navigation Jump to search
m (fix link)
m (comment xhtml file)
Line 28: Line 28:
 
</pre>
 
</pre>
  
* epub: The epub file is just a zipped version of the directory structure.
+
* .epub: The epub file is just a zipped version of the directory structure.
 
* mimetype: contains only "{{code|1=application/epub+zip}}"
 
* mimetype: contains only "{{code|1=application/epub+zip}}"
 
* container.xml points to the root file "minimal.opf"
 
* container.xml points to the root file "minimal.opf"
 
* cover.xhtml is the cover image shown by ePub readers
 
* cover.xhtml is the cover image shown by ePub readers
* opf: list of all resources, this keeps the "book" together. See also [http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm OPF specs].
+
* -div.xhtml: your content
* ncx: table of contents
+
* .opf: list of all resources, this keeps the "book" together. See also [http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm OPF specs].
 +
* .ncx: table of contents
  
 
= TODO =
 
= TODO =

Revision as of 09:46, 20 January 2015


TODO: This page is work in progress and an update to the current pages Epub and Epub_Sample. (See: To-Do List)


< XML | Export | Old ePub docs | Old ePub Sample >

The ePub facilities of ConTeXt are based on its Export of XML/XHTML. Make sure you get useful export output from your project before you try ePub.

Minimal ePub

If you already ran ConTeXt on your project and got the file structure as described in Export, you can run mtxrun --script epub --make minimal to get a structure like:

minimal.epub
minimal-epub
├── META-INF
│   └── container.xml
├── OEBPS
│   ├── cover.xhtml
│   ├── images
│   ├── minimal-div.xhtml
│   ├── minimal.opf
│   ├── nav.xhtml
│   ├── styles
│   │   ├── minimal-defaults.css
│   │   ├── minimal-images.css
│   │   └── minimal-styles.css
│   └── toc.ncx
└── mimetype
  • .epub: The epub file is just a zipped version of the directory structure.
  • mimetype: contains only "application/epub+zip"
  • container.xml points to the root file "minimal.opf"
  • cover.xhtml is the cover image shown by ePub readers
  • -div.xhtml: your content
  • .opf: list of all resources, this keeps the "book" together. See also OPF specs.
  • .ncx: table of contents

TODO

Write about

  • Cover
  • ToC
  • Readers
  • Styling
  • Images
  • Better workflow