Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add epub generation of tutorial #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,18 @@ decl_prog - Sources for "Declarative Programming in Mercury".
tutorial - Sources for the Mercury tutorial book.

It is available as a PDF on the [Mercury web site](http://mercurylang.org/).

# Dependencies
- Make
- LaTeX
- gawk
- pandoc (for epub generation)

## Install all on Debian
- `apt install make gawk texlive-full pandoc`

## Install all on MacOS/Homebrew:
```sh
brew install --cask mactex-no-gui
brew install gawk pandoc
```
3 changes: 3 additions & 0 deletions tutorial/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ book.pdf: book.dvi
pdflatex book
pdflatex book
pdflatex book

book.epub: book.dvi
pandoc book.tex -o $@