Difference between revisions of "Epub"

From OnnoWiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 11: Line 11:
 
  sudo apt-get install calibre
 
  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==
 
==Referensi==
Line 18: Line 31:
 
* http://lukesblog.it/wiki/index.php?title=Main_Page
 
* http://lukesblog.it/wiki/index.php?title=Main_Page
 
* http://iloveubuntu.net/create-high-quality-epub-files-inside-libreoffice-writer-writer2epub
 
* 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

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