Difference between revisions of "Epub"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 16: | Line 16: | ||
sudo apt-get update | sudo apt-get update | ||
sudo apt-get install calibre | sudo apt-get install calibre | ||
| + | |||
| + | ==Convert epub satu folder== | ||
| + | |||
| + | for file in ./*.epub | ||
| + | do | ||
| + | ebook-convert "$file" "${file%.epub}.pdf" \ | ||
| + | --paper-size a4 | ||
| + | done | ||
==Referensi== | ==Referensi== | ||
Latest revision as of 01:59, 15 July 2026
EPUB (short for electronic publication) is a free and open e-book standard by the International Digital Publishing Forum (IDPF). Files have the extension .epub.
EPUB is designed for reflowable content, meaning that an EPUB reader can optimize text for a particular display device. EPUB also supports fixed-layout content. The format is intended as a single format that publishers and conversion houses can use in-house, as well as for distribution and sale. It supersedes the Open eBook standard.
Membuka epub
You can use calibre software for viewing .epub documents.
To install calibre from terminal:
sudo apt-get install calibre
atau
sudo add-apt-repository ppa:n-muench/calibre sudo apt-get update sudo apt-get install calibre
Convert epub satu folder
for file in ./*.epub
do
ebook-convert "$file" "${file%.epub}.pdf" \
--paper-size a4
done
Referensi
- http://en.wikipedia.org/wiki/EPUB
- http://packages.ubuntu.com/search?keywords=calibre
- http://lukesblog.it/wiki/index.php?title=Main_Page
- http://iloveubuntu.net/create-high-quality-epub-files-inside-libreoffice-writer-writer2epub
- http://askubuntu.com/questions/338172/how-to-install-calibre-on-ubuntu-12-04