Emacs Lisp Elements: EPUB and PDF versions now available
I just added .epub and .pdf versions of my free book Emacs Lisp Elements. All files are available in the Git repository: https://github.com/protesilaos/emacs-lisp-elements.
I produced both of those from the source Org file. Here are the steps for posterity:
- From the
elispelem.orguse the Org export mechanism to generate an Info manual (by default:C-c C-e i i). - This will generate a
.texifile, which is then used as the source for the.infofile. - From the command-line do
texi2any --epub elispelem.texito get the EPUB file. - For the PDF, install the dependencies with something like
sudo apt install texlive. - Finally, run
texi2any --pdf elispelem.texi.